ce676f20a4
Too many changes to split them up. This commit contains roughly two months worth of work. This commit introduces the first aggregate and rewrites the ticket system to follow DDD patterns. It adds Spartan NG as the new component library. TanStack Query to replace GraphQL. Oh and Prisma is almost over as well.
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import {
|
|
Args,
|
|
Int,
|
|
Parent,
|
|
Query,
|
|
ResolveField,
|
|
Resolver,
|
|
} from '@nestjs/graphql';
|
|
import { TicketObjectType } from '../app-ticket-system/ticket.object-type';
|
|
import {
|
|
AccountingFilterArgs
|
|
} from './accounting-arg.types';
|
|
import { AccountingState } from './accounting-state';
|
|
import { AccountingValidationService } from './accounting-validation.service';
|
|
import {
|
|
PaginatedTourObjectType,
|
|
TourCostBreakdownObjectType,
|
|
TourStateMetaObjectType,
|
|
} from './accounting.object-type';
|
|
import { TourObjectType } from './tour.object-type';
|
|
|
|
@Resolver(() => TourObjectType)
|
|
export class AccountingValidationResolver {
|
|
constructor(private readonly service: AccountingValidationService) {}
|
|
|
|
@Query(() => PaginatedTourObjectType)
|
|
accountingTours(
|
|
@Args('state', { type: () => AccountingState }) state: AccountingState,
|
|
@Args('filters', { type: () => AccountingFilterArgs, nullable: true })
|
|
filters: AccountingFilterArgs,
|
|
@Args('cursor', { nullable: true }) cursor: string,
|
|
@Args('take', { type: () => Int, nullable: true }) take: number = 10,
|
|
) {
|
|
return this.service.paginateToursByState(state, take, cursor);
|
|
}
|
|
|
|
@Query(() => TourStateMetaObjectType)
|
|
accountingStateMeta(
|
|
@Args('state', { type: () => AccountingState })
|
|
accountingState: AccountingState,
|
|
) {
|
|
return this.service.getAccountingStateMeta(accountingState);
|
|
}
|
|
|
|
@Query(() => TourCostBreakdownObjectType)
|
|
tourCostBreakdown(@Args('operationId') operationId: string) {
|
|
return this.service.getTourCostBreakdown(operationId);
|
|
}
|
|
|
|
@ResolveField(() => TicketObjectType, { nullable: true })
|
|
ticket(@Parent() tour: TourObjectType) {
|
|
return this.service.findTicketByTicketId(tour.ticketId);
|
|
}
|
|
}
|