-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroleDialog.js
36 lines (27 loc) · 984 Bytes
/
roleDialog.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
const { CardFactory } = require('botbuilder');
const { ComponentDialog, WaterfallDialog } = require('botbuilder-dialogs');
const AdaptiveCard = require('./cards/TestCard.json');
const ROLE_WATERFALL_DIALOG = 'roleWaterfallDialog';
class RoleDialog extends ComponentDialog {
constructor(id) {
super(id);
// Define the main dialog and its related components.
this.addDialog(new WaterfallDialog(ROLE_WATERFALL_DIALOG, [
this.showCardStep.bind(this)
]));
// The initial child Dialog to run.
this.initialDialogId = ROLE_WATERFALL_DIALOG;
}
async showCardStep(stepContext) {
await stepContext.context.sendActivity({
attachments: [
this.createAdaptiveCard()
],
});
return await stepContext.endDialog();
}
createAdaptiveCard() {
return CardFactory.adaptiveCard(AdaptiveCard);
}
}
module.exports.RoleDialog = RoleDialog;