80 lines
2.0 KiB
TypeScript
80 lines
2.0 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { BaseIndexManager } from 'src/core/modules/domain/usecase/managers/base-index.manager';
|
|
import { SeasonPeriodEntity } from '../../entities/season-period.entity';
|
|
import { SelectQueryBuilder } from 'typeorm';
|
|
import {
|
|
Param,
|
|
RelationParam,
|
|
} from 'src/core/modules/domain/entities/base-filter.entity';
|
|
|
|
@Injectable()
|
|
export class IndexSeasonPeriodManager extends BaseIndexManager<SeasonPeriodEntity> {
|
|
async prepareData(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async beforeProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
async afterProcess(): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
get relations(): RelationParam {
|
|
return {
|
|
// relation only join (for query purpose)
|
|
joinRelations: ['season_type'],
|
|
|
|
// relation join and select (relasi yang ingin ditampilkan),
|
|
selectRelations: [],
|
|
|
|
// relation yang hanya ingin dihitung (akan return number)
|
|
countRelations: [],
|
|
};
|
|
}
|
|
|
|
get selects(): string[] {
|
|
return [
|
|
`${this.tableName}.id`,
|
|
`${this.tableName}.created_at`,
|
|
`${this.tableName}.creator_name`,
|
|
`${this.tableName}.editor_name`,
|
|
`${this.tableName}.updated_at`,
|
|
`${this.tableName}.status`,
|
|
`${this.tableName}.start_date`,
|
|
`${this.tableName}.end_date`,
|
|
`${this.tableName}.days`,
|
|
`${this.tableName}.holiday_name`,
|
|
|
|
'season_type.id',
|
|
'season_type.name',
|
|
];
|
|
}
|
|
|
|
get specificFilter(): Param[] {
|
|
return [
|
|
{
|
|
cols: `${this.tableName}.holiday_name`,
|
|
data: this.filterParam.holiday_names,
|
|
},
|
|
];
|
|
}
|
|
|
|
setQueryFilter(
|
|
queryBuilder: SelectQueryBuilder<SeasonPeriodEntity>,
|
|
): SelectQueryBuilder<SeasonPeriodEntity> {
|
|
if (this.filterParam.start_date && this.filterParam.end_date) {
|
|
queryBuilder.andWhere(
|
|
`${this.tableName}.start_date BETWEEN :from AND :to`,
|
|
{
|
|
from: this.filterParam.start_date,
|
|
to: this.filterParam.end_date,
|
|
},
|
|
);
|
|
}
|
|
|
|
return queryBuilder;
|
|
}
|
|
}
|