forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.js
160 lines (145 loc) · 6.07 KB
/
settings.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
var util = require('util');
var builder = require('botbuilder');
var validators = require('../validators');
var utils = require('../utils');
var addressLibrary = require('./address');
var SettingChoice = {
Email: 'edit_email',
Phone: 'edit_phone',
Addresses: 'edit_addresses',
Cancel: 'cancel'
};
var lib = new builder.Library('settings');
lib.dialog('/', [
// Display options
function (session) {
builder.Prompts.choice(session, 'settings_intro', [
session.gettext(SettingChoice.Email),
session.gettext(SettingChoice.Phone),
session.gettext(SettingChoice.Addresses),
session.gettext(SettingChoice.Cancel)
]);
},
// Trigger option edit
function (session, args, next) {
args = args || {};
var response = args.response || {};
var option = response.entity;
var promptMessage;
switch (option) {
case session.gettext(SettingChoice.Email):
promptMessage = 'type_email_or_return';
if (session.userData.sender && session.userData.sender.email) {
promptMessage = session.gettext('your_current_email', session.userData.sender.email);
}
session.send(promptMessage);
return session.beginDialog('email');
case session.gettext(SettingChoice.Phone):
promptMessage = 'type_phone_or_return';
if (session.userData.sender && session.userData.sender.phoneNumber) {
promptMessage = session.gettext('your_current_phone', session.userData.sender.phoneNumber);
}
session.send(promptMessage);
return session.beginDialog('phone');
case session.gettext(SettingChoice.Addresses):
return session.beginDialog('addresses');
case session.gettext(SettingChoice.Cancel):
return session.endDialog();
}
},
// Setting updated/cancelled
function (session, args) {
args = args || {};
var text = args.updated ? 'setting_updated' : 'setting_not_updated';
session.send(text);
session.replaceDialog('/');
}
]).reloadAction('restart', null, { matches: /^back|b/i }); // restart menu options when 'B' or 'Back' is received
// Email edit
lib.dialog('email', editOptionDialog(
function (input) { return validators.EmailRegex.test(input); },
'invalid_email_address',
function (session, email) { saveSenderSetting(session, 'email', email); }));
// Phone Number edit
lib.dialog('phone', editOptionDialog(
function (input) { return validators.PhoneRegex.test(input); },
'invalid_phone_number',
function (session, phone) { saveSenderSetting(session, 'phoneNumber', phone); }));
// Addresses
var UseSavedInfoChoices = addressLibrary.UseSavedInfoChoices;
lib.dialog('addresses', [
function (session, args, next) {
// Check if an option was selected
var selection = session.message.text;
if (selection.toLowerCase() === session.gettext(UseSavedInfoChoices.Home).toLowerCase() ||
selection.toLowerCase() === session.gettext(UseSavedInfoChoices.Work).toLowerCase()) {
session.dialogData.selection = selection;
return next();
}
// Show saved addresses
session.send('choose_address_to_update');
var saved = session.userData.billingAddresses = session.userData.billingAddresses || {};
var message = new builder.Message(session)
.attachmentLayout(builder.AttachmentLayout.carousel);
var homeAddress = saved[session.gettext(UseSavedInfoChoices.Home)];
var workAddress = saved[session.gettext(UseSavedInfoChoices.Work)];
var notSet = session.gettext('not_set');
message.addAttachment(createAddressCard(session, session.gettext(UseSavedInfoChoices.Home), homeAddress || notSet));
message.addAttachment(createAddressCard(session, session.gettext(UseSavedInfoChoices.Work), workAddress || notSet));
message.addAttachment(new builder.HeroCard(session)
.title('not_this_time')
.subtitle('do_not_change_addresses')
.buttons([
builder.CardAction.imBack(session, session.gettext('back'), session.gettext('back_label'))
]));
session.send(message);
},
function (session, args, next) {
// Trigger address request dialog
session.beginDialog('address:/', {
promptMessage: session.gettext('specify_new_address', session.dialogData.selection)
});
},
function (session, args, next) {
// Save new address
var selection = session.dialogData.selection;
var newAddress = args.address;
session.userData.billingAddresses = session.userData.billingAddresses || {};
session.userData.billingAddresses[selection] = newAddress;
session.endDialogWithResult({ updated: true });
}
]);
function saveSenderSetting(session, name, value) {
session.userData.sender = session.userData.sender || {};
session.userData.sender[name] = value;
}
function editOptionDialog(validationFunc, invalidMessage, saveFunc) {
return new builder.SimpleDialog(function (session, args, next) {
// check dialog was just forwarded
if (!session.dialogData.loop) {
session.dialogData.loop = true;
session.sendBatch();
return;
}
if (!validationFunc(session.message.text)) {
// invalid
session.send(invalidMessage);
} else {
// save
saveFunc(session, session.message.text);
session.endDialogWithResult({ updated: true });
}
});
}
function createAddressCard(session, buttonTitle, address) {
return new builder.HeroCard(session)
.title(buttonTitle)
.subtitle(address)
.buttons([
builder.CardAction.imBack(session, buttonTitle, buttonTitle)
]);
}
// Export createLibrary() function
module.exports.createLibrary = function () {
return lib.clone();
};