Files
gridpilot.gg/core/racing/domain/value-objects/CarId.ts
2026-01-16 19:46:49 +01:00

25 lines
654 B
TypeScript

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