This is a (currently experimental) suite of dialog prompts that uses Microsoft's recognizer text suite to recognize certain types of input during a dialog prompt. Microsoft's Bot Framework team has implemented a handful of prompts using recognizers from the recognizer text suite. This library is meant to fill the gaps.
Currently, this library and subsequent NPM are experimental. Please use at your own risk. Feel free to test, debug, and submit pull requests if you come across any issues.
You can install this library via NPM:
npm install @botbuildercommunity/dialog-prompts --save
The number with unit prompt allows you to prompt for four different unit types:
- Currency
- Temperature
- Age
- Dimension
dialogs.add(new NumberWithUnitPrompt('numberPrompt', NumberWithUnitPromptType.Currency);
It returns a NumberWithUnitResult
. You can see the interface below.
export interface NumberWithUnitResult
{
unit: string
, value: any
}
Number with type allows you to accept numbers from the follow type enum:
- Ordinal
- Percentage
dialogs.add(new NumberWithTypePrompt('numberPrompt', NumberWithTypePrompt.Ordinal);
The PhoneNumberPrompt
will extract a phone number from a message from the user.
The EmailPrompt
will extract an email address from a message from the user.
The InternetProtocolPrompt
will extract one of the following types based on which InternetProtocolPromptType
enum value is passed in:
- IPAddress
- URL
The SocialMediaPrompt
will extract one of the following types based on which SocialMediaPromptType
enum value is passed in:
- Mention
- Hashtag
The GUIDPrompt
will extract a GUID from a message from the user.
- Includes validation for specified required input fields
- Displays custom message if user replies via text and not card input
- Ensures input is only valid if it comes from the appropriate card (not one shown previous to prompt)
// Load an adaptive card
const cardJson = require('./adaptiveCard.json');
const card = CardFactory.adaptiveCard(cardJson);
// Configure settings - All optional
const promptSettings = {
card: card,
inputFailMessage: 'Please fill out the adaptive card',
requiredInputIds: [
'inputA',
'inputB',
],
missingRequiredInputsMessage: 'The following inputs are required',
attemptsBeforeCardRedsiplayed: 5,
promptId: 'myCustomId'
}
// Initialize the prompt
const adaptiveCardPrompt = new AdaptiveCardPrompt('adaptiveCardPrompt', null, promptSettings);
// Add the prompt to your dialogs
dialogSet.add(adaptiveCardPrompt);
// Call the prompt
return await stepContext.prompt('adaptiveCardPrompt');
// Use the result
const result = stepContext.result;
Card authors describe their content as a simple JSON object. That content can then be rendered natively inside a host application, automatically adapting to the look and feel of the host. For example, Contoso Bot can author an Adaptive Card through the Bot Framework, and when delivered to Cortana, it will look and feel like a Cortana card. When that same payload is sent to Microsoft Teams, it will look and feel like Microsoft Teams. As more host apps start to support Adaptive Cards, that same payload will automatically light up inside these applications, yet still feel entirely native to the app. Users win because everything feels familiar. Host apps win because they control the user experience. Card authors win because their content gets broader reach without any additional work.
The Bot Framework provides support for Adaptive Cards. See the following to learn more about Adaptive Cards.
In a TextPrompt
, the user response is returned in the Activity.Text
property, which only accepts strings. Because Adaptive Cards can contain multiple inputs, the user response is sent as a JSON object in Activity.Value
, like so:
const activity = {
[...]
"value": {
"inputA": "response A",
"inputB": "response B",
[...etc]
}
}
Because of this, it can be a little difficult to gather user input using an Adaptive Card within a dialog. The AdaptiveCardPrompt
allows you to do so easily and returns the JSON object user response in stepContext.result
.