35 lines
716 B
JavaScript
35 lines
716 B
JavaScript
/*
|
|
Named buttons which triggers bot commands.
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
id: 'namedButtons',
|
|
defaultConfig: {
|
|
buttons: {
|
|
// myButton: {
|
|
// label: '😄 My Button Name',
|
|
// command: '/myBotCommand'
|
|
// }
|
|
}
|
|
},
|
|
|
|
plugin(bot, pluginConfig) {
|
|
|
|
const buttons = pluginConfig.buttons || {};
|
|
|
|
bot.on('text', (msg, props) => {
|
|
const text = msg.text;
|
|
for (let buttonId in buttons) {
|
|
const button = buttons[buttonId];
|
|
if (button.label === text) {
|
|
return bot.event(button.command, msg, props);
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|