Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/botmasterai/botmaster-button
enrich - fulfill middleware to add <button /> that works across all bots, even those that don't implement quick replies
https://github.com/botmasterai/botmaster-button
Last synced: 4 days ago
JSON representation
enrich - fulfill middleware to add <button /> that works across all bots, even those that don't implement quick replies
- Host: GitHub
- URL: https://github.com/botmasterai/botmaster-button
- Owner: botmasterai
- License: mit
- Created: 2017-01-29T20:14:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-10T15:44:59.000Z (over 7 years ago)
- Last Synced: 2024-10-11T18:38:48.770Z (about 1 month ago)
- Language: JavaScript
- Size: 50.8 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/botmasterai/botmaster-button.svg?branch=master)](https://travis-ci.org/botmasterai/botmaster-button)
[![Coverage Status](https://coveralls.io/repos/github/botmasterai/botmaster-button/badge.svg?branch=master)](https://coveralls.io/github/botmasterai/botmaster-button?branch=master)# Botmaster Button
Battle-tested middleware for botmaster ).
Easy cross-platform quick-reply buttons, even on those where only plain text is supported.
Find the documentation at the main botmaster website:
## Quick start
```js
const Botmaster = require('botmaster');
const myBotmasterSettings = require('./my-botmaster-settings');
const {bootstrap} = require('botmaster-button');const botmaster = new Botmaster(myBotmasterSettings);
const actions = {
itsComplicated: {
controller: () => `
It's complicated because we want it to be that way.
It's complicated because life is complicated.
Mind your own business.
`
}
};
bootstrap(botmaster, {
actions,
sessionPath: 'context',
confirmText: 'I am sorry I got multiple matches, can you please confirm.',
mainHandler: (bot, update) => bot.reply(update, `Could you please tell me about your relationship status?
I'm in a relationship
I'm not in a relationship.
`)
});
```User sees in plain text channel:
1. I'm in a relationship
2. I'm not in a relationship
3. Its ComplicatedThey type "3." then they get:
1. It's complicated because we want it to be that way.
2. It's complicated because life is complicated.
3. Mind your own business.User sees in messenger:
TODO
## Introduction
This package demonstrates the sandwich pattern for botmaster where incoming messages are preprocessed before sending to the main NLU handler and outgoing messages are processed after the main NLU.
It provides:
- incoming middleware to enrich the session with matched buttons through fuzzy matching
- a handler that forwards the button to outgoing middleware if its an action or to the main handler if not
- outgoing middleware that uses either the standard quick reply format for channels that support it or by giving numbered text options and storing the payload in context.You can use one or all of these.
## More involved example with your own handler
```js
const R = require('ramda');
const Botmaster = require('botmaster');
const {EnrichIncomingWare} = require('botmaster-enrich');
const {fulfillOutgoingWare} = require('botmaster-fulfill');
const {ButtonAction, ButtonEnricher, ButtonHandler} = require('botmaster-button');
const myBotmasterSettings = require('./my-botmaster-settings');
const otherActions = require('my-other-actions');
const handler = require('my-handler');const botmaster = new Botmaster(myBotmasterSettings);
const buttonAction = ButtonAction({sessionPath: 'context'});
const actions = R.merge({button: buttonAction}, otherActions);
const buttonEnricher = ButtonEnricher({actions});botmaster.use('incoming', EnrichIncomingWare({buttonEnricher}));
botmaster.use('incoming', ButtonHandler({mainHandler: handler}));
botmaster.use('outgoing', fulfillOutgoingWare({actions}))
```# Overview
These buttons work by default through the standard quick-reply functionality where available in a bot class. (Such as in Facebook messenger)
If however the quick reply functionality is not available and you supply `sessionPath` in the `ButtonAction` options then the payload is stored through session storage and the user is expected to enter a keyword in the title which will generate the resulting payload.
Buttons can contain actions which will be evaluated before your update handlers if you pass an `actions` property to `ButtonEnricher` of actions that can performed on user input.
The title if not provided will default to the position that the button appears in the text followed by the payload.
## API
### Button tag
| Parameter | Description |
| ----------------- | ------------------------------------------------------------------------------------------------------------------- |
| inner tag content | The payload of the button. This is the input that botmaster will receive when the user clicks or signals the button |
| image | url to an image for platforms that support images |
| title | the text that the user sees as the button |### Button context
#### session
| Path | Description |
| --------------- | ------------------------------------------------------------------------------------------------------------------------ |
| button.multiple | if true there are multiple button matches for the user's input |
| button.matches | when there are multiple matches they are placed here. Each entry is a button object |
| button | when there are not multiple matches button is a single button object. |
| buttonPayloads | incoming buttons, these are removed after the button enricher is processed. Each entry follows the button object pattern |#### button object
| Property | Description |
| -------- | ------------------------------------------------------- |
| payload | the text to pass to the update handler |
| title | the text the user saw - the text to fuzzy match against |
| image | the url for an image for the button |### Botmaster Ware
#### bootstrap
For the truly lazy aka yours truly, a function that sets up button middleware and handler
**Parameters**
- `botmaster` **Object** an instantiated botmaster object
- `options` **[Object]**
- `options.actions` **[Object]** actions that can be invoked through buttons
- `options.sessionPath` **[String]** dot denoted path of where to get session/context in updates
- `options.confirmText` **[String]** what to say when we get multiple matches for a button#### ButtonAction
Button fulfill action factory function
**Parameters**
- `options` **OBject**
- `options.sessionPath` **String** dot denoated path to prop where context is stored
- `options.actions` **Object** actions that can be processedReturns **Object** action spec for
#### ButtonEnricher
A botmaster-enrich session/context enricher. If user inputs fuzzy matches the title of a button the matched button is placed in 'button' in session/context. Multiple matches are stored in 'button.matches' and 'button.multiple' is set to true
Returns **Object** enricher spec
#### ButtonHandler
A botmaster update handler that passes through to main handler if there is no match at all or the match is not an action. If there are multiple possible matches to the button then it asks for confirmation.
**Parameters**
- `options` **Object** the options for generated middleware
- `options.mainHandler` **Function** the main handler to pass through to if there is no button matched
- `options.sessionPath` **String** dot denoted patch to session object where the 'button' property that stores button context is located. Defaults to 'session'.
- `options.confirmText` **String** the text to use to confirm when there multiple matchesReturns **Function** a botmaster update handler
#### ButtonIncomingWare
A botmaster incoming ware factory function that sets up button enricher
**Parameters**
- `options` **[Object]** options for the produced middleware
- `options.sessionPath` **[String]** dot denoted path to session in update defaults to "session"
- `options.enrichers` **[Object]** other enrichers to also evaluateReturns **Function** botmaster incoming ware that evaluates buttons
#### ButtonOutgoingWare
Botmaster Button outgoing ware factory function
**Parameters**
- `options` **[Object]**
- `options.sessionPath` **[String]** dot denoted path to prop where context is stored
- `options.actions` **[Object]** actions that can be processedReturns **Function** botmaster middleware for button
#### buttons
Action spec for buttons
```html
Option 1, Option 2
```**Parameters**
- `$0`
- `$0.content`