mirror of
https://github.com/hexastack/hexabot
synced 2025-04-06 14:05:33 +00:00
fix: enhance enum naming
This commit is contained in:
parent
e5e5495a42
commit
1b788cc78f
@ -30,7 +30,7 @@ import {
|
|||||||
import { TFilterQuery } from '@/utils/types/filter.types';
|
import { TFilterQuery } from '@/utils/types/filter.types';
|
||||||
|
|
||||||
import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto';
|
import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto';
|
||||||
import { DtoInfer, DtoOperations, DtoProps } from '../types/dto.types';
|
import { DtoActions, DtoInfer, DtoProps } from '../types/dto.types';
|
||||||
|
|
||||||
import { BaseSchema } from './base-schema';
|
import { BaseSchema } from './base-schema';
|
||||||
import { LifecycleHookManager } from './lifecycle-hook-manager';
|
import { LifecycleHookManager } from './lifecycle-hook-manager';
|
||||||
@ -456,7 +456,7 @@ export abstract class BaseRepository<
|
|||||||
return await this.model.countDocuments(criteria).exec();
|
return await this.model.countDocuments(criteria).exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
async create(dto: DtoInfer<DtoOperations.Create, DTOCruds, U>): Promise<T> {
|
async create(dto: DtoInfer<DtoActions.Create, DTOCruds, U>): Promise<T> {
|
||||||
const doc = await this.model.create(dto);
|
const doc = await this.model.create(dto);
|
||||||
|
|
||||||
return plainToClass(
|
return plainToClass(
|
||||||
@ -467,7 +467,7 @@ export abstract class BaseRepository<
|
|||||||
}
|
}
|
||||||
|
|
||||||
async createMany(
|
async createMany(
|
||||||
dtoArray: DtoInfer<DtoOperations.Create, DTOCruds, U>[],
|
dtoArray: DtoInfer<DtoActions.Create, DTOCruds, U>[],
|
||||||
): Promise<T[]> {
|
): Promise<T[]> {
|
||||||
const docs = await this.model.create(dtoArray);
|
const docs = await this.model.create(dtoArray);
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import { ProjectionType, QueryOptions } from 'mongoose';
|
|||||||
import { TFilterQuery } from '@/utils/types/filter.types';
|
import { TFilterQuery } from '@/utils/types/filter.types';
|
||||||
|
|
||||||
import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto';
|
import { PageQueryDto, QuerySortDto } from '../pagination/pagination-query.dto';
|
||||||
import { DtoInfer, DtoOperations, DtoProps } from '../types/dto.types';
|
import { DtoActions, DtoInfer, DtoProps } from '../types/dto.types';
|
||||||
|
|
||||||
import { BaseRepository } from './base-repository';
|
import { BaseRepository } from './base-repository';
|
||||||
import { BaseSchema } from './base-schema';
|
import { BaseSchema } from './base-schema';
|
||||||
@ -145,7 +145,7 @@ export abstract class BaseService<
|
|||||||
}
|
}
|
||||||
|
|
||||||
async create<D extends Omit<T, keyof BaseSchema>>(
|
async create<D extends Omit<T, keyof BaseSchema>>(
|
||||||
dto: DtoInfer<DtoOperations.Create, DTOCruds, D>,
|
dto: DtoInfer<DtoActions.Create, DTOCruds, D>,
|
||||||
): Promise<T> {
|
): Promise<T> {
|
||||||
try {
|
try {
|
||||||
return await this.repository.create(dto);
|
return await this.repository.create(dto);
|
||||||
@ -161,7 +161,7 @@ export abstract class BaseService<
|
|||||||
|
|
||||||
async findOneOrCreate<D extends Omit<T, keyof BaseSchema>>(
|
async findOneOrCreate<D extends Omit<T, keyof BaseSchema>>(
|
||||||
criteria: string | TFilterQuery<T>,
|
criteria: string | TFilterQuery<T>,
|
||||||
dto: DtoInfer<DtoOperations.Create, DTOCruds, D>,
|
dto: DtoInfer<DtoActions.Create, DTOCruds, D>,
|
||||||
): Promise<T> {
|
): Promise<T> {
|
||||||
const result = await this.findOne(criteria);
|
const result = await this.findOne(criteria);
|
||||||
if (!result) {
|
if (!result) {
|
||||||
@ -171,7 +171,7 @@ export abstract class BaseService<
|
|||||||
}
|
}
|
||||||
|
|
||||||
async createMany<D extends Omit<T, keyof BaseSchema>>(
|
async createMany<D extends Omit<T, keyof BaseSchema>>(
|
||||||
dtoArray: DtoInfer<DtoOperations.Create, DTOCruds, D>[],
|
dtoArray: DtoInfer<DtoActions.Create, DTOCruds, D>[],
|
||||||
): Promise<T[]> {
|
): Promise<T[]> {
|
||||||
return await this.repository.createMany(dtoArray);
|
return await this.repository.createMany(dtoArray);
|
||||||
}
|
}
|
||||||
|
@ -6,17 +6,17 @@
|
|||||||
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export enum DtoOperations {
|
export enum DtoActions {
|
||||||
Create = 'create',
|
Create = 'create',
|
||||||
Read = 'read',
|
Read = 'read',
|
||||||
Update = 'update',
|
Update = 'update',
|
||||||
Delete = 'delete',
|
Delete = 'delete',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DtoConfig<T extends Partial<Record<DtoOperations, object>>> = T;
|
export type DtoConfig<T extends Partial<Record<DtoActions, object>>> = T;
|
||||||
|
|
||||||
export type DtoProps<T extends Record<string, unknown>> = {
|
export type DtoProps<T extends Record<string, unknown>> = {
|
||||||
[K in DtoOperations]?: T[K];
|
[K in DtoActions]?: T[K];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type DtoInfer<K extends keyof DTO, DTO, T> = DTO[K] extends object
|
export type DtoInfer<K extends keyof DTO, DTO, T> = DTO[K] extends object
|
||||||
|
Loading…
Reference in New Issue
Block a user