status-react/bots/demo_bot/bot.js

109 lines
3.3 KiB
JavaScript
Raw Normal View History

function round(n) {
return Math.round(n * 100) / 100;
}
function doubledValueLabel(params) {
var value = round(params.value);
return "sliderValue = " + value +
"; (2 * sliderValue) = " + (2 * value);
}
status.defineSubscription(
// the name of subscription and the name of the value in bot-db
// associated with this subscription
"doubledValue",
// the map of values on which subscription depends: keys are arbitrary names
// and values are db paths to another value
{value: ["sliderValue"]},
// the function which will be called as reaction on changes of values above,
// should be pure. Returned result will be associated with subscription in bot-db
doubledValueLabel
);
status.defineSubscription(
"roundedValue",
{value: ["sliderValue"]},
function (params) {
return round(params.value);
}
2017-03-23 16:52:38 +00:00
);
function superSuggestion(params, context) {
var balance = parseFloat(web3.fromWei(web3.eth.getBalance(context.from), "ether"));
var defaultSliderValue = balance / 2;
var view = ["view", {},
["text", {}, "Balance " + balance + " ETH"],
["text", {}, ["subscribe", ["doubledValue"]]],
["slider", {
maximumValue: ["subscribe", ["balance"]],
value: defaultSliderValue,
minimumValue: 0,
onSlidingComplete: ["dispatch", ["set", "sliderValue"]],
step: 0.05
}],
['touchable',
{onPress: ['dispatch', ["set-value-from-db", "roundedValue"]]},
["view", {}, ["text", {}, "Set value"]]
],
["text", {style: {color: "red"}}, ["subscribe", ["validationText"]]]
];
status.setDefaultDb({
sliderValue: defaultSliderValue,
doubledValue: doubledValueLabel({value: defaultSliderValue})
});
var validationText = "";
if (typeof params !== 'undefined') {
if (isNaN(params.message)) {
validationText = "That's not a float number!";
} else if (parseFloat(params.message) > balance) {
validationText =
"Input value is too big!" +
" You have only " + balance + " ETH on your balance!";
}
}
status.updateDb({
balance: balance,
validationText: validationText
});
2017-03-23 16:52:38 +00:00
return {markup: view};
};
2017-03-23 16:52:38 +00:00
status.addListener("on-message-input-change", superSuggestion);
status.addListener("init", superSuggestion);
2017-03-23 16:52:38 +00:00
status.addListener("on-message-send", function (params, context) {
2017-06-05 10:50:34 +00:00
cnt = localStorage.getItem("cnt");
if(!cnt) {
cnt = 0;
}
2017-05-27 18:14:01 +00:00
cnt++;
2017-06-05 10:50:34 +00:00
localStorage.setItem("cnt", cnt);
if (isNaN(params.message)) {
2017-06-05 10:50:34 +00:00
2017-05-27 18:14:01 +00:00
return {"text-message": "Seems that you don't want to send money :(. cnt = " + cnt};
}
var balance = web3.eth.getBalance(context.from);
var value = parseFloat(params.message);
var weiValue = web3.toWei(value, "ether");
if (bn(weiValue).greaterThan(bn(balance))) {
2017-04-27 17:42:00 +00:00
return {"text-message": "No way man, you don't have enough money! :)"};
}
try {
web3.eth.sendTransaction({
from: context.from,
to: context.from,
value: weiValue
});
2017-04-27 17:42:00 +00:00
return {"text-message": "You are the hero, you sent " + value + " ETH to yourself!"};
} catch (err) {
2017-04-27 17:42:00 +00:00
return {"text-message": "Something went wrong :("};
}
});