parent
db48cc6072
commit
f5ff014b9d
|
@ -3,7 +3,7 @@ status.command({
|
||||||
description: "Send location",
|
description: "Send location",
|
||||||
color: "#9a5dcf",
|
color: "#9a5dcf",
|
||||||
preview: function (params) {
|
preview: function (params) {
|
||||||
var text = status.components.text(
|
var text = status.components.text(
|
||||||
{
|
{
|
||||||
style: {
|
style: {
|
||||||
marginTop: 5,
|
marginTop: 5,
|
||||||
|
@ -138,6 +138,12 @@ status.response({
|
||||||
name: "phone",
|
name: "phone",
|
||||||
description: "Send phone number",
|
description: "Send phone number",
|
||||||
color: "#5fc48d",
|
color: "#5fc48d",
|
||||||
|
validator: function (params) {
|
||||||
|
return {
|
||||||
|
validationHandler: "phone",
|
||||||
|
parameters: [params.value]
|
||||||
|
};
|
||||||
|
},
|
||||||
params: [{
|
params: [{
|
||||||
name: "phone",
|
name: "phone",
|
||||||
type: status.types.PHONE,
|
type: status.types.PHONE,
|
||||||
|
@ -156,6 +162,16 @@ status.command({
|
||||||
name: "help",
|
name: "help",
|
||||||
description: "Help",
|
description: "Help",
|
||||||
color: "#7099e6",
|
color: "#7099e6",
|
||||||
|
/* Validator example
|
||||||
|
validator: function (params) {
|
||||||
|
if (params.value != "3") {
|
||||||
|
var error = status.components.view(
|
||||||
|
{backgroundColor: "red"},
|
||||||
|
[status.components.text({}, "ooops :(")]
|
||||||
|
);
|
||||||
|
return {errors: [error]}
|
||||||
|
}
|
||||||
|
},*/
|
||||||
params: [{
|
params: [{
|
||||||
name: "query",
|
name: "query",
|
||||||
type: status.types.TEXT
|
type: status.types.TEXT
|
||||||
|
|
|
@ -22,6 +22,7 @@ Command.prototype.create = function (com) {
|
||||||
this.name = com.name;
|
this.name = com.name;
|
||||||
this.description = com.description;
|
this.description = com.description;
|
||||||
this.handler = com.handler;
|
this.handler = com.handler;
|
||||||
|
this.validator = com.validator;
|
||||||
this.color = com.color;
|
this.color = com.color;
|
||||||
this.icon = com.icon;
|
this.icon = com.icon;
|
||||||
this.params = com.params || [];
|
this.params = com.params || [];
|
||||||
|
@ -83,13 +84,13 @@ function scrollView(options, elements) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var status = {
|
var status = {
|
||||||
command: function (n, d, h) {
|
command: function (h) {
|
||||||
var command = new Command();
|
var command = new Command();
|
||||||
return command.create(n, d, h);
|
return command.create(h);
|
||||||
},
|
},
|
||||||
response: function (n, d, h) {
|
response: function (h) {
|
||||||
var response = new Response();
|
var response = new Response();
|
||||||
return response.create(n, d, h);
|
return response.create(h);
|
||||||
},
|
},
|
||||||
types: {
|
types: {
|
||||||
TEXT: 'text',
|
TEXT: 'text',
|
||||||
|
|
|
@ -54,11 +54,11 @@
|
||||||
"keyboardDidShow"
|
"keyboardDidShow"
|
||||||
(fn [e]
|
(fn [e]
|
||||||
(let [h (.. e -endCoordinates -height)]
|
(let [h (.. e -endCoordinates -height)]
|
||||||
(when-not (= h keyboard-height)
|
(when-not (= h @keyboard-height)
|
||||||
(dispatch [:set :keyboard-height h])))))
|
(dispatch [:set :keyboard-height h])))))
|
||||||
(.addListener device-event-emitter
|
(.addListener device-event-emitter
|
||||||
"keyboardDidHide"
|
"keyboardDidHide"
|
||||||
(when-not (= 0 keyboard-height)
|
(when-not (= 0 @keyboard-height)
|
||||||
#(dispatch [:set :keyboard-height 0]))))
|
#(dispatch [:set :keyboard-height 0]))))
|
||||||
:render
|
:render
|
||||||
(fn []
|
(fn []
|
||||||
|
|
|
@ -21,10 +21,10 @@
|
||||||
[status-im.utils.phone-number :refer [format-phone-number]]
|
[status-im.utils.phone-number :refer [format-phone-number]]
|
||||||
[status-im.utils.datetime :as time]
|
[status-im.utils.datetime :as time]
|
||||||
[status-im.components.react :refer [geth]]
|
[status-im.components.react :refer [geth]]
|
||||||
[status-im.utils.logging :as log]
|
|
||||||
[status-im.components.jail :as j]
|
[status-im.components.jail :as j]
|
||||||
[status-im.utils.types :refer [json->clj]]
|
[status-im.utils.types :refer [json->clj]]
|
||||||
[status-im.commands.utils :refer [generate-hiccup]]))
|
[status-im.commands.utils :refer [generate-hiccup]]
|
||||||
|
status-im.chat.handlers.commands))
|
||||||
|
|
||||||
(register-handler :set-show-actions
|
(register-handler :set-show-actions
|
||||||
(fn [db [_ show-actions]]
|
(fn [db [_ show-actions]]
|
||||||
|
@ -53,81 +53,15 @@
|
||||||
(assoc-in [:chats current-chat-id :command-input] {})
|
(assoc-in [:chats current-chat-id :command-input] {})
|
||||||
(update-in [:chats current-chat-id :input-text] safe-trim))))
|
(update-in [:chats current-chat-id :input-text] safe-trim))))
|
||||||
|
|
||||||
(defn invoke-suggestions-handler!
|
|
||||||
[{:keys [current-chat-id canceled-command] :as db} _]
|
|
||||||
(when-not canceled-command
|
|
||||||
(let [{:keys [command content]} (get-in db [:chats current-chat-id :command-input])
|
|
||||||
{:keys [name type]} command
|
|
||||||
path [(if (= :command type) :commands :responses)
|
|
||||||
name
|
|
||||||
:params
|
|
||||||
0
|
|
||||||
:suggestions]
|
|
||||||
params {:value content}]
|
|
||||||
(j/call current-chat-id
|
|
||||||
path
|
|
||||||
params
|
|
||||||
#(dispatch [:suggestions-handler {:command command
|
|
||||||
:content content
|
|
||||||
:chat-id current-chat-id} %])))))
|
|
||||||
|
|
||||||
(register-handler :start-cancel-command
|
(register-handler :start-cancel-command
|
||||||
(u/side-effect!
|
(u/side-effect!
|
||||||
(fn [db _]
|
(fn [db _]
|
||||||
(dispatch [:animate-cancel-command]))))
|
(dispatch [:animate-cancel-command]))))
|
||||||
|
|
||||||
(def command-prefix "c ")
|
|
||||||
|
|
||||||
(defn cancel-command!
|
|
||||||
[{:keys [canceled-command]}]
|
|
||||||
(when canceled-command
|
|
||||||
(dispatch [:start-cancel-command])))
|
|
||||||
|
|
||||||
(register-handler :set-chat-command-content
|
|
||||||
[(after invoke-suggestions-handler!)
|
|
||||||
(after cancel-command!)]
|
|
||||||
(fn [{:keys [current-chat-id] :as db} [_ content]]
|
|
||||||
(let [starts-as-command? (str/starts-with? content command-prefix)
|
|
||||||
path [:chats current-chat-id :command-input :command :type]
|
|
||||||
command? (= :command (get-in db path))]
|
|
||||||
(as-> db db
|
|
||||||
(commands/set-chat-command-content db content)
|
|
||||||
(assoc-in db [:chats current-chat-id :input-text] nil)
|
|
||||||
(assoc db :canceled-command (and command? (not starts-as-command?)))))))
|
|
||||||
|
|
||||||
(defn update-input-text
|
(defn update-input-text
|
||||||
[{:keys [current-chat-id] :as db} text]
|
[{:keys [current-chat-id] :as db} text]
|
||||||
(assoc-in db [:chats current-chat-id :input-text] text))
|
(assoc-in db [:chats current-chat-id :input-text] text))
|
||||||
|
|
||||||
(defn invoke-command-preview!
|
|
||||||
[{:keys [current-chat-id staged-command]} _]
|
|
||||||
(let [{:keys [command content]} staged-command
|
|
||||||
{:keys [name type]} command
|
|
||||||
path [(if (= :command type) :commands :responses)
|
|
||||||
name
|
|
||||||
:preview]
|
|
||||||
params {:value content}]
|
|
||||||
(j/call current-chat-id
|
|
||||||
path
|
|
||||||
params
|
|
||||||
#(dispatch [:command-preview current-chat-id %]))))
|
|
||||||
|
|
||||||
(register-handler :stage-command
|
|
||||||
(after invoke-command-preview!)
|
|
||||||
(fn [{:keys [current-chat-id] :as db} _]
|
|
||||||
(let [db (update-input-text db nil)
|
|
||||||
{:keys [command content to-msg-id]}
|
|
||||||
(get-in db [:chats current-chat-id :command-input])
|
|
||||||
content' (if (= :command (:type command))
|
|
||||||
(subs content 2)
|
|
||||||
content)
|
|
||||||
command-info {:command command
|
|
||||||
:content content'
|
|
||||||
:to-message to-msg-id}]
|
|
||||||
(-> db
|
|
||||||
(commands/stage-command command-info)
|
|
||||||
(assoc :staged-command command-info)))))
|
|
||||||
|
|
||||||
(register-handler :set-message-input []
|
(register-handler :set-message-input []
|
||||||
(fn [db [_ input]]
|
(fn [db [_ input]]
|
||||||
(assoc db :message-input input)))
|
(assoc db :message-input input)))
|
||||||
|
@ -138,15 +72,6 @@
|
||||||
(when-let [message-input (:message-input db)]
|
(when-let [message-input (:message-input db)]
|
||||||
(.blur message-input)))))
|
(.blur message-input)))))
|
||||||
|
|
||||||
(register-handler :set-response-chat-command
|
|
||||||
[(after invoke-suggestions-handler!)
|
|
||||||
(after #(dispatch [:command-edit-mode]))
|
|
||||||
(after #(dispatch [:set-chat-input-text ""]))]
|
|
||||||
(fn [db [_ to-msg-id command-key]]
|
|
||||||
(-> db
|
|
||||||
(commands/set-response-chat-command to-msg-id command-key)
|
|
||||||
(assoc :canceled-command false))))
|
|
||||||
|
|
||||||
(defn update-text
|
(defn update-text
|
||||||
[{:keys [current-chat-id] :as db} [_ text]]
|
[{:keys [current-chat-id] :as db} [_ text]]
|
||||||
(let [suggestions (get-in db [:command-suggestions current-chat-id])]
|
(let [suggestions (get-in db [:command-suggestions current-chat-id])]
|
||||||
|
@ -322,13 +247,6 @@
|
||||||
params
|
params
|
||||||
#(dispatch [:command-handler! com %])))))
|
#(dispatch [:command-handler! com %])))))
|
||||||
|
|
||||||
(defn handle-commands
|
|
||||||
[{:keys [new-commands]}]
|
|
||||||
(doseq [{{content :content} :content
|
|
||||||
handler :handler} new-commands]
|
|
||||||
(when handler
|
|
||||||
(handler content))))
|
|
||||||
|
|
||||||
(register-handler :send-chat-msg
|
(register-handler :send-chat-msg
|
||||||
(-> prepare-message
|
(-> prepare-message
|
||||||
((enrich prepare-staged-commans))
|
((enrich prepare-staged-commans))
|
||||||
|
@ -341,21 +259,7 @@
|
||||||
((after save-commands-to-realm!))
|
((after save-commands-to-realm!))
|
||||||
((after dispatch-responded-requests!))
|
((after dispatch-responded-requests!))
|
||||||
;; todo maybe it is better to track if it was handled or not
|
;; todo maybe it is better to track if it was handled or not
|
||||||
((after invoke-commands-handlers!))
|
((after invoke-commands-handlers!))))
|
||||||
((after handle-commands))))
|
|
||||||
|
|
||||||
(register-handler :unstage-command
|
|
||||||
(fn [db [_ staged-command]]
|
|
||||||
(commands/unstage-command db staged-command)))
|
|
||||||
|
|
||||||
(register-handler :set-chat-command
|
|
||||||
[(after invoke-suggestions-handler!)
|
|
||||||
(after #(dispatch [:command-edit-mode]))]
|
|
||||||
(fn [{:keys [current-chat-id] :as db} [_ command-key]]
|
|
||||||
(-> db
|
|
||||||
(commands/set-chat-command command-key)
|
|
||||||
(assoc-in [:chats current-chat-id :command-input :content] "c ")
|
|
||||||
(assoc :disable-input true))))
|
|
||||||
|
|
||||||
(register-handler :init-console-chat
|
(register-handler :init-console-chat
|
||||||
(fn [db [_]]
|
(fn [db [_]]
|
||||||
|
@ -552,6 +456,7 @@
|
||||||
(assoc-in db [:edit-mode current-chat-id] mode)))
|
(assoc-in db [:edit-mode current-chat-id] mode)))
|
||||||
|
|
||||||
(register-handler :command-edit-mode
|
(register-handler :command-edit-mode
|
||||||
|
(after #(dispatch [:clear-validation-errors]))
|
||||||
(edit-mode-handler :command))
|
(edit-mode-handler :command))
|
||||||
|
|
||||||
(register-handler :text-edit-mode
|
(register-handler :text-edit-mode
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
input-height)))
|
input-height)))
|
||||||
|
|
||||||
(register-handler :animate-show-response
|
(register-handler :animate-show-response
|
||||||
[(after #(dispatch [:command-edit-mode]))]
|
;[(after #(dispatch [:command-edit-mode]))]
|
||||||
(fn [{:keys [current-chat-id] :as db}]
|
(fn [{:keys [current-chat-id] :as db}]
|
||||||
(let [suggestions? (seq (get-in db [:suggestions current-chat-id]))
|
(let [suggestions? (seq (get-in db [:suggestions current-chat-id]))
|
||||||
height (if suggestions?
|
height (if suggestions?
|
||||||
|
|
|
@ -0,0 +1,186 @@
|
||||||
|
(ns status-im.chat.handlers.commands
|
||||||
|
(:require [re-frame.core :refer [enrich after dispatch]]
|
||||||
|
[status-im.utils.handlers :refer [register-handler] :as u]
|
||||||
|
[status-im.components.jail :as j]
|
||||||
|
[status-im.models.commands :as commands]
|
||||||
|
[clojure.string :as str]
|
||||||
|
[status-im.commands.utils :as cu]
|
||||||
|
[status-im.utils.phone-number :as pn]))
|
||||||
|
|
||||||
|
(def command-prefix "c ")
|
||||||
|
|
||||||
|
(defn invoke-suggestions-handler!
|
||||||
|
[{:keys [current-chat-id canceled-command] :as db} _]
|
||||||
|
(when-not canceled-command
|
||||||
|
(let [{:keys [command content]} (get-in db [:chats current-chat-id :command-input])
|
||||||
|
{:keys [name type]} command
|
||||||
|
path [(if (= :command type) :commands :responses)
|
||||||
|
name
|
||||||
|
:params
|
||||||
|
0
|
||||||
|
:suggestions]
|
||||||
|
params {:value content}]
|
||||||
|
(j/call current-chat-id
|
||||||
|
path
|
||||||
|
params
|
||||||
|
#(dispatch [:suggestions-handler {:command command
|
||||||
|
:content content
|
||||||
|
:chat-id current-chat-id} %])))))
|
||||||
|
|
||||||
|
(defn cancel-command!
|
||||||
|
[{:keys [canceled-command]}]
|
||||||
|
(when canceled-command
|
||||||
|
(dispatch [:start-cancel-command])))
|
||||||
|
|
||||||
|
(register-handler :set-chat-command-content
|
||||||
|
[(after invoke-suggestions-handler!)
|
||||||
|
(after cancel-command!)
|
||||||
|
(after #(dispatch [:clear-validation-errors]))]
|
||||||
|
(fn [{:keys [current-chat-id] :as db} [_ content]]
|
||||||
|
(let [starts-as-command? (str/starts-with? content command-prefix)
|
||||||
|
path [:chats current-chat-id :command-input :command :type]
|
||||||
|
command? (= :command (get-in db path))]
|
||||||
|
(as-> db db
|
||||||
|
(commands/set-chat-command-content db content)
|
||||||
|
(assoc-in db [:chats current-chat-id :input-text] nil)
|
||||||
|
(assoc db :canceled-command (and command? (not starts-as-command?)))))))
|
||||||
|
|
||||||
|
(defn invoke-command-preview!
|
||||||
|
[{:keys [staged-command]} [_ chat-id]]
|
||||||
|
(let [{:keys [command content]} staged-command
|
||||||
|
{:keys [name type]} command
|
||||||
|
path [(if (= :command type) :commands :responses)
|
||||||
|
name
|
||||||
|
:preview]
|
||||||
|
params {:value content}]
|
||||||
|
(j/call chat-id
|
||||||
|
path
|
||||||
|
params
|
||||||
|
#(dispatch [:command-preview chat-id %]))))
|
||||||
|
|
||||||
|
(defn content-by-command
|
||||||
|
[{:keys [type]} content]
|
||||||
|
(if (= :command type)
|
||||||
|
(subs content 2)
|
||||||
|
content))
|
||||||
|
|
||||||
|
(defn command-input
|
||||||
|
([{:keys [current-chat-id] :as db}]
|
||||||
|
(command-input db current-chat-id))
|
||||||
|
([db chat-id]
|
||||||
|
(get-in db [:chats chat-id :command-input])))
|
||||||
|
|
||||||
|
|
||||||
|
(register-handler ::validate!
|
||||||
|
(u/side-effect!
|
||||||
|
(fn [_ [_ {:keys [chat-id]} {:keys [error result]}]]
|
||||||
|
;; todo handle error
|
||||||
|
(when-not error
|
||||||
|
(let [{:keys [errors validationHandler parameters]} result]
|
||||||
|
(cond errors
|
||||||
|
(dispatch [::add-validation-errors chat-id errors])
|
||||||
|
|
||||||
|
validationHandler
|
||||||
|
(dispatch [::validation-handler!
|
||||||
|
chat-id
|
||||||
|
validationHandler
|
||||||
|
parameters])
|
||||||
|
|
||||||
|
:else (dispatch [::finish-command-staging chat-id])))))))
|
||||||
|
|
||||||
|
(defn start-validate! [db]
|
||||||
|
(let [{:keys [content command chat-id] :as data} (::command db)
|
||||||
|
{:keys [name type]} command
|
||||||
|
path [(if (= :command type) :commands :responses)
|
||||||
|
name
|
||||||
|
:validator]
|
||||||
|
params {:value content}]
|
||||||
|
(j/call chat-id
|
||||||
|
path
|
||||||
|
params
|
||||||
|
#(dispatch [::validate! data %]))))
|
||||||
|
|
||||||
|
(register-handler :stage-command
|
||||||
|
(after start-validate!)
|
||||||
|
(fn [{:keys [current-chat-id] :as db}]
|
||||||
|
(let [{:keys [command content]} (command-input db)
|
||||||
|
content' (content-by-command command content)]
|
||||||
|
(-> db
|
||||||
|
(assoc ::command {:content content'
|
||||||
|
:command command
|
||||||
|
:chat-id current-chat-id})
|
||||||
|
(assoc-in [:disable-staging current-chat-id] true)))))
|
||||||
|
|
||||||
|
(register-handler ::finish-command-staging
|
||||||
|
[(after #(dispatch [:start-cancel-command]))
|
||||||
|
(after invoke-command-preview!)]
|
||||||
|
(fn [db [_ chat-id]]
|
||||||
|
(let [db (assoc-in db [:chats chat-id :input-text] nil)
|
||||||
|
{:keys [command content to-msg-id]} (command-input db)
|
||||||
|
content' (content-by-command command content)
|
||||||
|
command-info {:command command
|
||||||
|
:content content'
|
||||||
|
:to-message to-msg-id}]
|
||||||
|
(-> db
|
||||||
|
(commands/stage-command command-info)
|
||||||
|
(assoc :staged-command command-info)
|
||||||
|
(assoc-in [:disable-staging chat-id] true)))))
|
||||||
|
|
||||||
|
(register-handler :unstage-command
|
||||||
|
(fn [db [_ staged-command]]
|
||||||
|
(commands/unstage-command db staged-command)))
|
||||||
|
|
||||||
|
(defn set-chat-command
|
||||||
|
[{:keys [current-chat-id] :as db} [_ command-key]]
|
||||||
|
(-> db
|
||||||
|
(commands/set-chat-command command-key)
|
||||||
|
(assoc-in [:chats current-chat-id :command-input :content] command-prefix)
|
||||||
|
(assoc :disable-input true)))
|
||||||
|
|
||||||
|
(register-handler :set-chat-command
|
||||||
|
[(after invoke-suggestions-handler!)
|
||||||
|
(after #(dispatch [:command-edit-mode]))]
|
||||||
|
set-chat-command)
|
||||||
|
|
||||||
|
(defn set-response-command [db [_ to-msg-id command-key]]
|
||||||
|
(-> db
|
||||||
|
(commands/set-response-chat-command to-msg-id command-key)
|
||||||
|
(assoc :canceled-command false)))
|
||||||
|
|
||||||
|
(register-handler :set-response-chat-command
|
||||||
|
[(after invoke-suggestions-handler!)
|
||||||
|
(after #(dispatch [:command-edit-mode]))
|
||||||
|
(after #(dispatch [:set-chat-input-text ""]))]
|
||||||
|
set-response-command)
|
||||||
|
|
||||||
|
(register-handler ::add-validation-errors
|
||||||
|
(fn [db [_ chat-id errors]]
|
||||||
|
(assoc-in db [:custom-validation-errors chat-id]
|
||||||
|
(map cu/generate-hiccup errors))))
|
||||||
|
|
||||||
|
(register-handler :clear-validation-errors
|
||||||
|
(fn [db]
|
||||||
|
(dissoc db :validation-errors :custom-validation-errors)))
|
||||||
|
|
||||||
|
(def validation-handlers
|
||||||
|
{:phone (fn [chat-id [number]]
|
||||||
|
(if (pn/valid-mobile-number? number)
|
||||||
|
(dispatch [::finish-command-staging chat-id])
|
||||||
|
(dispatch [::set-validation-error
|
||||||
|
chat-id
|
||||||
|
{:title "Phobe number"
|
||||||
|
:description "Wrong phone number"}])))})
|
||||||
|
|
||||||
|
(defn validator [name]
|
||||||
|
(validation-handlers (keyword name)))
|
||||||
|
|
||||||
|
(register-handler ::validation-handler!
|
||||||
|
(u/side-effect!
|
||||||
|
(fn [_ [_ chat-id name params]]
|
||||||
|
(when-let [handler (validator name)]
|
||||||
|
(handler chat-id params)))))
|
||||||
|
|
||||||
|
|
||||||
|
(register-handler ::set-validation-error
|
||||||
|
(fn [db [_ chat-id error]]
|
||||||
|
(assoc-in db [:validation-errors chat-id] [error])))
|
|
@ -0,0 +1 @@
|
||||||
|
(ns status-im.chat.styles.command-validation)
|
|
@ -172,3 +172,13 @@
|
||||||
(fn [_ [_ message-id]]
|
(fn [_ [_ message-id]]
|
||||||
(let [requests (subscribe [:get-requests])]
|
(let [requests (subscribe [:get-requests])]
|
||||||
(reaction (not (some #(= message-id (:message-id %)) @requests))))))
|
(reaction (not (some #(= message-id (:message-id %)) @requests))))))
|
||||||
|
|
||||||
|
(register-sub :validation-errors
|
||||||
|
(fn [db]
|
||||||
|
(let [current-chat-id (subscribe [:get-current-chat-id])]
|
||||||
|
(reaction (get-in @db [:validation-errors @current-chat-id])))))
|
||||||
|
|
||||||
|
(register-sub :custom-validation-errors
|
||||||
|
(fn [db]
|
||||||
|
(let [current-chat-id (subscribe [:get-current-chat-id])]
|
||||||
|
(reaction (get-in @db [:custom-validation-errors @current-chat-id])))))
|
||||||
|
|
|
@ -15,8 +15,7 @@
|
||||||
(dispatch [:set-chat-command-content message]))
|
(dispatch [:set-chat-command-content message]))
|
||||||
|
|
||||||
(defn send-command []
|
(defn send-command []
|
||||||
(dispatch [:stage-command])
|
(dispatch [:stage-command]))
|
||||||
(cancel-command-input))
|
|
||||||
|
|
||||||
(defn valid? [message validator]
|
(defn valid? [message validator]
|
||||||
(if validator
|
(if validator
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
(ns status-im.chat.views.command-validation
|
||||||
|
(:require-macros [status-im.utils.views :refer [defview]])
|
||||||
|
(:require [status-im.components.react :as c]
|
||||||
|
[status-im.chat.styles.command-validation :as st]
|
||||||
|
[status-im.utils.listview :as lw]))
|
||||||
|
|
||||||
|
(defn error [{:keys [title description]}]
|
||||||
|
(c/list-item
|
||||||
|
[c/view
|
||||||
|
[c/text title]
|
||||||
|
[c/text description]]))
|
||||||
|
|
||||||
|
(defn errors-list [errors]
|
||||||
|
[c/list-view {:renderRow error
|
||||||
|
:keyboardShouldPersistTaps true
|
||||||
|
:dataSource (lw/to-datasource errors)}])
|
||||||
|
|
||||||
|
(defview errors []
|
||||||
|
[errors [:validation-errors]
|
||||||
|
custom-errors [:custom-validation-errors]
|
||||||
|
command? [:command?]]
|
||||||
|
(when (and command?
|
||||||
|
(or (seq errors)
|
||||||
|
(seq custom-errors)))
|
||||||
|
[c/scroll-view {:background-color :red}
|
||||||
|
(cond (seq custom-errors)
|
||||||
|
(vec (concat [c/view] custom-errors))
|
||||||
|
|
||||||
|
(seq errors)
|
||||||
|
[errors-list errors])]))
|
|
@ -2,6 +2,7 @@
|
||||||
(:require-macros [status-im.utils.views :refer [defview]])
|
(:require-macros [status-im.utils.views :refer [defview]])
|
||||||
(:require [re-frame.core :refer [subscribe]]
|
(:require [re-frame.core :refer [subscribe]]
|
||||||
[status-im.components.react :refer [view
|
[status-im.components.react :refer [view
|
||||||
|
text
|
||||||
animated-view
|
animated-view
|
||||||
icon
|
icon
|
||||||
touchable-highlight
|
touchable-highlight
|
||||||
|
@ -10,7 +11,8 @@
|
||||||
[status-im.chat.views.command :as command]
|
[status-im.chat.views.command :as command]
|
||||||
[status-im.chat.styles.message-input :as st]
|
[status-im.chat.styles.message-input :as st]
|
||||||
[status-im.chat.styles.plain-message :as st-message]
|
[status-im.chat.styles.plain-message :as st-message]
|
||||||
[status-im.chat.styles.response :as st-response]))
|
[status-im.chat.styles.response :as st-response]
|
||||||
|
[status-im.chat.views.command-validation :as cv]))
|
||||||
|
|
||||||
(defn send-button [{:keys [on-press accessibility-label]}]
|
(defn send-button [{:keys [on-press accessibility-label]}]
|
||||||
[touchable-highlight {:on-press on-press
|
[touchable-highlight {:on-press on-press
|
||||||
|
@ -48,20 +50,20 @@
|
||||||
input-options)
|
input-options)
|
||||||
(if command? input-command input-message)])
|
(if command? input-command input-message)])
|
||||||
|
|
||||||
(defview plain-message-input-view [{:keys [input-options validator]}]
|
(defview plain-message-input-view [{:keys [input-options]}]
|
||||||
[command? [:command?]
|
[command? [:command?]
|
||||||
{:keys [type] :as command} [:get-chat-command]
|
{:keys [type] :as command} [:get-chat-command]
|
||||||
input-command [:get-chat-command-content]
|
input-command [:get-chat-command-content]
|
||||||
valid-plain-message? [:valid-plain-message?]
|
valid-plain-message? [:valid-plain-message?]]
|
||||||
valid-command? [:valid-command? validator]]
|
|
||||||
[view st/input-container
|
[view st/input-container
|
||||||
|
[cv/errors]
|
||||||
[view st/input-view
|
[view st/input-view
|
||||||
[plain-message/commands-button]
|
[plain-message/commands-button]
|
||||||
[message-input-container
|
[message-input-container
|
||||||
[message-input input-options validator]]
|
[message-input input-options]]
|
||||||
;; TODO emoticons: not implemented
|
;; TODO emoticons: not implemented
|
||||||
[plain-message/smile-button]
|
[plain-message/smile-button]
|
||||||
(when (if command? valid-command? valid-plain-message?)
|
(when (or command? valid-plain-message?)
|
||||||
(let [on-press (if command?
|
(let [on-press (if command?
|
||||||
command/send-command
|
command/send-command
|
||||||
plain-message/send)]
|
plain-message/send)]
|
||||||
|
|
|
@ -18,8 +18,7 @@
|
||||||
|
|
||||||
(defn get-options [{:keys [type placeholder]} command-type]
|
(defn get-options [{:keys [type placeholder]} command-type]
|
||||||
(let [options (case (keyword type)
|
(let [options (case (keyword type)
|
||||||
:phone {:input-options {:keyboardType :phone-pad}
|
:phone {:input-options {:keyboardType :phone-pad}}
|
||||||
:validator valid-mobile-number?}
|
|
||||||
:password {:input-options {:secureTextEntry true}}
|
:password {:input-options {:secureTextEntry true}}
|
||||||
:number {:input-options {:keyboardType :numeric}}
|
:number {:input-options {:keyboardType :numeric}}
|
||||||
;; todo maybe nil is fine for now :)
|
;; todo maybe nil is fine for now :)
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
(ns status-im.models.commands
|
(ns status-im.models.commands
|
||||||
(:require [clojure.string :refer [join split]]
|
(:require [status-im.db :as db]))
|
||||||
[clojure.walk :refer [stringify-keys keywordize-keys]]
|
|
||||||
[re-frame.core :refer [subscribe dispatch]]
|
|
||||||
[status-im.db :as db]
|
|
||||||
[status-im.components.animation :as anim]
|
|
||||||
[status-im.components.styles :refer [color-blue color-dark-mint]]
|
|
||||||
[status-im.i18n :refer [label]]))
|
|
||||||
|
|
||||||
(defn get-commands [{:keys [current-chat-id] :as db}]
|
(defn get-commands [{:keys [current-chat-id] :as db}]
|
||||||
(or (get-in db [:chats current-chat-id :commands]) {}))
|
(or (get-in db [:chats current-chat-id :commands]) {}))
|
||||||
|
|
|
@ -11,4 +11,4 @@
|
||||||
(defn register-handler
|
(defn register-handler
|
||||||
([name handler] (register-handler name nil handler))
|
([name handler] (register-handler name nil handler))
|
||||||
([name middleware handler]
|
([name middleware handler]
|
||||||
(re-core/register-handler name [#_debug middleware] handler)))
|
(re-core/register-handler name [debug middleware] handler)))
|
||||||
|
|
Loading…
Reference in New Issue