-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontentDialog.js
133 lines (112 loc) · 3.96 KB
/
contentDialog.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
const { LuisRecognizer } = require("botbuilder-ai");
const { CardFactory, MessageFactory } = require("botbuilder");
const {
ChoiceFactory,
ChoicePrompt,
ComponentDialog,
ConfirmPrompt,
DialogSet,
DialogTurnStatus,
TextPrompt,
WaterfallDialog,
} = require("botbuilder-dialogs");
const CHOICE_PROMPT = "CHOICE_PROMPT";
const CONFIRM_PROMPT = "CONFIRM_PROMPT";
const LANG_PROMPT = "LANG_PROMPT";
const WATERFALL_DIALOG = "WATERFALL_DIALOG";
const MS_Root = "https://docs.microsoft.com/";
const MS_SamplesSearchURL = "samples/browse/?terms=";
const MS_DocsSearchURL = "search/?terms=";
class ContentDialog extends ComponentDialog {
constructor(luis) {
super("contentDialog");
this.luis = luis;
this.addDialog(new ChoicePrompt(CHOICE_PROMPT));
this.addDialog(new TextPrompt(LANG_PROMPT));
this.addDialog(new ConfirmPrompt(CONFIRM_PROMPT));
this.addDialog(
new WaterfallDialog(WATERFALL_DIALOG, [
this.selectResourceStep.bind(this),
this.selectTechStep.bind(this),
this.confirmChoices.bind(this),
this.sendResults.bind(this),
])
);
this.initialDialogId = WATERFALL_DIALOG;
}
async selectResourceStep(step) {
if (!this.luis.isConfigured) {
const messageText =
"NOTE: LUIS is not configured. To enable all capabilities, add `LuisAppId`, `LuisAPIKey` and `LuisAPIHostName` to the .env file.";
step.context.sendActivity(messageText);
return await step.endDialog();
} else {
return await step.prompt(CHOICE_PROMPT, {
prompt: "Which learning resources did you want?",
choices: ChoiceFactory.toChoices(["Docs", "Samples", "Both"]),
});
}
}
async selectTechStep(step) {
step.values.resources = step.result.value;
return await step.prompt(LANG_PROMPT, "What language did you want?");
}
async confirmChoices(step) {
step.values.lang = step.result;
const luisResult = await this.luis.executeLuisQuery(step.context);
const message = `You want to see ${step.values.resources} in ${step.values.lang} Is this correct?`;
if (LuisRecognizer.topIntent(luisResult) != "Learning") {
step.context.sendActivity(
`Your query for ${step.values.lang} was not recognized by this bot, but will still be added to the search results`
);
}
return await step.prompt(CONFIRM_PROMPT, message);
}
async sendResults(step) {
let url = MS_Root;
let resource = step.values.resources;
let language = step.values.lang;
let sample = {
type: "Action.OpenUrl",
title: "MS Samples on " + language,
url: `${url + MS_SamplesSearchURL + language}`,
};
let docs = {
type: "Action.OpenUrl",
title: "MS Docs on " + language,
url: `${url + MS_DocsSearchURL + language}`,
};
let cardSchema = {
$schema: "http://adaptivecards.io/schemas/adaptive-card.json",
type: "AdaptiveCard",
version: "1.0",
body: [
{
type: "TextBlock",
text: "Here's your links!",
},
],
actions: [],
};
if (resource == "Docs") cardSchema.actions.push(docs);
else if (resource == "Samples") cardSchema.actions.push(sample);
else {
cardSchema.actions.push(docs);
cardSchema.actions.push(sample);
}
const card = CardFactory.adaptiveCard(cardSchema);
const message = MessageFactory.attachment(card);
await step.context.sendActivity(message);
return await step.endDialog();
}
async run(turnContext, accessor) {
const dialogSet = new DialogSet(accessor);
dialogSet.add(this);
const dialogContext = await dialogSet.createContext(turnContext);
const results = await dialogContext.continueDialog();
if (results.status === DialogTurnStatus.empty) {
await dialogContext.beginDialog(this.id);
}
}
}
module.exports.ContentDialog = ContentDialog;