localhost_oa_based/src/helper/crud/base.service.ts

36 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { NotFoundException } from '@nestjs/common';
import { ObjectLiteral, Repository } from 'typeorm';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { PagerDto } from '~/common/dto/pager.dto';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { paginate } from '../paginate';
import { Pagination } from '../paginate/pagination';
2024-02-28 08:32:35 +08:00
export class BaseService<E extends ObjectLiteral, R extends Repository<E> = Repository<E>> {
2024-02-28 17:02:46 +08:00
constructor(private repository: R) {}
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
async list({ page, pageSize }: PagerDto): Promise<Pagination<E>> {
return paginate(this.repository, { page, pageSize });
2024-02-28 08:32:35 +08:00
}
async findOne(id: number): Promise<E> {
2024-02-28 17:02:46 +08:00
const item = await this.repository.createQueryBuilder().where({ id }).getOne();
if (!item) throw new NotFoundException('未找到该记录');
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
return item;
2024-02-28 08:32:35 +08:00
}
async create(dto: any): Promise<E> {
2024-02-28 17:02:46 +08:00
return await this.repository.save(dto);
2024-02-28 08:32:35 +08:00
}
async update(id: number, dto: any): Promise<void> {
2024-02-28 17:02:46 +08:00
await this.repository.update(id, dto);
2024-02-28 08:32:35 +08:00
}
async delete(id: number): Promise<void> {
2024-02-28 17:02:46 +08:00
const item = await this.findOne(id);
await this.repository.remove(item);
2024-02-28 08:32:35 +08:00
}
}