Last active
January 2, 2017 02:36
-
-
Save kharmabum/684c09568f413662de235c99d050c8c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const commandRegExp = new RegExp('^([\\w]+)(\\s|$)') | |
const {fetch, Feature} = require('other') | |
const feature = new Feature({ | |
name: 'juanxa-wemo', | |
version: '0.0.0-beta.af', | |
dependencies: { | |
otherjs: '^3.2.x', | |
}, | |
}) | |
feature.isUserAgentRequired = true | |
feature.userAgent.on("SET_STAGED_MESSAGE", (event) => { | |
const {message, tag} = event | |
const match = commandRegExp.exec(message.text) | |
if (!match || match[1] != "wemo") { return } | |
feature.userAgent.emit("SET_CHAT_COMPLETE_RESULTS", {replyTag: tag, layout: "row", results: [{text: "⚡️"}]}) | |
}) | |
feature.userAgent.on("ACTIVATE_CHAT_COMPLETE_RESULT", (event) => { | |
const {action, message, result, tag} = event | |
feature.userAgent.emit("UPDATE_STAGED_MESSAGE", {replyTag: tag, message: {text: ""}}) | |
feature.userAgent.emit("SET_CHAT_COMPLETE_RESULTS", {replyTag: tag, layout: "row", results: []}) | |
fetch("https://maker.ifttt.com/trigger/wemo_1/with/key/bfHiq3MurvmHTv3dNVkZS2") | |
console.log("foo") | |
}) | |
module.exports = feature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment