status-mobile/resources/commands.js

138 lines
3.3 KiB
JavaScript
Raw Normal View History

status.command({
name: "location",
icon: "location",
description: "Send location",
color: "#a187d5",
2016-06-29 11:28:43 +00:00
preview: function (params) {
2016-07-07 16:09:16 +00:00
var text = status.components.text(
2016-06-29 11:28:43 +00:00
{
style: {
marginTop: 5,
marginHorizontal: 0,
fontSize: 14,
fontFamily: "font",
color: "black"
}
2016-10-21 14:42:08 +00:00
}, params.address);
2016-06-29 11:28:43 +00:00
var uri = "https://maps.googleapis.com/maps/api/staticmap?center="
2016-10-21 14:42:08 +00:00
+ params.address
2016-06-29 11:28:43 +00:00
+ "&size=100x100&maptype=roadmap&key=AIzaSyBNsj1qoQEYPb3IllmWMAscuXW0eeuYqAA&language=en"
+ "&markers=size:mid%7Ccolor:0xff0000%7Clabel:%7C"
2016-10-21 14:42:08 +00:00
+ params.address;
2016-06-29 11:28:43 +00:00
var image = status.components.image(
{
source: {uri: uri},
style: {
width: 100,
height: 100
}
}
);
return status.components.view({}, [text, image]);
}
}).param({
name: "address",
2016-06-27 15:38:44 +00:00
type: status.types.TEXT,
placeholder: "Address"
});
2016-09-21 09:42:59 +00:00
function browseSuggestions(params) {
2016-10-21 14:42:08 +00:00
if (params.url && params.url !== "undefined" && params.url != "") {
var url = params.url;
2016-07-18 07:38:24 +00:00
if (!/^[a-zA-Z-_]+:/.test(url)) {
url = 'http://' + url;
}
return {webViewUrl: url};
}
}
status.command({
name: "browse",
description: "browser",
color: "#ffa500",
fullscreen: true,
suggestionsTrigger: 'on-send',
params: [{
2016-10-21 14:42:08 +00:00
name: "url",
2016-09-21 09:42:59 +00:00
suggestions: browseSuggestions,
2016-07-18 07:38:24 +00:00
type: status.types.TEXT
}]
});
2016-06-30 16:00:44 +00:00
2016-10-11 14:24:52 +00:00
function validateBalance(params, context) {
if (!params.amount) {
2016-09-20 14:15:29 +00:00
return {
errors: [
status.components.validationMessage(
"Amount",
"Amount must be specified"
)
]
};
}
2016-06-30 16:00:44 +00:00
try {
2016-10-11 14:24:52 +00:00
var val = web3.toWei(params.amount, "ether");
2016-06-30 16:00:44 +00:00
} catch (err) {
return {
errors: [
status.components.validationMessage(
"Amount",
2016-10-11 14:24:52 +00:00
"Amount is not valid number"
2016-06-30 16:00:44 +00:00
)
]
};
}
2016-08-03 13:15:04 +00:00
2016-10-11 14:24:52 +00:00
var balance = web3.eth.getBalance(context.from);
2016-06-30 16:00:44 +00:00
if (bn(val).greaterThan(bn(balance))) {
return {
errors: [
status.components.validationMessage(
"Amount",
"Not enough ETH on balance ("
+ web3.fromWei(balance, "ether")
+ " ETH)"
)
]
};
}
}
2016-10-11 14:24:52 +00:00
function sendTransaction(params, context) {
2016-06-30 16:00:44 +00:00
var data = {
2016-10-11 14:24:52 +00:00
from: context.from,
to: context.to,
value: web3.toWei(params.amount, "ether")
2016-06-30 16:00:44 +00:00
};
2016-10-11 14:24:52 +00:00
try {
return web3.eth.sendTransaction(data);
} catch (err) {
return {error: err};
}
2016-06-30 16:00:44 +00:00
}
status.command({
name: "send",
icon: "money_white",
2016-06-30 16:00:44 +00:00
color: "#5fc48d",
description: "Send transaction",
params: [{
name: "amount",
type: status.types.NUMBER
}],
preview: function (params) {
return status.components.text(
{},
2016-10-11 14:24:52 +00:00
params.amount + " ETH"
2016-06-30 16:00:44 +00:00
);
},
handler: sendTransaction,
validator: validateBalance
});