-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCallDataSource.ts
More file actions
228 lines (203 loc) · 5.83 KB
/
Copy pathCallDataSource.ts
File metadata and controls
228 lines (203 loc) · 5.83 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import { AllocationTimeUnits, Call } from '../../models/Call';
import { CallHasInstrument } from '../../models/CallHasInstrument';
import { Workflow, WorkflowType } from '../../models/Workflow';
import { CreateCallInput } from '../../resolvers/mutations/CreateCallMutation';
import {
AssignInstrumentsToCallInput,
CallOrderInput,
RemoveAssignedInstrumentFromCallInput,
UpdateCallInput,
UpdateFapToCallInstrumentInput,
} from '../../resolvers/mutations/UpdateCallMutation';
import { CallDataSource } from '../CallDataSource';
import { CallsFilter } from './../../resolvers/queries/CallsQuery';
export const dummyWorkflow = new Workflow(
1,
'Test workflow',
'This is description',
WorkflowType.PROPOSAL,
'default'
);
export const dummyCallFactory = (values?: Partial<Call>) => {
return new Call(
values?.id || 1,
values?.shortCode || 'shortCode',
values?.startCall || new Date(),
values?.endCall || new Date(),
values?.endCallInternal || new Date(),
values?.startReview || new Date(),
values?.endReview || new Date(),
values?.startFapReview || new Date(),
values?.endFapReview || new Date(),
values?.startNotify || new Date(),
values?.endNotify || new Date(),
values?.startCycle || new Date(),
values?.endCycle || new Date(),
values?.cycleComment || 'Cycle comment',
values?.surveyComment || 'Survey comment',
values?.submissionMessage || 'Submission message',
values?.referenceNumberFormat || '',
values?.proposalSequence || 0,
values?.proposalWorkflowId || 1,
values?.callEnded || false,
values?.callEndedInternal || false,
values?.callReviewEnded || false,
values?.callFapReviewEnded || false,
values?.templateId || 1,
values?.esiTemplateId,
values?.allocationTimeUnit || AllocationTimeUnits.Day,
values?.title || 'Title',
values?.description || 'Description',
values?.proposalPdfTemplateId,
values?.experimentSafetyPdfTemplateId,
values?.fapReviewTemplateId || 1,
values?.technicalReviewTemplateId || 1,
values?.isActive || true,
values?.sort_order || 0,
values?.experimentWorkflowId ?? 1
);
};
export const dummyCall = new Call(
1,
'shortCode',
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
'',
'',
'',
'',
0,
1,
false,
false,
false,
false,
1,
2,
AllocationTimeUnits.Day,
'',
'',
1,
undefined,
1,
1,
true,
0,
1
);
export const anotherDummyCall = new Call(
2,
'shortCode2',
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
new Date('2019-07-17 08:25:12.23043+00'),
'',
'',
'',
'',
0,
1,
true,
false,
false,
false,
1,
2,
AllocationTimeUnits.Day,
'',
'',
1, // proposalPdfTemplateId
undefined, // experimentSafetyPdfTemplateId
1, // fapReviewTemplateId
1, // technicalReviewTemplateId
true, // isActive
0, //sort_order
1 // experimentWorkflowId
);
export const dummyCalls = [dummyCall, anotherDummyCall];
export class CallDataSourceMock implements CallDataSource {
async delete(id: number): Promise<Call> {
return dummyCall;
}
async getCall(id: number): Promise<Call | null> {
const call = dummyCalls.find((dummyCallItem) => dummyCallItem.id === id);
if (call) {
return call;
} else {
return null;
}
}
async getCalls(filter?: CallsFilter): Promise<Call[]> {
if (filter?.isReviewEnded === false) {
return dummyCalls.filter(
(dummyCallItem) => !dummyCallItem.callReviewEnded
);
}
if (filter?.isEnded === false) {
return dummyCalls.filter((dummyCallItem) => !dummyCallItem.callEnded);
}
return dummyCalls;
}
async getCallHasInstrumentsByInstrumentIds(
instrumentIds: number[]
): Promise<CallHasInstrument[]> {
throw new Error('Method not implemented.');
}
async create(args: CreateCallInput) {
return { ...dummyCall, ...args };
}
async update(args: UpdateCallInput) {
const indexOfCallToUpdate = dummyCalls.indexOf(dummyCall);
dummyCalls[indexOfCallToUpdate] = { ...dummyCall, ...args };
return dummyCalls[indexOfCallToUpdate];
}
async orderCalls(data: CallOrderInput): Promise<boolean> {
return true;
}
async assignInstrumentsToCall(args: AssignInstrumentsToCallInput) {
return dummyCall;
}
async updateFapToCallInstrument(args: UpdateFapToCallInstrumentInput) {
return dummyCall;
}
async removeAssignedInstrumentFromCall(
args: RemoveAssignedInstrumentFromCallInput
) {
return dummyCall;
}
async getCallsByInstrumentScientist(scientistId: number): Promise<Call[]> {
return dummyCalls;
}
async isCallEnded(callId: number): Promise<boolean> {
return callId !== 1;
}
async getCallByAnswerIdProposal(answer_id: number) {
return dummyCall;
}
async getProposalWorkflowByCall(callId: number): Promise<Workflow | null> {
return dummyWorkflow;
}
async getExperimentWorkflowByCall(callId: number): Promise<Workflow | null> {
return dummyWorkflow;
}
getCallsOfFaps(fapIds: number[]): Promise<Call[]> {
throw new Error('Method not implemented.');
}
}