import { ValueObject } from "@repo/rdx-ddd"; import { Maybe, Result } from "@repo/rdx-utils"; import { z } from "zod"; interface ICustomerInvoiceSerieProps { value: string; } export class CustomerInvoiceSerie extends ValueObject { private static readonly MAX_LENGTH = 255; protected static validate(value: string) { const schema = z .string() .trim() .max(CustomerInvoiceSerie.MAX_LENGTH, { message: `Name must be at most ${CustomerInvoiceSerie.MAX_LENGTH} characters long`, }); return schema.safeParse(value); } static create(value: string) { const valueIsValid = CustomerInvoiceSerie.validate(value); if (!valueIsValid.success) { return Result.fail(new Error(valueIsValid.error.errors[0].message)); } return Result.ok(new CustomerInvoiceSerie({ value })); } static createNullable(value?: string): Result, Error> { if (!value || value.trim() === "") { return Result.ok(Maybe.none()); } return CustomerInvoiceSerie.create(value).map((value) => Maybe.some(value)); } getValue(): string { return this.props.value; } toString(): string { return this.getValue(); } toPrimitive() { return this.getValue(); } }