import { AggregateRoot, type CurrencyCode, type EmailAddress, type LanguageCode, type Name, type PhoneNumber, type PostalAddress, type PostalAddressPatchProps, type PostalAddressProps, type TINNumber, type URLAddress, type UniqueID, } from "@repo/rdx-ddd"; import { type Maybe, Result } from "@repo/rdx-utils"; import { SupplierStatus } from "../value-objects/supplier-status.value-object"; /** * Props de creación */ export interface ISupplierCreateProps { companyId: UniqueID; status?: SupplierStatus; reference: Maybe; isCompany: boolean; name: Name; tradeName: Maybe; tin: Maybe; address: PostalAddressProps; emailPrimary: Maybe; emailSecondary: Maybe; phonePrimary: Maybe; phoneSecondary: Maybe; mobilePrimary: Maybe; mobileSecondary: Maybe; fax: Maybe; website: Maybe; languageCode: LanguageCode; currencyCode: CurrencyCode; } export type SupplierPatchProps = Partial< Omit > & { address?: PostalAddressPatchProps; }; // Supplier export interface ISupplier { // comportamiento update(partialSupplier: SupplierPatchProps): Result; // propiedades (getters) readonly isIndividual: boolean; readonly isCompany: boolean; readonly isActive: boolean; readonly companyId: UniqueID; readonly reference: Maybe; readonly name: Name; readonly tradeName: Maybe; readonly tin: Maybe; readonly address: PostalAddress; readonly emailPrimary: Maybe; readonly emailSecondary: Maybe; readonly phonePrimary: Maybe; readonly phoneSecondary: Maybe; readonly mobilePrimary: Maybe; readonly mobileSecondary: Maybe; readonly fax: Maybe; readonly website: Maybe; readonly languageCode: LanguageCode; readonly currencyCode: CurrencyCode; } type SupplierInternalProps = Omit & { readonly address: PostalAddress; }; /** * Aggregate Root: Supplier */ export class Supplier extends AggregateRoot implements ISupplier { static create(props: ISupplierCreateProps, id?: UniqueID): Result { const validationResult = Supplier.validateCreateProps(props); if (validationResult.isFailure) { return Result.fail(validationResult.error); } const { address, ...internalProps } = props; const postalAddressResult = PostalAddress.create(address); if (postalAddressResult.isFailure) { return Result.fail(postalAddressResult.error); } const contact = new Supplier( { ...internalProps, address: postalAddressResult.data, }, id ); // Reglas de negocio / validaciones // ... // ... // Disparar eventos de dominio // ... // ... return Result.ok(contact); } private static validateCreateProps(props: ISupplierCreateProps): Result { return Result.ok(); } // Rehidratación desde persistencia static rehydrate(props: SupplierInternalProps, id: UniqueID): Supplier { return new Supplier(props, id); } // ------------------------- // BEHAVIOUR // ------------------------- public update(partialSupplier: SupplierPatchProps): Result { const { address: partialAddress, ...rest } = partialSupplier; Object.assign(this.props, rest); if (partialAddress) { const addressResult = this.address.update(partialAddress); if (addressResult.isFailure) { return Result.fail(addressResult.error); } } return Result.ok(); } public activate(): Result { this.props.status = SupplierStatus.active(); return Result.ok(this); } public deactivate(): Result { this.props.status = SupplierStatus.inactive(); return Result.ok(this); } // ------------------------- // GETTERS // ------------------------- public get isIndividual(): boolean { return !this.props.isCompany; } public get isCompany(): boolean { return this.props.isCompany; } public get isActive(): boolean { return this.props.status.isActive(); } public get companyId(): UniqueID { return this.props.companyId; } public get reference(): Maybe { return this.props.reference; } public get name(): Name { return this.props.name; } public get tradeName(): Maybe { return this.props.tradeName; } public get tin(): Maybe { return this.props.tin; } public get address(): PostalAddress { return this.props.address; } public get emailPrimary(): Maybe { return this.props.emailPrimary; } public get emailSecondary(): Maybe { return this.props.emailSecondary; } public get phonePrimary(): Maybe { return this.props.phonePrimary; } public get phoneSecondary(): Maybe { return this.props.phoneSecondary; } public get mobilePrimary(): Maybe { return this.props.mobilePrimary; } public get mobileSecondary(): Maybe { return this.props.mobileSecondary; } public get fax(): Maybe { return this.props.fax; } public get website(): Maybe { return this.props.website; } public get languageCode(): LanguageCode { return this.props.languageCode; } public get currencyCode(): CurrencyCode { return this.props.currencyCode; } }