Uecko_ERP/modules/customer-invoices/src/api/domain/value-objects/customer-invoice-serie.ts
2025-06-11 17:13:44 +02:00

51 lines
1.3 KiB
TypeScript

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<ICustomerInvoiceSerieProps> {
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<Maybe<CustomerInvoiceSerie>, Error> {
if (!value || value.trim() === "") {
return Result.ok(Maybe.none<CustomerInvoiceSerie>());
}
return CustomerInvoiceSerie.create(value).map((value) => Maybe.some(value));
}
getValue(): string {
return this.props.value;
}
toString(): string {
return this.getValue();
}
toPrimitive() {
return this.getValue();
}
}