Files
gridpilot.gg/core/racing/domain/value-objects/IRacingId.ts
2025-12-17 01:23:09 +01:00

25 lines
650 B
TypeScript

import { RacingDomainValidationError } from '../errors/RacingDomainError';
import type { IValueObject } from '@core/shared/domain';
export class IRacingId implements IValueObject<string> {
private constructor(private readonly value: string) {}
static create(value: string): IRacingId {
if (!value || value.trim().length === 0) {
throw new RacingDomainValidationError('iRacing ID is required');
}
return new IRacingId(value);
}
toString(): string {
return this.value;
}
get props(): string {
return this.value;
}
equals(other: IValueObject<string>): boolean {
return this.props === other.props;
}
}