-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.js
313 lines (261 loc) · 8.47 KB
/
actions.js
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
const blocksKit = require("./classes/utilities/BlockKitBuilder");
const hubspot = require("./classes/apis/HubSpot");
const float = require("./classes/apis/Float");
function registerActions(app) {
/**
* This action is triggered when the user wants to get the team working on a project.
*/
app.action("get_project_team", async ({ body, client, ack, logger }) => {
await ack();
const blocks = [];
const allProjects = await float.getProjects();
const options = allProjects.map((project) => ({
text: {
type: "plain_text",
text: project.name,
},
value: project.project_id.toString(),
}));
blocks.push(
blocksKit.addSelectInput({
blockId: "select_project",
actionId: "select_project",
label: "Projecten",
placeholder: "Selecteer een project",
options,
})
);
const modalOptions = blocksKit.createModal({
triggerId: body.trigger_id,
callbackId: "get_project_team",
title: "Team opzoeken",
blocks,
submitText: "Team bekijken",
});
await client.views.open(modalOptions);
});
/**
* This action is triggered when the user wants to get information about a project.
*/
app.action("get_project_manager", async ({ body, client, ack, logger }) => {
await ack();
const blocks = [];
const allProjects = await float.getProjects();
const options = allProjects.map((project) => ({
text: {
type: "plain_text",
text: project.name,
},
value: project.project_id.toString(),
}));
blocks.push(
blocksKit.addSelectInput({
blockId: "select_project",
actionId: "select_project",
label: "Projecten",
placeholder: "Selecteer een project",
options,
})
);
const modalOptions = blocksKit.createModal({
triggerId: body.trigger_id,
callbackId: "get_project_manager",
title: "Projectmanager opzoeken",
blocks,
submitText: "Projectmanager bekijken",
});
await client.views.open(modalOptions);
});
/**
* This action is triggered when the user wants to get information about a company.
*/
app.action("get_company_info", async ({ body, client, ack, logger }) => {
await ack();
const blocks = [];
blocks.push(
blocksKit.addDispatchInput({
blockId: "search_company",
actionId: "search_company",
label: "Bedrijf zoeken",
placeholder: "Vul hier een bedrijfsnaam in",
})
);
const modalOptions = blocksKit.createModal({
triggerId: body.trigger_id,
callbackId: "get_company_info",
title: "Bedrijfsinformatie",
blocks,
});
await client.views.open(modalOptions);
});
/**
* This action is triggered when the user wants to get the recent tickets of a company.
*/
app.action("get_recent_tickets", async ({ body, client, ack }) => {
await ack();
const blocks = [];
blocks.push(
blocksKit.addDispatchInput({
blockId: "search_company",
actionId: "search_company",
label: "Bedrijf zoeken",
placeholder: "Vul hier een bedrijfsnaam in",
})
);
const modalOptions = blocksKit.createModal({
triggerId: body.trigger_id,
callbackId: "get_recent_tickets",
title: "Recente tickets",
blocks,
});
await client.views.open(modalOptions);
});
/**
* This action is triggered when the user wants to search for a company.
*/
app.action("search_company", async ({ body, client, ack, logger }) => {
await ack();
const companyName = body.actions[0].value;
// Call HubSpot API with the company name
const hubspotResponse = await hubspot.search(companyName);
if (hubspotResponse.total === 0) {
const blocks = [
blocksKit.addDispatchInput({
blockId: "search_company",
actionId: "search_company",
label: "Bedrijfsnaam zoeken",
placeholder: "Vul hier een bedrijfsnaam in",
initialValue: companyName,
}),
blocksKit.addSection({
text: "Geen bedrijven gevonden.",
}),
];
if ("get_company_info" === body.view.callback_id) {
const updatedModal = blocksKit.updateModal({
viewId: body.view.id,
callbackId: "get_company_info",
title: "Bedrijfsinformatie",
blocks,
});
await client.views.update(updatedModal);
} else if ("get_recent_tickets" === body.view.callback_id) {
const updatedModal = blocksKit.updateModal({
viewId: body.view.id,
callbackId: "get_recent_tickets",
title: "Recente tickets",
blocks,
});
await client.views.update(updatedModal);
}
return;
}
const companies = await hubspotResponse.results;
const options = companies.map((company) => ({
text: {
type: "plain_text",
text: company.properties.name,
},
value: company.id,
}));
const blocks = [
blocksKit.addDispatchInput({
blockId: "search_company",
actionId: "search_company",
label: "Bedrijfsnaam zoeken",
placeholder: "Vul hier een bedrijfsnaam in",
initialValue: companyName,
}),
];
if (options.length > 0) {
blocks.push(
blocksKit.addSelectInput({
blockId: "select_company",
actionId: "select_company",
label: "Resultaten",
placeholder: "Selecteer een bedrijf",
options,
})
);
} else {
blocks.push(
blocksKit.addSection({
text: "Geen tickets gevonden",
})
);
}
if ("get_company_info" === body.view.callback_id) {
const updatedModal = blocksKit.updateModal({
viewId: body.view.id,
callbackId: "get_company_info",
title: "Bedrijfsinformatie",
blocks,
});
await client.views.update(updatedModal);
} else if ("get_recent_tickets" === body.view.callback_id) {
const updatedModal = blocksKit.updateModal({
viewId: body.view.id,
callbackId: "get_recent_tickets",
title: "Recente tickets",
blocks,
});
await client.views.update(updatedModal);
}
});
/**
* This action is triggered when someone provides feedback for a project through the
* cron job that interacts with the Float API and runs every day at 16:30.
*/
app.action(/feedback_(.*)/, async ({ body, ack, say, client }) => {
await ack();
const floatProjectId = body.actions[0].action_id.replace("feedback_", "");
const feedback = body.actions[0].value;
const userId = body.user.id;
const channelId = body.channel.id;
const threadTs = body.message.thread_ts || body.message.ts;
// Remove the dispatch input and add a confirmation message
const updatedBlocks = body.message.blocks.filter(
(block) => block.block_id !== `feedback_${floatProjectId}`
);
// Update the message by removing the dispatch input and adding the new confirmation message
await client.chat.update({
channel: channelId,
ts: threadTs,
blocks: updatedBlocks,
});
const project = await float.getProjectById(floatProjectId);
if (!project) return;
const { name: projectName, project_manager: projectManagerId } = project;
let projectManagerSlackId;
if (process.env.NODE_ENV === "development") {
projectManagerSlackId = userId;
} else {
const projectManager = await float.getAccountById(projectManagerId);
const projectManagerEmail = projectManager?.email;
const result = await client.users.lookupByEmail({
email: projectManagerEmail,
});
if (!result.ok) {
return await say({
channel: channelId,
thread_ts: threadTs,
text: `Bedankt voor de terugkoppeling voor *${projectName}*. Ik kon de projectmanager niet vinden, dus hier is je terugkoppeling: ${feedback}.`,
});
}
projectManagerSlackId = result.user.id;
}
await client.chat.postMessage({
token: process.env.USER_OAUTH_TOKEN,
channel: projectManagerSlackId,
text: `:wave: <@${projectManagerSlackId}>, hierbij een korte terugkoppeling voor *${projectName}*.\n\n*Terugkoppeling*\n${feedback}`,
});
await say({
channel: channelId,
thread_ts: threadTs,
text: `Bedankt voor de terugkoppeling voor *${projectName}*. Ik heb het doorgestuurd naar <@${projectManagerSlackId}>.`,
});
});
}
module.exports = {
registerActions,
};