Coder Social home page Coder Social logo

Comments (6)

Sairyss avatar Sairyss commented on May 17, 2024 2

I don't use Prisma, but according to their docs it generates TS types based on your schemas and exports them from @prisma/client/index.d.ts https://www.prisma.io/docs/concepts/components/prisma-schema/data-model#type-definitions.

The mapper would look something like this:

// user type exported from prisma, not sure if the "from" is correct but it should be somewhere in your project
import { User as PrismaUser } from "@prisma/client"; 

export class UserOrmMapper extends OrmMapper<UserEntity, PrismaUser> {
  protected toOrmProps(entity: UserEntity): PrismaUser {
    const props = entity.getPropsCopy();

    const prismaUser: PrismaUser = {
      email: props.email.value,
      role: props.role,
    };
    return prismaUser;
  }

  protected toDomainProps(prismaUser: PrismaUser): EntityProps<UserProps> {
    const id = new UUID(prismaUser.id);
    const props: UserProps = {
      email: new Email(prismaUser.email),
      role: prismaUser.role,
    };
    return { id, props };
  }
}

Repository can look something like this:

export class UserRepository {
  protected constructor(
    protected readonly mapper: OrmMapper<UserEntity, PrismaUser>,
  ) {}

   private readonly prisma = new PrismaClient();

    async save(entity: UserEntity): Promise<UserEntity> {
        entity.validate(); // Protecting invariant before saving
        const ormEntity = this.mapper.toOrmEntity(entity);
        const user = await this.prisma.user.create({ data: ormEntity })

        return this.mapper.toDomainEntity(user);
  }
}

You might need to modify base classes slightly to support prisma instead of typeorm, but the general principles are the same

from domain-driven-hexagon.

Sairyss avatar Sairyss commented on May 17, 2024 1

Prisma generates typescript types/interfaces for you: https://www.prisma.io/docs/concepts/components/prisma-client/advanced-type-safety
In a mapper you will just need to map your domain entity to match that type so you can save it into a db

from domain-driven-hexagon.

balibou avatar balibou commented on May 17, 2024

Ah great ! thanks for your explanation and the link provided !

from domain-driven-hexagon.

balibou avatar balibou commented on May 17, 2024

@Sairyss is there any chance you can provide an example of repository for using prisma typescript types/interfaces with mapper ? (for both methods toDomainEntity and toOrmEntity)

I'm totally stuck on the implementation of the classes

from domain-driven-hexagon.

balibou avatar balibou commented on May 17, 2024

Thanks @Sairyss I'm gonna try this :)

from domain-driven-hexagon.

balibou avatar balibou commented on May 17, 2024

Everything working like a charm, thanks @Sairyss !

from domain-driven-hexagon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.