-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminutesDialog.js
61 lines (41 loc) · 1.67 KB
/
minutesDialog.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
const { ComponentDialog, TextPrompt, WaterfallDialog} = require('botbuilder-dialogs');
const { CardFactory } = require('botbuilder');
const minutesId = 'minutesDialog';
const jsonfile = require('jsonfile');
const MinutesCard = require('./cards/MinutesCard.json');
class MinutesDialog extends ComponentDialog {
constructor(id){
super(id);
this.initialDialogId = minutesId;
this.addDialog(new WaterfallDialog(minutesId, [
this.buildCard.bind(this),
this.showCardStep.bind(this)
]));
}
async buildCard(step){
var tasks = jsonfile.readFileSync(`Resources/Classes/${step.options.profile.class}/Teams/${step.options.profile.team}/tasks.json`);
let tasks_list = Object.keys(tasks);
for (var task in tasks_list){
var choices = MinutesCard["body"][2].choices
var choiceObject = {"title": "", "value": ""};
choiceObject.title = tasks_list[task];
choiceObject.value = tasks_list[task];
choices.push(choiceObject);
}
return await step.next();
}
async showCardStep(stepContext) {
await stepContext.context.sendActivity({
attachments: [
this.createAdaptiveCard()
],
});
//Remove current choices in task form (workaround due to state being held on card import)
MinutesCard["body"][2].choices.length = 0;
return await stepContext.endDialog();
}
createAdaptiveCard() {
return CardFactory.adaptiveCard(MinutesCard);
}
}
module.exports.MinutesDialog = MinutesDialog;