25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import type { ValueObject } from '@core/shared/domain/ValueObject';
|
|
import { RacingDomainValidationError } from '../errors/RacingDomainError';
|
|
|
|
export class TeamName implements ValueObject<string> {
|
|
private constructor(private readonly value: string) {}
|
|
|
|
get props(): string {
|
|
return this.value;
|
|
}
|
|
|
|
static create(value: string): TeamName {
|
|
if (!value || value.trim().length === 0) {
|
|
throw new RacingDomainValidationError('Team name is required');
|
|
}
|
|
return new TeamName(value.trim());
|
|
}
|
|
|
|
toString(): string {
|
|
return this.value;
|
|
}
|
|
|
|
equals(other: ValueObject<string>): boolean {
|
|
return this.value === other.props;
|
|
}
|
|
} |