This commit is contained in:
Roman Volosovskyi 2016-11-10 10:33:44 +02:00
parent f63d2f8520
commit 48dc1b6e19
5 changed files with 17 additions and 9 deletions

View File

@ -1,7 +1,8 @@
status.command({
name: "location",
icon: "location",
description: "Send location",
title: "Location",
description: "Share your location",
color: "#a187d5",
preview: function (params) {
var text = status.components.text(
@ -52,7 +53,8 @@ function browseSuggestions(params) {
status.command({
name: "browse",
description: "browser",
title: "Browser",
description: "Launch the browser",
color: "#ffa500",
fullscreen: true,
suggestionsTrigger: 'on-send',
@ -121,7 +123,8 @@ var send = {
name: "send",
icon: "money_white",
color: "#5fc48d",
description: "Send transaction",
title: "Send ETH",
description: "Send a payment",
params: [{
name: "amount",
type: status.types.NUMBER
@ -141,8 +144,9 @@ status.response(send);
status.command({
name: "request",
title: "Request ETH",
color: "#7099e6",
description: "Transaction request",
description: "Request a payment",
params: [{
name: "amount",
type: status.types.NUMBER

View File

@ -100,7 +100,8 @@ function phoneSuggestions(params) {
var phoneConfig = {
name: "phone",
icon: "phone_white",
description: "Send phone number",
title: "Send Phone Number",
description: "Find friends using your number",
color: "#5bb2a2",
params: [{
name: "phone",
@ -115,7 +116,8 @@ status.command(phoneConfig);
status.command({
name: "help",
description: "Help",
title: "Help",
description: "Request help from Console",
color: "#7099e6",
params: [{
name: "query",

View File

@ -22,6 +22,7 @@ Command.prototype.param = function (parameter) {
Command.prototype.create = function (com) {
this.name = com.name;
this.title = com.title;
this.description = com.description;
this.handler = com.handler;
this["has-handler"] = com.handler != null;

View File

@ -13,7 +13,8 @@ function wallet(params) {
status.command({
name: "browse",
description: "Browse wallet",
title: "Browser",
description: "Launch the browser",
color: "#ffa500",
fullscreen: true,
suggestionsTrigger: 'on-send',

View File

@ -41,7 +41,7 @@
"By console, today at 14:50"]]]])
(defn suggestion-list-item
[[command {:keys [description]
[[command {:keys [title description]
name :name
:as suggestion}]]
(let [label (str "!" name)]
@ -51,7 +51,7 @@
[view st/suggestion-container
[view st/suggestion-sub-container
[view st/command-description-container
[text {:style st/value-text} label]
[text {:style st/value-text} title]
[text {:style st/description-text} description]]
[view st/command-label-container
[view (st/suggestion-background suggestion)