-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathevent.js
More file actions
224 lines (193 loc) · 6.89 KB
/
event.js
File metadata and controls
224 lines (193 loc) · 6.89 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
const getEventsFactory = require('./helpers/eventsFactory').default;
const sendPersonalNotification = require('../utils/personalNotifications').default;
/**
* See all types and fields here {@see ../typeDefs/event.graphql}
*/
module.exports = {
EventMarks: {
starred(marks) {
return 'starred' in marks;
},
ignored(marks) {
return 'ignored' in marks;
},
resolved(marks) {
return 'resolved' in marks;
},
},
Event: {
/**
* Returns repetitions portion of the event
*
* @param {String} projectId - id of the project got from the parent node (event)
* @param {String} originalEventId - id of the original event of the repetitions to get, got from parent node (event)
* @param {Number} limit - argument of the query, maximal count of the repetitions in one portion
* @param {Number|null} cursor - pointer to the next portion of repetition, could be null if we want to get first portion
*
* @return {RepetitionsPortion}
*/
async repetitionsPortion({ projectId, originalEventId }, { limit, cursor }, context) {
const factory = getEventsFactory(context, projectId);
return factory.getEventRepetitions(originalEventId, limit, cursor);
},
/**
* Returns users who visited event
* @param {string[]} visitedBy - id's users who visited event
* @param _args - query args (empty)
* @param factories - factories for working with models
* @return {Promise<UserModel[]> | null}
*/
async visitedBy({ visitedBy, projectId, workspaceId }, _args, { factories, user }) {
/**
* Crutch for Demo Workspace
* Prefer workspaceId from parent if present to avoid extra project lookup
*/
const resolvedWorkspaceId = workspaceId || (await (async () => {
const project = await factories.projectsFactory.findById(projectId);
return project ? project.workspaceId.toString() : undefined;
})());
if (resolvedWorkspaceId === '6213b6a01e6281087467cc7a') {
return [ await factories.usersFactory.findById(user.id) ];
}
if (!visitedBy || !visitedBy.length) {
return [];
}
return visitedBy.map(userId => factories.usersFactory.findById(userId));
},
/**
* Returns the user assigneed to the event
*
* @param {string} assignee - user id
* @param _args - query args (empty)
* @param factories - factories for working with models
* @return {Promise<UserModel> | null}
*/
async assignee({ assignee }, _args, { factories }) {
if (!assignee || !assignee.length) {
return null;
}
return factories.usersFactory.dataLoaders.userById.load(assignee);
},
/**
* Return chart data for target event occured in last few days
*
* @param {string} projectId - event's project
* @param {string} groupHash - event's groupHash
* @param {number} days - how many days we need to fetch for displaying in a charts
* @param {number} timezoneOffset - user's local timezone offset in minutes
* @returns {Promise<ProjectChartItem[]>}
*/
async chartData({ projectId, groupHash }, { days, timezoneOffset }, context) {
const factory = getEventsFactory(context, projectId);
return factory.findChartData(days, timezoneOffset, groupHash);
},
/**
* Return release data for the event
*
* @param {string} projectId - event's project
* @param {String} eventId - event id
* @returns {Promise<Release>}
*/
async release({ projectId, id: eventId }, _args, context) {
const factory = getEventsFactory(context, projectId);
const release = await factory.getEventRelease(eventId);
return release;
},
},
Mutation: {
/**
* Mark event as visited for current user
*
* @param {ResolverObj} _obj - resolver context
* @param {string} projectId - project id
* @param {string} eventId - event id
* @param {UserInContext} user - user context
* @return {Promise<boolean>}
*/
async visitEvent(_obj, { projectId, eventId }, { user, ...context }) {
const factory = getEventsFactory(context, projectId);
const { result } = await factory.visitEvent(eventId, user.id);
return !!result.ok;
},
/**
* Mark event with one of the event marks
*
* @param {ResolverObj} _obj - resolver context
* @param {string} project - project id
* @param {string} id - event id
* @param {string} mark - mark to set
* @return {Promise<boolean>}
*/
async toggleEventMark(_obj, { project, eventId, mark }, context) {
const factory = getEventsFactory(context, project);
const { result } = await factory.toggleEventMark(eventId, mark);
return !!result.ok;
},
/**
* Mutations namespace
*
* @return {Function()}
*/
events: () => ({}),
},
EventsMutations: {
/**
* Update assignee to selected event
*
* @param {ResolverObj} _obj - resolver context
* @param {UpdateAssigneeInput} input - object of arguments
* @param factories - factories for working with models
* @return {Promise<boolean>}
*/
async updateAssignee(_obj, { input }, { factories, user, ...context }) {
const { projectId, eventId, assignee } = input;
const factory = getEventsFactory(context, projectId);
const userExists = await factories.usersFactory.findById(assignee);
if (!userExists) {
return {
success: false,
};
}
const project = await factories.projectsFactory.findById(projectId);
const workspaceId = project.workspaceId;
const workspace = await factories.workspacesFactory.findById(workspaceId);
const assigneeExistsInWorkspace = await workspace.getMemberInfo(assignee);
if (!assigneeExistsInWorkspace) {
return {
success: false,
};
}
const { result } = await factory.updateAssignee(eventId, assignee);
const assigneeData = await factories.usersFactory.dataLoaders.userById.load(assignee);
await sendPersonalNotification(assigneeData, {
type: 'assignee',
payload: {
assigneeId: assignee,
projectId,
whoAssignedId: user.id,
eventId,
},
});
return {
success: !!result.ok,
record: assigneeData,
};
},
/**
* Remove an assignee from the selected event
*
* @param {ResolverObj} _obj - resolver context
* @param {RemoveAssigneeInput} input - object of arguments
* @param factories - factories for working with models
* @return {Promise<boolean>}
*/
async removeAssignee(_obj, { input }, context) {
const { projectId, eventId } = input;
const factory = getEventsFactory(context, projectId);
const { result } = await factory.updateAssignee(eventId, '');
return {
success: !!result.ok,
};
},
},
};