nestjs-prisma-base
Version:
A reusable NestJS module for Prisma ORM with base classes for controller, service and DTOs
73 lines • 2.7 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseService = void 0;
const common_1 = require("@nestjs/common");
const prisma_service_1 = require("../prisma/prisma.service");
let BaseService = class BaseService {
constructor(prisma) {
this.prisma = prisma;
}
async findAll(page = 1, limit = 10) {
const skip = (page - 1) * limit;
return this.prisma[this.modelName].findMany({
skip,
take: limit,
});
}
async findOne(id) {
const record = await this.prisma[this.modelName].findUnique({
where: { id },
});
if (!record) {
throw new common_1.NotFoundException(`${this.modelName} with ID "${id}" not found`);
}
return record;
}
async create(data) {
return this.prisma[this.modelName].create({
data,
});
}
async update(id, data) {
try {
return (await this.prisma[this.modelName].update({
where: { id },
data,
}));
}
catch (error) {
if (error?.code === 'P2025') {
throw new common_1.NotFoundException(`${this.modelName} with ID "${id}" not found`);
}
throw error;
}
}
async remove(id) {
try {
return (await this.prisma[this.modelName].delete({
where: { id },
}));
}
catch (error) {
if (error?.code === 'P2025') {
throw new common_1.NotFoundException(`${this.modelName} with ID "${id}" not found`);
}
throw error;
}
}
};
exports.BaseService = BaseService;
exports.BaseService = BaseService = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [prisma_service_1.PrismaService])
], BaseService);
//# sourceMappingURL=base.service.js.map