1
1
mirror of https://github.com/theoludwig/p61-project.git synced 2024-07-17 07:00:12 +02:00
p61-project/domain/entities/User.ts

36 lines
873 B
TypeScript

import { z } from "zod"
import { Entity, EntitySchema } from "./_Entity"
export const UserSchema = EntitySchema.extend({
email: z.string().min(1).email(),
displayName: z.string().min(1),
})
export const UserRegisterSchema = UserSchema.extend({
password: z.string().min(2),
}).omit({ id: true })
export type UserRegisterData = z.infer<typeof UserRegisterSchema>
export type UserData = z.infer<typeof UserSchema>
export class User extends Entity implements UserData {
public email: UserData["email"]
public displayName: UserData["displayName"]
public constructor(options: UserData) {
const { id, email, displayName } = options
super({ id })
this.email = email
this.displayName = displayName
}
public override toJSON(): UserData {
return {
id: this.id,
email: this.email,
displayName: this.displayName,
}
}
}