-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCheckEvent.ts
More file actions
145 lines (126 loc) · 3.71 KB
/
CheckEvent.ts
File metadata and controls
145 lines (126 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import { Transform, Type } from 'class-transformer';
import { IsInt, IsLatLong, IsOptional, IsString, Min, ValidateNested } from 'class-validator';
import { Column, Entity, ManyToOne, ViewColumn, ViewEntity } from 'typeorm';
import { ListChunk } from '../Base';
import { User } from '../User';
import { AgendaBase, AgendaBaseFilter } from './Agenda';
@Entity()
export class CheckEvent extends AgendaBase {
@IsLatLong()
@IsOptional()
@Column({ nullable: true })
coordinate?: string;
@Type(() => User)
@Transform(({ value }) => User.from(value))
@ValidateNested()
@ManyToOne(() => User)
user: User;
}
export class CheckEventFilter extends AgendaBaseFilter {
@IsInt()
@Min(1)
@IsOptional()
user?: number;
}
export class CheckEventChunk implements ListChunk<CheckEvent> {
@IsInt()
@Min(0)
count: number;
@Type(() => CheckEvent)
@ValidateNested({ each: true })
list: CheckEvent[];
}
@ViewEntity({
expression: connection =>
connection
.createQueryBuilder()
.from(CheckEvent, 'ce')
.groupBy('ce.activity.id')
.addGroupBy('ce.activity.name')
.select('ce.activity.id', 'activityId')
.addSelect('ce.activity.name', 'activityName')
.addSelect('COUNT(ce.id)', 'checkCount')
})
export class ActivityCheckInSummary {
@ViewColumn()
@IsInt()
@Min(1)
activityId: number;
@ViewColumn()
@IsString()
activityName: string;
@ViewColumn()
@IsInt()
@Min(0)
checkCount: number;
}
@ViewEntity({
expression: connection =>
connection
.createQueryBuilder()
.from(CheckEvent, 'ce')
.groupBy('ce.user.id')
.addGroupBy('ce.activity.id')
.addGroupBy('ce.activity.name')
.select('ce.activity.id', 'activityId')
.addSelect('ce.user.id', 'userId')
.addSelect('ce.activity.name', 'activityName')
.addSelect('COUNT(ce.id)', 'checkCount')
})
export class UserActivityCheckInSummary extends ActivityCheckInSummary {
@ViewColumn()
@IsInt()
@Min(1)
userId: number;
@Type(() => User)
@ValidateNested()
user: User;
}
@ViewEntity({
expression: connection =>
connection
.createQueryBuilder()
.from(CheckEvent, 'ce')
.groupBy('ce.activity.id')
.addGroupBy('ce.activity.name')
.addGroupBy('ce.agenda.id')
.addGroupBy('ce.agenda.title')
.select('ce.activity.id', 'activityId')
.addSelect('ce.activity.name', 'activityName')
.addSelect('ce.agenda.id', 'agendaId')
.addSelect('ce.agenda.title', 'agendaTitle')
.addSelect('COUNT(ce.id)', 'checkCount')
})
export class ActivityAgendaCheckInSummary extends ActivityCheckInSummary {
@ViewColumn()
@IsInt()
@Min(1)
agendaId: number;
@ViewColumn()
@IsString()
agendaTitle: string;
}
export class UserActivityCheckInListChunk implements ListChunk<UserActivityCheckInSummary> {
@IsInt()
@Min(0)
count: number;
@Type(() => UserActivityCheckInSummary)
@ValidateNested({ each: true })
list: UserActivityCheckInSummary[];
}
export class ActivityCheckInListChunk implements ListChunk<ActivityCheckInSummary> {
@IsInt()
@Min(0)
count: number;
@Type(() => ActivityCheckInSummary)
@ValidateNested({ each: true })
list: ActivityCheckInSummary[];
}
export class ActivityAgendaCheckInListChunk implements ListChunk<ActivityAgendaCheckInSummary> {
@IsInt()
@Min(0)
count: number;
@Type(() => ActivityAgendaCheckInSummary)
@ValidateNested({ each: true })
list: ActivityAgendaCheckInSummary[];
}