Rename effects to :effects.*/* and move them to separate namespaces (#18047)
This commit is contained in:
parent
f695dbf115
commit
439fdfa12c
|
@ -32,6 +32,7 @@
|
||||||
"letsubs" :binding
|
"letsubs" :binding
|
||||||
"with-let" "let"
|
"with-let" "let"
|
||||||
"reg-event-fx" :arg1-pair
|
"reg-event-fx" :arg1-pair
|
||||||
|
"reg-fx" :arg1-pair
|
||||||
"testing" :arg1-body
|
"testing" :arg1-body
|
||||||
"deftest-sub" :arg1-body
|
"deftest-sub" :arg1-body
|
||||||
"wait-for" :arg1-body
|
"wait-for" :arg1-body
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
(cond
|
(cond
|
||||||
(= :chat view-id)
|
(= :chat view-id)
|
||||||
{:async-storage-set {:chat-id (get-in cofx [:db :current-chat-id])
|
{:effects.async-storage/set {:chat-id (get-in cofx [:db :current-chat-id])
|
||||||
:key-uid (get-in cofx [:db :profile/profile :key-uid])}
|
:key-uid (get-in cofx [:db :profile/profile :key-uid])}
|
||||||
:db (assoc db :screens/was-focused-once? true)}
|
:db (assoc db :screens/was-focused-once? true)}
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@
|
||||||
:login pin
|
:login pin
|
||||||
:confirmation []
|
:confirmation []
|
||||||
:error-label nil})
|
:error-label nil})
|
||||||
:utils/show-popup {:title ""
|
:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/pin-changed)}}
|
:content (i18n/label :t/pin-changed)}}
|
||||||
(common/hide-connection-sheet)
|
(common/hide-connection-sheet)
|
||||||
(if puk-restore?
|
(if puk-restore?
|
||||||
|
@ -166,7 +166,7 @@
|
||||||
:puk-original []
|
:puk-original []
|
||||||
:puk-confirmation []
|
:puk-confirmation []
|
||||||
:error-label nil})
|
:error-label nil})
|
||||||
:utils/show-popup {:title ""
|
:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/puk-changed)}}
|
:content (i18n/label :t/puk-changed)}}
|
||||||
(common/hide-connection-sheet)
|
(common/hide-connection-sheet)
|
||||||
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
{:status nil
|
{:status nil
|
||||||
:pairing-code nil
|
:pairing-code nil
|
||||||
:error-label nil})
|
:error-label nil})
|
||||||
:utils/show-popup {:title ""
|
:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/pairing-changed)}}
|
:content (i18n/label :t/pairing-changed)}}
|
||||||
(common/hide-connection-sheet)
|
(common/hide-connection-sheet)
|
||||||
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
||||||
|
|
|
@ -293,13 +293,13 @@
|
||||||
(rf/defn show-wrong-keycard-alert
|
(rf/defn show-wrong-keycard-alert
|
||||||
[_]
|
[_]
|
||||||
(log/debug "show-wrong-keycard-alert")
|
(log/debug "show-wrong-keycard-alert")
|
||||||
{:utils/show-popup {:title (i18n/label :t/wrong-card)
|
{:effects.utils/show-popup {:title (i18n/label :t/wrong-card)
|
||||||
:content (i18n/label :t/wrong-card-text)}})
|
:content (i18n/label :t/wrong-card-text)}})
|
||||||
|
|
||||||
(rf/defn unauthorized-operation
|
(rf/defn unauthorized-operation
|
||||||
[cofx]
|
[cofx]
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
{:utils/show-popup {:title ""
|
{:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/keycard-unauthorized-operation)}}
|
:content (i18n/label :t/keycard-unauthorized-operation)}}
|
||||||
(clear-on-card-connected)
|
(clear-on-card-connected)
|
||||||
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
(navigation/set-stack-root :profile-stack [:my-profile :keycard-settings])))
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
[{:keys [db] :as cofx}]
|
[{:keys [db] :as cofx}]
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
{:db (assoc-in db [:keycard :setup-step] nil)
|
{:db (assoc-in db [:keycard :setup-step] nil)
|
||||||
:utils/show-confirmation {:title nil
|
:effects.utils/show-confirmation {:title nil
|
||||||
:content (i18n/label
|
:content (i18n/label
|
||||||
:t/keycard-has-multiaccount-on-it)
|
:t/keycard-has-multiaccount-on-it)
|
||||||
:cancel-button-text ""
|
:cancel-button-text ""
|
||||||
|
@ -548,8 +548,9 @@
|
||||||
|
|
||||||
(rf/defn show-no-keycard-applet-alert
|
(rf/defn show-no-keycard-applet-alert
|
||||||
[_]
|
[_]
|
||||||
{:utils/show-confirmation {:title (i18n/label :t/no-keycard-applet-on-card)
|
{:effects.utils/show-confirmation {:title (i18n/label :t/no-keycard-applet-on-card)
|
||||||
:content (i18n/label :t/keycard-applet-install-instructions)
|
:content (i18n/label
|
||||||
|
:t/keycard-applet-install-instructions)
|
||||||
:cancel-button-text ""
|
:cancel-button-text ""
|
||||||
:confirm-button-text :t/okay}})
|
:confirm-button-text :t/okay}})
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
(do
|
(do
|
||||||
(log/debug (str "Cannot start keycard installation from state: " card-state))
|
(log/debug (str "Cannot start keycard installation from state: " card-state))
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
{:utils/show-popup {:title (i18n/label :t/error)
|
{:effects.utils/show-popup {:title (i18n/label :t/error)
|
||||||
:content (i18n/label :t/something-went-wrong)}}
|
:content (i18n/label :t/something-went-wrong)}}
|
||||||
(navigation/navigate-to :keycard-authentication-method nil))))))
|
(navigation/navigate-to :keycard-authentication-method nil))))))
|
||||||
|
|
||||||
|
|
|
@ -221,7 +221,7 @@
|
||||||
(rf/defn on-backup-success
|
(rf/defn on-backup-success
|
||||||
[{:keys [db] :as cofx} backup-type]
|
[{:keys [db] :as cofx} backup-type]
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
{:utils/show-popup {:title (i18n/label (if (= backup-type :recovery-card)
|
{:effects.utils/show-popup {:title (i18n/label (if (= backup-type :recovery-card)
|
||||||
:t/keycard-access-reset
|
:t/keycard-access-reset
|
||||||
:t/keycard-backup-success-title))
|
:t/keycard-backup-success-title))
|
||||||
:content (i18n/label (if (= backup-type :recovery-card)
|
:content (i18n/label (if (= backup-type :recovery-card)
|
||||||
|
@ -373,4 +373,3 @@
|
||||||
cofx
|
cofx
|
||||||
{:on-card-connected :keycard/load-recovering-key-screen
|
{:on-card-connected :keycard/load-recovering-key-screen
|
||||||
:handler (common/dispatch-event :keycard/import-multiaccount)}))
|
:handler (common/dispatch-event :keycard/import-multiaccount)}))
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
:error-label nil
|
:error-label nil
|
||||||
:on-verified nil}))
|
:on-verified nil}))
|
||||||
:keycard/persist-pairings (dissoc pairings (keyword instance-uid))
|
:keycard/persist-pairings (dissoc pairings (keyword instance-uid))
|
||||||
:utils/show-popup {:title ""
|
:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/card-unpaired)}}
|
:content (i18n/label :t/card-unpaired)}}
|
||||||
(common/clear-on-card-connected)
|
(common/clear-on-card-connected)
|
||||||
(remove-pairing-from-multiaccount nil)
|
(remove-pairing-from-multiaccount nil)
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
:error-label nil
|
:error-label nil
|
||||||
:on-verified nil})
|
:on-verified nil})
|
||||||
:keycard/get-application-info nil
|
:keycard/get-application-info nil
|
||||||
:utils/show-popup {:title ""
|
:effects.utils/show-popup {:title ""
|
||||||
:content (i18n/label :t/something-went-wrong)}}
|
:content (i18n/label :t/something-went-wrong)}}
|
||||||
(common/clear-on-card-connected)
|
(common/clear-on-card-connected)
|
||||||
(navigation/navigate-to :keycard-settings nil)))
|
(navigation/navigate-to :keycard-settings nil)))
|
||||||
|
@ -139,15 +139,14 @@
|
||||||
:error-label nil
|
:error-label nil
|
||||||
:on-verified nil}))
|
:on-verified nil}))
|
||||||
:keycard/persist-pairings (dissoc pairings (keyword instance-uid))
|
:keycard/persist-pairings (dissoc pairings (keyword instance-uid))
|
||||||
:utils/show-popup {:title (i18n/label (if keys-removed-from-card?
|
:effects.utils/show-popup {:title (i18n/label (if keys-removed-from-card?
|
||||||
:t/profile-deleted-title
|
:t/profile-deleted-title
|
||||||
:t/database-reset-title))
|
:t/database-reset-title))
|
||||||
:content (i18n/label (if keys-removed-from-card?
|
:content (i18n/label (if keys-removed-from-card?
|
||||||
:t/profile-deleted-keycard
|
:t/profile-deleted-keycard
|
||||||
:t/database-reset-content))
|
:t/database-reset-content))
|
||||||
:on-dismiss #(re-frame/dispatch [:logout])}}
|
:on-dismiss #(re-frame/dispatch [:logout])}}
|
||||||
;;should be reimplemented
|
;;should be reimplemented :key-storage/delete-profile {:key-uid key-uid
|
||||||
;;:key-storage/delete-profile {:key-uid key-uid
|
|
||||||
;;:on-success #(log/debug "[keycard] remove account ok")
|
;;:on-success #(log/debug "[keycard] remove account ok")
|
||||||
;; :on-error #(log/warn "[keycard] remove account: " %)}
|
;; :on-error #(log/warn "[keycard] remove account: " %)}
|
||||||
(common/clear-on-card-connected)
|
(common/clear-on-card-connected)
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
{:events [:mailserver.ui/request-error-pressed]}
|
{:events [:mailserver.ui/request-error-pressed]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
(let [mailserver-error (:mailserver/request-error db)]
|
(let [mailserver-error (:mailserver/request-error db)]
|
||||||
{:utils/show-confirmation
|
{:effects.utils/show-confirmation
|
||||||
{:title (i18n/label :t/mailserver-request-error-title)
|
{:title (i18n/label :t/mailserver-request-error-title)
|
||||||
:content (i18n/label :t/mailserver-request-error-content
|
:content (i18n/label :t/mailserver-request-error-content
|
||||||
{:error mailserver-error})
|
{:error mailserver-error})
|
||||||
|
@ -290,8 +290,7 @@
|
||||||
[{:method "mailservers_addMailserver"
|
[{:method "mailservers_addMailserver"
|
||||||
:params [(mailserver->rpc mailserver current-fleet)]
|
:params [(mailserver->rpc mailserver current-fleet)]
|
||||||
:on-success (fn []
|
:on-success (fn []
|
||||||
;; we naively logout if the user is connected to
|
;; we naively logout if the user is connected to the edited mailserver
|
||||||
;; the edited mailserver
|
|
||||||
(when current
|
(when current
|
||||||
(re-frame/dispatch
|
(re-frame/dispatch
|
||||||
[:multiaccounts.logout.ui/logout-confirmed]))
|
[:multiaccounts.logout.ui/logout-confirmed]))
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
(rf/merge cofx
|
(rf/merge cofx
|
||||||
{:set-root :progress
|
{:set-root :progress
|
||||||
:chat.ui/clear-inputs nil
|
:chat.ui/clear-inputs nil
|
||||||
:shell/reset-state nil
|
:effects.shell/reset-state nil
|
||||||
:hide-popover nil
|
:hide-popover nil
|
||||||
::logout nil
|
::logout nil
|
||||||
:profile.settings/webview-debug-changed false
|
:profile.settings/webview-debug-changed false
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
(rf/defn connect-failure
|
(rf/defn connect-failure
|
||||||
{:events [::connect-failure]}
|
{:events [::connect-failure]}
|
||||||
[_ reason]
|
[_ reason]
|
||||||
{:utils/show-popup
|
{:effects.utils/show-popup
|
||||||
{:title (i18n/label :t/error)
|
{:title (i18n/label :t/error)
|
||||||
:content (str reason)}})
|
:content (str reason)}})
|
||||||
|
|
||||||
|
|
|
@ -165,7 +165,7 @@
|
||||||
(if (< (count (filter :enabled? (vals (get-in cofx [:db :pairing/installations]))))
|
(if (< (count (filter :enabled? (vals (get-in cofx [:db :pairing/installations]))))
|
||||||
(inc config/max-installations))
|
(inc config/max-installations))
|
||||||
{:pairing/enable-installation [installation-id]}
|
{:pairing/enable-installation [installation-id]}
|
||||||
{:utils/show-popup {:title (i18n/label :t/pairing-maximum-number-reached-title)
|
{:effects.utils/show-popup {:title (i18n/label :t/pairing-maximum-number-reached-title)
|
||||||
|
|
||||||
:content (i18n/label :t/pairing-maximum-number-reached-content)}}))
|
:content (i18n/label :t/pairing-maximum-number-reached-content)}}))
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
[{:keys [db] :as cofx} {:keys [chat-id]}]
|
[{:keys [db] :as cofx} {:keys [chat-id]}]
|
||||||
(if-not (own-public-key? db chat-id)
|
(if-not (own-public-key? db chat-id)
|
||||||
{:dispatch [:chat.ui/start-chat chat-id]}
|
{:dispatch [:chat.ui/start-chat chat-id]}
|
||||||
{:utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
{:effects.utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
||||||
:content (i18n/label :t/can-not-add-yourself)}}))
|
:content (i18n/label :t/can-not-add-yourself)}}))
|
||||||
|
|
||||||
(rf/defn handle-group-chat
|
(rf/defn handle-group-chat
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
(navigation/navigate-back))
|
(navigation/navigate-back))
|
||||||
|
|
||||||
:else
|
:else
|
||||||
{:utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
{:effects.utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
||||||
:content (i18n/label :t/ens-name-not-found)
|
:content (i18n/label :t/ens-name-not-found)
|
||||||
:on-dismiss #(re-frame/dispatch [:pop-to-root :shell-stack])}})))
|
:on-dismiss #(re-frame/dispatch [:pop-to-root :shell-stack])}})))
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
{:type type
|
{:type type
|
||||||
:event ::match-scanned-value})
|
:event ::match-scanned-value})
|
||||||
{:dispatch [:navigate-back]
|
{:dispatch [:navigate-back]
|
||||||
:utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
:effects.utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
||||||
:on-dismiss #(re-frame/dispatch [:pop-to-root :shell-stack])}})))
|
:on-dismiss #(re-frame/dispatch [:pop-to-root :shell-stack])}})))
|
||||||
|
|
||||||
(rf/defn on-scan
|
(rf/defn on-scan
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
(let [{:keys [result error]} (types/json->clj result)]
|
(let [{:keys [result error]} (types/json->clj result)]
|
||||||
(if error
|
(if error
|
||||||
{:dispatch [:signing.ui/cancel-is-pressed]
|
{:dispatch [:signing.ui/cancel-is-pressed]
|
||||||
:utils/show-popup {:title (i18n/label :t/sign-request-failed)
|
:effects.utils/show-popup {:title (i18n/label :t/sign-request-failed)
|
||||||
:content (:message error)}}
|
:content (:message error)}}
|
||||||
{:db (update db
|
{:db (update db
|
||||||
:keycard assoc
|
:keycard assoc
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
{:events [::on-delete-profile-success]}
|
{:events [::on-delete-profile-success]}
|
||||||
[cofx]
|
[cofx]
|
||||||
(log/info "[delete-profile] on-success")
|
(log/info "[delete-profile] on-success")
|
||||||
{:utils/show-popup
|
{:effects.utils/show-popup
|
||||||
{:title (i18n/label :t/profile-deleted-title)
|
{:title (i18n/label :t/profile-deleted-title)
|
||||||
:content (i18n/label :t/profile-deleted-content)
|
:content (i18n/label :t/profile-deleted-content)
|
||||||
:on-dismiss #(re-frame/dispatch [:logout])}})
|
:on-dismiss #(re-frame/dispatch [:logout])}})
|
||||||
|
|
|
@ -151,7 +151,7 @@
|
||||||
(rf/defn show-client-error
|
(rf/defn show-client-error
|
||||||
{:events [:show-client-error]}
|
{:events [:show-client-error]}
|
||||||
[_]
|
[_]
|
||||||
{:utils/show-popup {:title (i18n/label :t/cant-report-bug)
|
{:effects.utils/show-popup {:title (i18n/label :t/cant-report-bug)
|
||||||
:content (i18n/label :t/mail-should-be-configured)}})
|
:content (i18n/label :t/mail-should-be-configured)}})
|
||||||
|
|
||||||
(rf/defn show-logs-dialog
|
(rf/defn show-logs-dialog
|
||||||
|
@ -159,7 +159,7 @@
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
(when-not (:logging/dialog-shown? db)
|
(when-not (:logging/dialog-shown? db)
|
||||||
{:db (assoc db :logging/dialog-shown? true)
|
{:db (assoc db :logging/dialog-shown? true)
|
||||||
:utils/show-confirmation
|
:effects.utils/show-confirmation
|
||||||
(cond-> {:title (i18n/label :t/send-logs)
|
(cond-> {:title (i18n/label :t/send-logs)
|
||||||
:content (i18n/label :t/send-logs-to
|
:content (i18n/label :t/send-logs-to
|
||||||
{:email report-email})
|
{:email report-email})
|
||||||
|
|
|
@ -359,7 +359,7 @@
|
||||||
(let [deleted-address (:address account)
|
(let [deleted-address (:address account)
|
||||||
dapps-address (get-in cofx [:db :profile/profile :dapps-address])]
|
dapps-address (get-in cofx [:db :profile/profile :dapps-address])]
|
||||||
(if (= (string/lower-case dapps-address) (string/lower-case deleted-address))
|
(if (= (string/lower-case dapps-address) (string/lower-case deleted-address))
|
||||||
{:utils/show-popup {:title (i18n/label :t/warning)
|
{:effects.utils/show-popup {:title (i18n/label :t/warning)
|
||||||
:content (i18n/label :t/account-is-used)}}
|
:content (i18n/label :t/account-is-used)}}
|
||||||
{:key-storage/delete-imported-key
|
{:key-storage/delete-imported-key
|
||||||
{:key-uid (get-in db [:profile/profile :key-uid])
|
{:key-uid (get-in db [:profile/profile :key-uid])
|
||||||
|
@ -379,7 +379,7 @@
|
||||||
(assoc-in [:add-account :scanned-address] address)
|
(assoc-in [:add-account :scanned-address] address)
|
||||||
(assoc-in [:add-account :address] address))}
|
(assoc-in [:add-account :address] address))}
|
||||||
(when-not address
|
(when-not address
|
||||||
{:utils/show-popup {:title (i18n/label :t/error)
|
{:effects.utils/show-popup {:title (i18n/label :t/error)
|
||||||
:content (i18n/label :t/invalid-address-qr-code)}}))
|
:content (i18n/label :t/invalid-address-qr-code)}}))
|
||||||
(navigation/navigate-back))))
|
(navigation/navigate-back))))
|
||||||
|
|
||||||
|
@ -392,4 +392,3 @@
|
||||||
{:events [:wallet-legacy.accounts/share]}
|
{:events [:wallet-legacy.accounts/share]}
|
||||||
[_ address]
|
[_ address]
|
||||||
{:list.selection/open-share {:message (eip55/address->checksum address)}})
|
{:list.selection/open-share {:message (eip55/address->checksum address)}})
|
||||||
|
|
||||||
|
|
|
@ -246,8 +246,8 @@
|
||||||
assets (get visible-tokens chain)
|
assets (get visible-tokens chain)
|
||||||
tokens (->> (vals all-tokens)
|
tokens (->> (vals all-tokens)
|
||||||
(remove #(or (:hidden? %)
|
(remove #(or (:hidden? %)
|
||||||
;;if not scan-all-tokens? remove not
|
;;if not scan-all-tokens? remove
|
||||||
;;visible tokens
|
;;not visible tokens
|
||||||
(and (not scan-all-tokens?)
|
(and (not scan-all-tokens?)
|
||||||
(not (get assets (:symbol %))))))
|
(not (get assets (:symbol %))))))
|
||||||
(reduce (fn [acc {:keys [address symbol]}]
|
(reduce (fn [acc {:keys [address symbol]}]
|
||||||
|
@ -822,7 +822,7 @@
|
||||||
(rf/defn get-buy-crypto-preference
|
(rf/defn get-buy-crypto-preference
|
||||||
{:events [::get-buy-crypto]}
|
{:events [::get-buy-crypto]}
|
||||||
[_]
|
[_]
|
||||||
{:async-storage-get {:keys [:buy-crypto-hidden]
|
{:effects.async-storage/get {:keys [:buy-crypto-hidden]
|
||||||
:cb #(re-frame/dispatch [::store-buy-crypto-preference %])}})
|
:cb #(re-frame/dispatch [::store-buy-crypto-preference %])}})
|
||||||
|
|
||||||
(rf/defn wallet-will-focus
|
(rf/defn wallet-will-focus
|
||||||
|
@ -845,7 +845,7 @@
|
||||||
{:events [::hide-buy-crypto]}
|
{:events [::hide-buy-crypto]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
{:db (assoc db :wallet-legacy/buy-crypto-hidden true)
|
{:db (assoc db :wallet-legacy/buy-crypto-hidden true)
|
||||||
:async-storage-set {:buy-crypto-hidden true}})
|
:effects.async-storage/set {:buy-crypto-hidden true}})
|
||||||
|
|
||||||
(rf/defn store-buy-crypto
|
(rf/defn store-buy-crypto
|
||||||
{:events [::store-buy-crypto-preference]}
|
{:events [::store-buy-crypto-preference]}
|
||||||
|
@ -1023,7 +1023,7 @@
|
||||||
(rf/defn switch-transactions-management-enabled
|
(rf/defn switch-transactions-management-enabled
|
||||||
{:events [:multiaccounts.ui/switch-transactions-management-enabled]}
|
{:events [:multiaccounts.ui/switch-transactions-management-enabled]}
|
||||||
[{:keys [db]} enabled?]
|
[{:keys [db]} enabled?]
|
||||||
{:async-storage-set {:transactions-management-enabled? enabled?}
|
{:effects.async-storage/set {:transactions-management-enabled? enabled?}
|
||||||
:db (assoc db :wallet-legacy/transactions-management-enabled? enabled?)})
|
:db (assoc db :wallet-legacy/transactions-management-enabled? enabled?)})
|
||||||
|
|
||||||
(re-frame/reg-fx
|
(re-frame/reg-fx
|
||||||
|
@ -1072,9 +1072,8 @@
|
||||||
true])}))
|
true])}))
|
||||||
2000)))
|
2000)))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
;;TODO: this could be replaced by a single API call on status-go side
|
||||||
;;TODO: this could be replaced by a single API call on status-go side
|
(re-frame/reg-fx :wallet-legacy/initialize-wallet
|
||||||
:wallet-legacy/initialize-wallet
|
|
||||||
(fn [[network-id network callback]]
|
(fn [[network-id network callback]]
|
||||||
(-> (js/Promise.all
|
(-> (js/Promise.all
|
||||||
(clj->js
|
(clj->js
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
{:events [:wallet-legacy.custom-token/not-supported]}
|
{:events [:wallet-legacy.custom-token/not-supported]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
{:db (assoc-in db [:wallet-legacy/custom-token-screen :in-progress?] nil)
|
{:db (assoc-in db [:wallet-legacy/custom-token-screen :in-progress?] nil)
|
||||||
:utils/show-popup {:content (i18n/label :t/contract-isnt-supported)}})
|
:effects.utils/show-popup {:content (i18n/label :t/contract-isnt-supported)}})
|
||||||
|
|
||||||
(rf/defn add-custom-token
|
(rf/defn add-custom-token
|
||||||
{:events [:wallet-legacy.custom-token.ui/add-pressed]}
|
{:events [:wallet-legacy.custom-token.ui/add-pressed]}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
(ns status-im2.common.alert.events
|
(ns status-im2.common.alert.effects
|
||||||
(:require
|
(:require
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[react-native.core :as rn]
|
[react-native.core :as rn]
|
||||||
[utils.i18n :as i18n]))
|
[utils.i18n :as i18n]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(defn show-popup
|
(defn show-popup
|
||||||
([title content]
|
([title content]
|
||||||
|
@ -26,8 +26,7 @@
|
||||||
(when on-dismiss
|
(when on-dismiss
|
||||||
{:cancelable false})))))
|
{:cancelable false})))))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
(rf/reg-fx :effects.utils/show-popup
|
||||||
:utils/show-popup
|
|
||||||
(fn [{:keys [title content on-dismiss]}]
|
(fn [{:keys [title content on-dismiss]}]
|
||||||
(show-popup title content on-dismiss)))
|
(show-popup title content on-dismiss)))
|
||||||
|
|
||||||
|
@ -50,8 +49,7 @@
|
||||||
(or extra-options nil))
|
(or extra-options nil))
|
||||||
{:cancelable false}))
|
{:cancelable false}))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
(rf/reg-fx :effects.utils/show-confirmation
|
||||||
:utils/show-confirmation
|
|
||||||
(fn [{:keys [title content confirm-button-text on-accept on-cancel cancel-button-text extra-options]}]
|
(fn [{:keys [title content confirm-button-text on-accept on-cancel cancel-button-text extra-options]}]
|
||||||
(show-confirmation {:title title
|
(show-confirmation {:title title
|
||||||
:content content
|
:content content
|
||||||
|
@ -60,18 +58,3 @@
|
||||||
:on-accept on-accept
|
:on-accept on-accept
|
||||||
:on-cancel on-cancel
|
:on-cancel on-cancel
|
||||||
:extra-options extra-options})))
|
:extra-options extra-options})))
|
||||||
|
|
||||||
(defn show-question
|
|
||||||
([title content on-accept]
|
|
||||||
(show-question title content on-accept nil))
|
|
||||||
([title content on-accept on-cancel]
|
|
||||||
(rn/alert
|
|
||||||
title
|
|
||||||
content
|
|
||||||
(vector (merge {:text (i18n/label :t/no)
|
|
||||||
:accessibility-label :no-button}
|
|
||||||
(when on-cancel {:onPress on-cancel}))
|
|
||||||
{:text (i18n/label :t/yes)
|
|
||||||
:onPress on-accept
|
|
||||||
:accessibility-label :yes-button})
|
|
||||||
nil)))
|
|
|
@ -1,8 +0,0 @@
|
||||||
(ns status-im2.common.async-storage
|
|
||||||
(:require
|
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
react-native.async-storage))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :async-storage-set (react-native.async-storage/set-item-factory))
|
|
||||||
(re-frame/reg-fx :async-storage-get
|
|
||||||
(fn [{ks :keys cb :cb}] (react-native.async-storage/get-items ks cb)))
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
(ns status-im2.common.async-storage.effects
|
||||||
|
(:require
|
||||||
|
[react-native.async-storage :as async-storage]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.async-storage/set
|
||||||
|
(async-storage/set-item-factory))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.async-storage/get
|
||||||
|
(fn [{ks :keys cb :cb}]
|
||||||
|
(async-storage/get-items ks cb)))
|
|
@ -51,7 +51,7 @@
|
||||||
(i18n/label :t/grant-face-id-permissions)
|
(i18n/label :t/grant-face-id-permissions)
|
||||||
(i18n/label :t/biometric-auth-error {:code code}))]
|
(i18n/label :t/biometric-auth-error {:code code}))]
|
||||||
(when handle-error?
|
(when handle-error?
|
||||||
{:utils/show-popup
|
{:effects.utils/show-popup
|
||||||
{:title (i18n/label :t/biometric-auth-login-error-title)
|
{:title (i18n/label :t/biometric-auth-login-error-title)
|
||||||
:content content}})))
|
:content content}})))
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
(ns status-im2.common.font.effects
|
||||||
|
(:require
|
||||||
|
utils.image-server
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.font/get-font-file-for-initials-avatar
|
||||||
|
(fn [callback]
|
||||||
|
(utils.image-server/get-font-file-ready callback)))
|
|
@ -1,15 +1,9 @@
|
||||||
(ns status-im2.common.font
|
(ns status-im2.common.font.events
|
||||||
(:require
|
(:require
|
||||||
[clojure.string :as string]
|
[clojure.string :as string]
|
||||||
[re-frame.core :as re-frame]
|
status-im2.common.font.effects
|
||||||
utils.image-server
|
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:font/get-font-file-for-initials-avatar
|
|
||||||
(fn [callback]
|
|
||||||
(utils.image-server/get-font-file-ready callback)))
|
|
||||||
|
|
||||||
(rf/defn init-abs-root-path
|
(rf/defn init-abs-root-path
|
||||||
{:events [:font/init-font-file-for-initials-avatar]}
|
{:events [:font/init-font-file-for-initials-avatar]}
|
||||||
[{:keys [db]} initials-avatar-font-file]
|
[{:keys [db]} initials-avatar-font-file]
|
|
@ -44,7 +44,7 @@
|
||||||
(when chat-id
|
(when chat-id
|
||||||
(if-not (own-public-key? db chat-id)
|
(if-not (own-public-key? db chat-id)
|
||||||
{:dispatch [:chat.ui/start-chat chat-id]}
|
{:dispatch [:chat.ui/start-chat chat-id]}
|
||||||
{:utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
{:effects.utils/show-popup {:title (i18n/label :t/unable-to-read-this-code)
|
||||||
:content (i18n/label :t/can-not-add-yourself)}})))
|
:content (i18n/label :t/can-not-add-yourself)}})))
|
||||||
|
|
||||||
(rf/defn handle-community-requests
|
(rf/defn handle-community-requests
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
(ns status-im2.contexts.add-new-contact.effects
|
||||||
|
(:require
|
||||||
|
[native-module.core :as native-module]
|
||||||
|
[status-im.ethereum.ens :as ens]
|
||||||
|
[status-im2.constants :as constants]
|
||||||
|
[utils.re-frame :as rf]
|
||||||
|
[utils.transforms :as transforms]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.contacts/decompress-public-key
|
||||||
|
(fn [{:keys [compressed-key on-success on-error]}]
|
||||||
|
(native-module/compressed-key->public-key
|
||||||
|
compressed-key
|
||||||
|
constants/deserialization-key
|
||||||
|
(fn [resp]
|
||||||
|
(let [{:keys [error]} (transforms/json->clj resp)]
|
||||||
|
(if error
|
||||||
|
(on-error error)
|
||||||
|
(on-success (str "0x" (subs resp 5)))))))))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.contacts/resolve-public-key-from-ens
|
||||||
|
(fn [{:keys [chain-id ens on-success on-error]}]
|
||||||
|
(ens/pubkey chain-id ens on-success on-error)))
|
|
@ -1,17 +1,13 @@
|
||||||
(ns status-im2.contexts.add-new-contact.events
|
(ns status-im2.contexts.add-new-contact.events
|
||||||
(:require
|
(:require
|
||||||
[clojure.string :as string]
|
[clojure.string :as string]
|
||||||
[native-module.core :as native-module]
|
status-im2.contexts.add-new-contact.effects
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[status-im.ethereum.ens :as ens]
|
|
||||||
[status-im2.constants :as constants]
|
|
||||||
[status-im2.contexts.contacts.events :as data-store.contacts]
|
[status-im2.contexts.contacts.events :as data-store.contacts]
|
||||||
[status-im2.navigation.events :as navigation]
|
[status-im2.navigation.events :as navigation]
|
||||||
[utils.ens.stateofus :as stateofus]
|
[utils.ens.stateofus :as stateofus]
|
||||||
[utils.ethereum.chain :as chain]
|
[utils.ethereum.chain :as chain]
|
||||||
[utils.re-frame :as rf]
|
[utils.re-frame :as rf]
|
||||||
[utils.string :as utils.string]
|
[utils.string :as utils.string]
|
||||||
[utils.transforms :as transforms]
|
|
||||||
[utils.validators :as validators]))
|
[utils.validators :as validators]))
|
||||||
|
|
||||||
(defn init-contact
|
(defn init-contact
|
||||||
|
@ -108,14 +104,14 @@
|
||||||
:empty {:db (dissoc db :contacts/new-identity)}
|
:empty {:db (dissoc db :contacts/new-identity)}
|
||||||
(:valid :invalid) {:db (assoc db :contacts/new-identity contact)}
|
(:valid :invalid) {:db (assoc db :contacts/new-identity contact)}
|
||||||
:decompress-key {:db (assoc db :contacts/new-identity contact)
|
:decompress-key {:db (assoc db :contacts/new-identity contact)
|
||||||
:contacts/decompress-public-key
|
:effects.contacts/decompress-public-key
|
||||||
{:compressed-key id
|
{:compressed-key id
|
||||||
:on-success
|
:on-success
|
||||||
(dispatcher :contacts/set-new-identity-success input)
|
(dispatcher :contacts/set-new-identity-success input)
|
||||||
:on-error
|
:on-error
|
||||||
(dispatcher :contacts/set-new-identity-error input)}}
|
(dispatcher :contacts/set-new-identity-error input)}}
|
||||||
:resolve-ens {:db (assoc db :contacts/new-identity contact)
|
:resolve-ens {:db (assoc db :contacts/new-identity contact)
|
||||||
:contacts/resolve-public-key-from-ens
|
:effects.contacts/resolve-public-key-from-ens
|
||||||
{:chain-id (chain/chain-id db)
|
{:chain-id (chain/chain-id db)
|
||||||
:ens ens
|
:ens ens
|
||||||
:on-success
|
:on-success
|
||||||
|
@ -123,22 +119,7 @@
|
||||||
:on-error
|
:on-error
|
||||||
(dispatcher :contacts/set-new-identity-error input)}})))
|
(dispatcher :contacts/set-new-identity-error input)}})))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:contacts/decompress-public-key
|
|
||||||
(fn [{:keys [compressed-key on-success on-error]}]
|
|
||||||
(native-module/compressed-key->public-key
|
|
||||||
compressed-key
|
|
||||||
constants/deserialization-key
|
|
||||||
(fn [resp]
|
|
||||||
(let [{:keys [error]} (transforms/json->clj resp)]
|
|
||||||
(if error
|
|
||||||
(on-error error)
|
|
||||||
(on-success (str "0x" (subs resp 5)))))))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:contacts/resolve-public-key-from-ens
|
|
||||||
(fn [{:keys [chain-id ens on-success on-error]}]
|
|
||||||
(ens/pubkey chain-id ens on-success on-error)))
|
|
||||||
|
|
||||||
(rf/defn build-contact
|
(rf/defn build-contact
|
||||||
{:events [:contacts/build-contact]}
|
{:events [:contacts/build-contact]}
|
||||||
|
|
|
@ -115,7 +115,7 @@
|
||||||
:ens ens-stateofus-eth
|
:ens ens-stateofus-eth
|
||||||
:public-key nil ; not yet...
|
:public-key nil ; not yet...
|
||||||
:state :resolve-ens}))
|
:state :resolve-ens}))
|
||||||
:contacts/resolve-public-key-from-ens
|
:effects.contacts/resolve-public-key-from-ens
|
||||||
{:chain-id 1
|
{:chain-id 1
|
||||||
:ens ens-stateofus-eth
|
:ens ens-stateofus-eth
|
||||||
:on-success [:contacts/set-new-identity-success ens]
|
:on-success [:contacts/set-new-identity-success ens]
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
:type :compressed-key
|
:type :compressed-key
|
||||||
:public-key nil ; not yet...
|
:public-key nil ; not yet...
|
||||||
:state :decompress-key}))
|
:state :decompress-key}))
|
||||||
:contacts/decompress-public-key
|
:effects.contacts/decompress-public-key
|
||||||
{:compressed-key user-ckey
|
{:compressed-key user-ckey
|
||||||
:on-success [:contacts/set-new-identity-success user-ckey]
|
:on-success [:contacts/set-new-identity-success user-ckey]
|
||||||
:on-error [:contacts/set-new-identity-error user-ckey]}})))
|
:on-error [:contacts/set-new-identity-error user-ckey]}})))
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
[react-native.platform :as platform]
|
[react-native.platform :as platform]
|
||||||
[react-native.reanimated :as reanimated]
|
[react-native.reanimated :as reanimated]
|
||||||
[reagent.core :as reagent]
|
[reagent.core :as reagent]
|
||||||
[status-im2.common.alert.events :as alert]
|
[status-im2.common.alert.effects :as alert.effects]
|
||||||
[status-im2.common.device-permissions :as device-permissions]
|
[status-im2.common.device-permissions :as device-permissions]
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[status-im2.contexts.chat.composer.actions.style :as style]
|
[status-im2.contexts.chat.composer.actions.style :as style]
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
:on-denied
|
:on-denied
|
||||||
#(js/setTimeout
|
#(js/setTimeout
|
||||||
(fn []
|
(fn []
|
||||||
(alert/show-popup
|
(alert.effects/show-popup
|
||||||
(i18n/label :t/audio-recorder-error)
|
(i18n/label :t/audio-recorder-error)
|
||||||
(i18n/label
|
(i18n/label
|
||||||
:t/audio-recorder-permissions-error)
|
:t/audio-recorder-permissions-error)
|
||||||
|
@ -198,7 +198,7 @@
|
||||||
(reanimated/get-shared-value height)])
|
(reanimated/get-shared-value height)])
|
||||||
(rf/dispatch [:open-modal :photo-selector {:insets insets}]))
|
(rf/dispatch [:open-modal :photo-selector {:insets insets}]))
|
||||||
:on-denied (fn []
|
:on-denied (fn []
|
||||||
(alert/show-popup (i18n/label :t/error)
|
(alert.effects/show-popup (i18n/label :t/error)
|
||||||
(i18n/label
|
(i18n/label
|
||||||
:t/external-storage-denied)))}))
|
:t/external-storage-denied)))}))
|
||||||
|
|
||||||
|
@ -246,6 +246,6 @@
|
||||||
[:f> send-button props state animations window-height images edit send-btn-opacity
|
[:f> send-button props state animations window-height images edit send-btn-opacity
|
||||||
scroll-to-bottom-fn]
|
scroll-to-bottom-fn]
|
||||||
(when (and (not edit) (not images))
|
(when (and (not edit) (not images))
|
||||||
;; TODO(alwx): needs to be replaced with an `audio-button` later.
|
;; TODO(alwx): needs to be replaced with an `audio-button` later. See
|
||||||
;; See https://github.com/status-im/status-mobile/issues/16084 for more details.
|
;; https://github.com/status-im/status-mobile/issues/16084 for more details.
|
||||||
[:f> disabled-audio-button audio-btn-opacity])]))
|
[:f> disabled-audio-button audio-btn-opacity])]))
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
(ns status-im2.contexts.chat.effects
|
||||||
|
(:require
|
||||||
|
[react-native.async-storage :as async-storage]
|
||||||
|
[status-im2.contexts.shell.jump-to.constants :as shell.constants]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.chat/open-last-chat
|
||||||
|
(fn [key-uid]
|
||||||
|
(async-storage/get-item
|
||||||
|
:chat-id
|
||||||
|
(fn [chat-id]
|
||||||
|
(when chat-id
|
||||||
|
(async-storage/get-item
|
||||||
|
:key-uid
|
||||||
|
(fn [stored-key-uid]
|
||||||
|
(when (= stored-key-uid key-uid)
|
||||||
|
(rf/dispatch [:chat/navigate-to-chat chat-id
|
||||||
|
shell.constants/open-screen-without-animation])))))))))
|
|
@ -3,7 +3,6 @@
|
||||||
[clojure.set :as set]
|
[clojure.set :as set]
|
||||||
[quo.foundations.colors :as colors]
|
[quo.foundations.colors :as colors]
|
||||||
[re-frame.core :as re-frame]
|
[re-frame.core :as re-frame]
|
||||||
[react-native.async-storage :as async-storage]
|
|
||||||
[reagent.core :as reagent]
|
[reagent.core :as reagent]
|
||||||
[status-im.chat.models.loading :as loading]
|
[status-im.chat.models.loading :as loading]
|
||||||
[status-im.data-store.chats :as chats-store]
|
[status-im.data-store.chats :as chats-store]
|
||||||
|
@ -11,11 +10,11 @@
|
||||||
[status-im2.config :as config]
|
[status-im2.config :as config]
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[status-im2.contexts.chat.composer.link-preview.events :as link-preview]
|
[status-im2.contexts.chat.composer.link-preview.events :as link-preview]
|
||||||
|
status-im2.contexts.chat.effects
|
||||||
[status-im2.contexts.chat.messages.delete-message-for-me.events :as delete-for-me]
|
[status-im2.contexts.chat.messages.delete-message-for-me.events :as delete-for-me]
|
||||||
[status-im2.contexts.chat.messages.delete-message.events :as delete-message]
|
[status-im2.contexts.chat.messages.delete-message.events :as delete-message]
|
||||||
[status-im2.contexts.chat.messages.list.state :as chat.state]
|
[status-im2.contexts.chat.messages.list.state :as chat.state]
|
||||||
[status-im2.contexts.contacts.events :as contacts-store]
|
[status-im2.contexts.contacts.events :as contacts-store]
|
||||||
[status-im2.contexts.shell.jump-to.constants :as shell.constants]
|
|
||||||
[status-im2.navigation.events :as navigation]
|
[status-im2.navigation.events :as navigation]
|
||||||
[taoensso.timbre :as log]
|
[taoensso.timbre :as log]
|
||||||
[utils.datetime :as datetime]
|
[utils.datetime :as datetime]
|
||||||
|
@ -175,7 +174,7 @@
|
||||||
{:db (-> db
|
{:db (-> db
|
||||||
(dissoc :current-chat-id)
|
(dissoc :current-chat-id)
|
||||||
(assoc-in [:chat/inputs chat-id :focused?] false))
|
(assoc-in [:chat/inputs chat-id :focused?] false))
|
||||||
:async-storage-set {:chat-id nil
|
:effects.async-storage/set {:chat-id nil
|
||||||
:key-uid nil}}
|
:key-uid nil}}
|
||||||
(let [community-id (get-in db [:chats chat-id :community-id])]
|
(let [community-id (get-in db [:chats chat-id :community-id])]
|
||||||
;; When navigating back from community chat to community, update switcher card
|
;; When navigating back from community chat to community, update switcher card
|
||||||
|
@ -431,21 +430,7 @@
|
||||||
[{:keys [db]} value]
|
[{:keys [db]} value]
|
||||||
{:db (assoc db :lightbox/scale value)})
|
{:db (assoc db :lightbox/scale value)})
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:chat/open-last-chat
|
|
||||||
(fn [key-uid]
|
|
||||||
(async-storage/get-item
|
|
||||||
:chat-id
|
|
||||||
(fn [chat-id]
|
|
||||||
(when chat-id
|
|
||||||
(async-storage/get-item
|
|
||||||
:key-uid
|
|
||||||
(fn [stored-key-uid]
|
|
||||||
(when (= stored-key-uid key-uid)
|
|
||||||
(re-frame/dispatch [:chat/navigate-to-chat chat-id
|
|
||||||
shell.constants/open-screen-without-animation])))))))))
|
|
||||||
|
|
||||||
(rf/defn check-last-chat
|
(rf/defn check-last-chat
|
||||||
{:events [:chat/check-last-chat]}
|
{:events [:chat/check-last-chat]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
{:chat/open-last-chat (get-in db [:profile/profile :key-uid])})
|
{:effects.chat/open-last-chat (get-in db [:profile/profile :key-uid])})
|
||||||
|
|
|
@ -0,0 +1,94 @@
|
||||||
|
(ns status-im2.contexts.chat.photo-selector.effects
|
||||||
|
(:require
|
||||||
|
[clojure.string :as string]
|
||||||
|
[react-native.cameraroll :as cameraroll]
|
||||||
|
[react-native.core :as rn]
|
||||||
|
[react-native.image-resizer :as image-resizer]
|
||||||
|
[react-native.permissions :as permissions]
|
||||||
|
[react-native.platform :as platform]
|
||||||
|
[taoensso.timbre :as log]
|
||||||
|
[utils.i18n :as i18n]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(def ^:private maximum-image-size-px 2000)
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.camera-roll/request-permissions-and-get-photos
|
||||||
|
(fn [[num end-cursor album]]
|
||||||
|
(permissions/request-permissions
|
||||||
|
{:permissions [:read-external-storage]
|
||||||
|
:on-allowed
|
||||||
|
(fn []
|
||||||
|
(cameraroll/get-photos
|
||||||
|
(merge {:first num
|
||||||
|
:assetType "Photos"
|
||||||
|
:groupTypes (if (= album (i18n/label :t/recent)) "All" "Albums")
|
||||||
|
:groupName (if (not= album (i18n/label :t/recent)) album "")
|
||||||
|
:include ["imageSize"]}
|
||||||
|
(when end-cursor
|
||||||
|
{:after end-cursor}))
|
||||||
|
#(rf/dispatch [:on-camera-roll-get-photos (:edges %) (:page_info %) end-cursor])))})))
|
||||||
|
|
||||||
|
(defn- resize-photo
|
||||||
|
[uri callback]
|
||||||
|
(rn/image-get-size
|
||||||
|
uri
|
||||||
|
(fn [width height]
|
||||||
|
(let [resize? (> (max width height) maximum-image-size-px)]
|
||||||
|
(image-resizer/resize
|
||||||
|
uri
|
||||||
|
(if resize? maximum-image-size-px width)
|
||||||
|
(if resize? maximum-image-size-px height)
|
||||||
|
60
|
||||||
|
(fn [^js resized-image]
|
||||||
|
(let [path (.-path resized-image)
|
||||||
|
path (if (string/starts-with? path "file") path (str "file://" path))]
|
||||||
|
(callback {:resized-uri path
|
||||||
|
:width width
|
||||||
|
:height height})))
|
||||||
|
#(log/error "could not resize image" %))))))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.camera-roll/image-selected
|
||||||
|
(fn [[image chat-id]]
|
||||||
|
(resize-photo (:uri image) #(rf/dispatch [:photo-selector/image-selected chat-id image %]))))
|
||||||
|
|
||||||
|
(defn- get-albums
|
||||||
|
[callback]
|
||||||
|
(let [albums (atom {:smart-album []
|
||||||
|
:my-albums []})]
|
||||||
|
;; Get the "recent" album first
|
||||||
|
(cameraroll/get-photos
|
||||||
|
{:first 1 :groupTypes "All" :assetType "Photos"}
|
||||||
|
(fn [res-recent]
|
||||||
|
(swap! albums assoc
|
||||||
|
:smart-album
|
||||||
|
{:title (i18n/label :t/recent)
|
||||||
|
:uri (get-in (first (:edges res-recent)) [:node :image :uri])})
|
||||||
|
;; Get albums, then loop over albums and get each one's cover (first photo)
|
||||||
|
(cameraroll/get-albums
|
||||||
|
{:assetType "Photos"}
|
||||||
|
(fn [res-albums]
|
||||||
|
(let [response-count (count res-albums)]
|
||||||
|
(if (pos? response-count)
|
||||||
|
(doseq [album res-albums]
|
||||||
|
(cameraroll/get-photos
|
||||||
|
{:first 1 :groupTypes "Albums" :groupName (:title album) :assetType "Photos"}
|
||||||
|
(fn [res]
|
||||||
|
(let [uri (get-in (first (:edges res)) [:node :image :uri])]
|
||||||
|
(swap! albums update :my-albums conj (merge album {:uri uri}))
|
||||||
|
(when (= (count (:my-albums @albums)) response-count)
|
||||||
|
(swap! albums update :my-albums #(sort-by :title %))
|
||||||
|
(callback @albums))))))
|
||||||
|
(callback @albums)))))))))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.camera-roll/get-albums
|
||||||
|
(fn []
|
||||||
|
(get-albums #(rf/dispatch [:on-camera-roll-get-albums %]))))
|
||||||
|
|
||||||
|
(defn get-photos-count-ios-fx
|
||||||
|
[cb]
|
||||||
|
(cameraroll/get-photos-count-ios cb))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.camera-roll/get-photos-count-ios
|
||||||
|
(fn []
|
||||||
|
(when platform/ios?
|
||||||
|
(get-photos-count-ios-fx #(rf/dispatch [:on-camera-roll-get-images-count-ios %])))))
|
|
@ -1,104 +1,10 @@
|
||||||
(ns status-im2.contexts.chat.photo-selector.events
|
(ns status-im2.contexts.chat.photo-selector.events
|
||||||
(:require
|
(:require
|
||||||
[clojure.string :as string]
|
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[react-native.cameraroll :as cameraroll]
|
|
||||||
[react-native.core :as rn]
|
|
||||||
[react-native.image-resizer :as image-resizer]
|
|
||||||
[react-native.permissions :as permissions]
|
|
||||||
[react-native.platform :as platform]
|
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[taoensso.timbre :as log]
|
status-im2.contexts.chat.photo-selector.effects
|
||||||
[utils.i18n :as i18n]
|
[utils.i18n :as i18n]
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(def maximum-image-size-px 2000)
|
|
||||||
|
|
||||||
(defn- resize-photo
|
|
||||||
[uri callback]
|
|
||||||
(rn/image-get-size
|
|
||||||
uri
|
|
||||||
(fn [width height]
|
|
||||||
(let [resize? (> (max width height) maximum-image-size-px)]
|
|
||||||
(image-resizer/resize
|
|
||||||
uri
|
|
||||||
(if resize? maximum-image-size-px width)
|
|
||||||
(if resize? maximum-image-size-px height)
|
|
||||||
60
|
|
||||||
(fn [^js resized-image]
|
|
||||||
(let [path (.-path resized-image)
|
|
||||||
path (if (string/starts-with? path "file") path (str "file://" path))]
|
|
||||||
(callback {:resized-uri path
|
|
||||||
:width width
|
|
||||||
:height height})))
|
|
||||||
#(log/error "could not resize image" %))))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:camera-roll-request-permissions-and-get-photos
|
|
||||||
(fn [[num end-cursor album]]
|
|
||||||
(permissions/request-permissions
|
|
||||||
{:permissions [:read-external-storage]
|
|
||||||
:on-allowed
|
|
||||||
(fn []
|
|
||||||
(cameraroll/get-photos
|
|
||||||
(merge {:first num
|
|
||||||
:assetType "Photos"
|
|
||||||
:groupTypes (if (= album (i18n/label :t/recent)) "All" "Albums")
|
|
||||||
:groupName (if (not= album (i18n/label :t/recent)) album "")
|
|
||||||
:include ["imageSize"]}
|
|
||||||
(when end-cursor
|
|
||||||
{:after end-cursor}))
|
|
||||||
#(re-frame/dispatch [:on-camera-roll-get-photos (:edges %) (:page_info %) end-cursor])))})))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:camera-roll-image-selected
|
|
||||||
(fn [[image chat-id]]
|
|
||||||
(resize-photo (:uri image) #(re-frame/dispatch [:photo-selector/image-selected chat-id image %]))))
|
|
||||||
|
|
||||||
(defn get-albums
|
|
||||||
[callback]
|
|
||||||
(let [albums (atom {:smart-album []
|
|
||||||
:my-albums []})]
|
|
||||||
;; Get the "recent" album first
|
|
||||||
(cameraroll/get-photos
|
|
||||||
{:first 1 :groupTypes "All" :assetType "Photos"}
|
|
||||||
(fn [res-recent]
|
|
||||||
(swap! albums assoc
|
|
||||||
:smart-album
|
|
||||||
{:title (i18n/label :t/recent)
|
|
||||||
:uri (get-in (first (:edges res-recent)) [:node :image :uri])})
|
|
||||||
;; Get albums, then loop over albums and get each one's cover (first photo)
|
|
||||||
(cameraroll/get-albums
|
|
||||||
{:assetType "Photos"}
|
|
||||||
(fn [res-albums]
|
|
||||||
(let [response-count (count res-albums)]
|
|
||||||
(if (pos? response-count)
|
|
||||||
(doseq [album res-albums]
|
|
||||||
(cameraroll/get-photos
|
|
||||||
{:first 1 :groupTypes "Albums" :groupName (:title album) :assetType "Photos"}
|
|
||||||
(fn [res]
|
|
||||||
(let [uri (get-in (first (:edges res)) [:node :image :uri])]
|
|
||||||
(swap! albums update :my-albums conj (merge album {:uri uri}))
|
|
||||||
(when (= (count (:my-albums @albums)) response-count)
|
|
||||||
(swap! albums update :my-albums #(sort-by :title %))
|
|
||||||
(callback @albums))))))
|
|
||||||
(callback @albums)))))))))
|
|
||||||
|
|
||||||
(defn get-photos-count-ios-fx
|
|
||||||
[cb]
|
|
||||||
(cameraroll/get-photos-count-ios cb))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:camera-roll-get-albums
|
|
||||||
(fn []
|
|
||||||
(get-albums #(re-frame/dispatch [:on-camera-roll-get-albums %]))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:camera-roll-get-photos-count-ios
|
|
||||||
(fn []
|
|
||||||
(when platform/ios?
|
|
||||||
(get-photos-count-ios-fx #(re-frame/dispatch [:on-camera-roll-get-images-count-ios %])))))
|
|
||||||
|
|
||||||
(rf/defn on-camera-roll-get-albums
|
(rf/defn on-camera-roll-get-albums
|
||||||
{:events [:on-camera-roll-get-albums]}
|
{:events [:on-camera-roll-get-albums]}
|
||||||
[{:keys [db]} albums]
|
[{:keys [db]} albums]
|
||||||
|
@ -113,12 +19,12 @@
|
||||||
(rf/defn camera-roll-get-albums
|
(rf/defn camera-roll-get-albums
|
||||||
{:events [:photo-selector/camera-roll-get-albums]}
|
{:events [:photo-selector/camera-roll-get-albums]}
|
||||||
[_]
|
[_]
|
||||||
{:camera-roll-get-albums nil})
|
{:effects.camera-roll/get-albums nil})
|
||||||
|
|
||||||
(rf/defn camera-roll-get-ios-photo-count
|
(rf/defn camera-roll-get-ios-photo-count
|
||||||
{:events [:photo-selector/camera-roll-get-ios-photo-count]}
|
{:events [:photo-selector/camera-roll-get-ios-photo-count]}
|
||||||
[_]
|
[_]
|
||||||
{:camera-roll-get-photos-count-ios nil})
|
{:effects.camera-roll/get-photos-count-ios nil})
|
||||||
|
|
||||||
(rf/defn camera-roll-select-album
|
(rf/defn camera-roll-select-album
|
||||||
{:events [:chat.ui/camera-roll-select-album]}
|
{:events [:chat.ui/camera-roll-select-album]}
|
||||||
|
@ -150,7 +56,8 @@
|
||||||
(rf/defn get-photos-for-selected-album
|
(rf/defn get-photos-for-selected-album
|
||||||
{:events [:photo-selector/get-photos-for-selected-album]}
|
{:events [:photo-selector/get-photos-for-selected-album]}
|
||||||
[{:keys [db]} end-cursor]
|
[{:keys [db]} end-cursor]
|
||||||
{:camera-roll-request-permissions-and-get-photos [21 end-cursor
|
{:effects.camera-roll/request-permissions-and-get-photos
|
||||||
|
[21 end-cursor
|
||||||
(or (:camera-roll/selected-album db)
|
(or (:camera-roll/selected-album db)
|
||||||
(i18n/label :t/recent))]})
|
(i18n/label :t/recent))]})
|
||||||
|
|
||||||
|
@ -166,4 +73,4 @@
|
||||||
images (get-in db [:chat/inputs current-chat-id :metadata :sending-image])]
|
images (get-in db [:chat/inputs current-chat-id :metadata :sending-image])]
|
||||||
(when (and (< (count images) constants/max-album-photos)
|
(when (and (< (count images) constants/max-album-photos)
|
||||||
(not (some #(= (:uri image) (:uri %)) images)))
|
(not (some #(= (:uri image) (:uri %)) images)))
|
||||||
{:camera-roll-image-selected [image current-chat-id]})))
|
{:effects.camera-roll/image-selected [image current-chat-id]})))
|
||||||
|
|
|
@ -114,7 +114,7 @@
|
||||||
{:events [:onboarding/seed-phrase-validated]}
|
{:events [:onboarding/seed-phrase-validated]}
|
||||||
[{:keys [db]} seed-phrase key-uid]
|
[{:keys [db]} seed-phrase key-uid]
|
||||||
(if (contains? (:profile/profiles-overview db) key-uid)
|
(if (contains? (:profile/profiles-overview db) key-uid)
|
||||||
{:utils/show-confirmation
|
{:effects.utils/show-confirmation
|
||||||
{:title (i18n/label :t/multiaccount-exists-title)
|
{:title (i18n/label :t/multiaccount-exists-title)
|
||||||
:content (i18n/label :t/multiaccount-exists-content)
|
:content (i18n/label :t/multiaccount-exists-content)
|
||||||
:confirm-button-text (i18n/label :t/unlock)
|
:confirm-button-text (i18n/label :t/unlock)
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
(ns status-im2.contexts.profile.create.effects
|
||||||
|
(:require
|
||||||
|
[native-module.core :as native-module]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.profile/create-and-login
|
||||||
|
(fn [request]
|
||||||
|
;;"node.login" signal will be triggered as a callback
|
||||||
|
(native-module/create-account-and-login request)))
|
|
@ -1,21 +1,15 @@
|
||||||
(ns status-im2.contexts.profile.create.events
|
(ns status-im2.contexts.profile.create.events
|
||||||
(:require
|
(:require
|
||||||
[native-module.core :as native-module]
|
[native-module.core :as native-module]
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[status-im2.contexts.profile.config :as profile.config]
|
[status-im2.contexts.profile.config :as profile.config]
|
||||||
|
status-im2.contexts.profile.create.effects
|
||||||
[utils.re-frame :as rf]
|
[utils.re-frame :as rf]
|
||||||
[utils.security.core :as security]))
|
[utils.security.core :as security]))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
::create-profile-and-login
|
|
||||||
(fn [request]
|
|
||||||
;;"node.login" signal will be triggered as a callback
|
|
||||||
(native-module/create-account-and-login request)))
|
|
||||||
|
|
||||||
(rf/defn create-profile-and-login
|
(rf/defn create-profile-and-login
|
||||||
{:events [:profile.create/create-and-login]}
|
{:events [:profile.create/create-and-login]}
|
||||||
[_ {:keys [display-name password image-path color]}]
|
[_ {:keys [display-name password image-path color]}]
|
||||||
{::create-profile-and-login
|
{:effects.profile/create-and-login
|
||||||
(assoc (profile.config/create)
|
(assoc (profile.config/create)
|
||||||
:displayName display-name
|
:displayName display-name
|
||||||
:password (native-module/sha3 (security/safe-unmask-data password))
|
:password (native-module/sha3 (security/safe-unmask-data password))
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
(ns status-im2.contexts.profile.login.effects
|
||||||
|
(:require
|
||||||
|
[native-module.core :as native-module]
|
||||||
|
[status-im2.contexts.profile.config :as profile.config]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.profile/login
|
||||||
|
(fn [[key-uid hashed-password]]
|
||||||
|
;;"node.login" signal will be triggered as a callback
|
||||||
|
(native-module/login-account
|
||||||
|
(assoc (profile.config/login) :keyUid key-uid :password hashed-password))))
|
|
@ -17,6 +17,7 @@
|
||||||
[status-im2.contexts.chat.messages.link-preview.events :as link-preview]
|
[status-im2.contexts.chat.messages.link-preview.events :as link-preview]
|
||||||
[status-im2.contexts.contacts.events :as contacts]
|
[status-im2.contexts.contacts.events :as contacts]
|
||||||
[status-im2.contexts.profile.config :as profile.config]
|
[status-im2.contexts.profile.config :as profile.config]
|
||||||
|
status-im2.contexts.profile.login.effects
|
||||||
[status-im2.contexts.profile.rpc :as profile.rpc]
|
[status-im2.contexts.profile.rpc :as profile.rpc]
|
||||||
[status-im2.contexts.profile.settings.events :as profile.settings.events]
|
[status-im2.contexts.profile.settings.events :as profile.settings.events]
|
||||||
[status-im2.contexts.push-notifications.events :as notifications]
|
[status-im2.contexts.push-notifications.events :as notifications]
|
||||||
|
@ -27,26 +28,19 @@
|
||||||
[utils.re-frame :as rf]
|
[utils.re-frame :as rf]
|
||||||
[utils.security.core :as security]))
|
[utils.security.core :as security]))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
::login
|
|
||||||
(fn [[key-uid hashed-password]]
|
|
||||||
;;"node.login" signal will be triggered as a callback
|
|
||||||
(native-module/login-account
|
|
||||||
(assoc (profile.config/login) :keyUid key-uid :password hashed-password))))
|
|
||||||
|
|
||||||
(rf/defn login
|
(rf/defn login
|
||||||
{:events [:profile.login/login]}
|
{:events [:profile.login/login]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
(let [{:keys [key-uid password]} (:profile/login db)]
|
(let [{:keys [key-uid password]} (:profile/login db)]
|
||||||
{:db (assoc-in db [:profile/login :processing] true)
|
{:db (assoc-in db [:profile/login :processing] true)
|
||||||
::login [key-uid (native-module/sha3 (security/safe-unmask-data password))]}))
|
:effects.profile/login [key-uid (native-module/sha3 (security/safe-unmask-data password))]}))
|
||||||
|
|
||||||
(rf/defn biometrics-login
|
(rf/defn biometrics-login
|
||||||
{:events [:profile.login/biometrics-login]}
|
{:events [:profile.login/biometrics-login]}
|
||||||
[{:keys [db]}]
|
[{:keys [db]}]
|
||||||
(let [{:keys [key-uid password]} (:profile/login db)]
|
(let [{:keys [key-uid password]} (:profile/login db)]
|
||||||
{:db (assoc-in db [:profile/login :processing] true)
|
{:db (assoc-in db [:profile/login :processing] true)
|
||||||
::login [key-uid (security/safe-unmask-data password)]}))
|
:effects.profile/login [key-uid (security/safe-unmask-data password)]}))
|
||||||
|
|
||||||
(rf/defn login-local-paired-user
|
(rf/defn login-local-paired-user
|
||||||
{:events [:profile.login/local-paired-user]}
|
{:events [:profile.login/local-paired-user]}
|
||||||
|
@ -56,7 +50,7 @@
|
||||||
{:db (-> db
|
{:db (-> db
|
||||||
(assoc-in [:onboarding/profile :password] masked-password)
|
(assoc-in [:onboarding/profile :password] masked-password)
|
||||||
(assoc-in [:onboarding/profile :syncing?] true))
|
(assoc-in [:onboarding/profile :syncing?] true))
|
||||||
::login [key-uid password]}))
|
:effects.profile/login [key-uid password]}))
|
||||||
|
|
||||||
(rf/defn redirect-to-root
|
(rf/defn redirect-to-root
|
||||||
[{:keys [db] :as cofx}]
|
[{:keys [db] :as cofx}]
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
(ns status-im2.contexts.profile.recover.effects
|
||||||
|
(:require
|
||||||
|
[native-module.core :as native-module]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.profile/restore-and-login
|
||||||
|
(fn [request]
|
||||||
|
;;"node.login" signal will be triggered as a callback
|
||||||
|
(native-module/restore-account-and-login request)))
|
|
@ -1,24 +1,18 @@
|
||||||
(ns status-im2.contexts.profile.recover.events
|
(ns status-im2.contexts.profile.recover.events
|
||||||
(:require
|
(:require
|
||||||
[native-module.core :as native-module]
|
[native-module.core :as native-module]
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[status-im2.contexts.profile.config :as profile.config]
|
[status-im2.contexts.profile.config :as profile.config]
|
||||||
|
status-im2.contexts.profile.recover.effects
|
||||||
[utils.re-frame :as rf]
|
[utils.re-frame :as rf]
|
||||||
[utils.security.core :as security]))
|
[utils.security.core :as security]))
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
::restore-profile-and-login
|
|
||||||
(fn [request]
|
|
||||||
;;"node.login" signal will be triggered as a callback
|
|
||||||
(native-module/restore-account-and-login request)))
|
|
||||||
|
|
||||||
(rf/defn recover-profile-and-login
|
(rf/defn recover-profile-and-login
|
||||||
{:events [:profile.recover/recover-and-login]}
|
{:events [:profile.recover/recover-and-login]}
|
||||||
[{:keys [db]} {:keys [display-name password image-path color seed-phrase]}]
|
[{:keys [db]} {:keys [display-name password image-path color seed-phrase]}]
|
||||||
{:db
|
{:db
|
||||||
(assoc db :onboarding/recovered-account? true)
|
(assoc db :onboarding/recovered-account? true)
|
||||||
|
|
||||||
::restore-profile-and-login
|
:effects.profile/restore-and-login
|
||||||
(merge (profile.config/create)
|
(merge (profile.config/create)
|
||||||
{:displayName display-name
|
{:displayName display-name
|
||||||
:mnemonic (security/safe-unmask-data seed-phrase)
|
:mnemonic (security/safe-unmask-data seed-phrase)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
[react-native.core :as rn]
|
[react-native.core :as rn]
|
||||||
[react-native.permissions :as permissions]
|
[react-native.permissions :as permissions]
|
||||||
[reagent.core :as reagent]
|
[reagent.core :as reagent]
|
||||||
[status-im2.common.alert.events :as alert]
|
[status-im2.common.alert.effects :as alert.effects]
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[status-im2.contexts.quo-preview.preview :as preview]
|
[status-im2.contexts.quo-preview.preview :as preview]
|
||||||
[utils.i18n :as i18n]
|
[utils.i18n :as i18n]
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
:on-denied
|
:on-denied
|
||||||
#(js/setTimeout
|
#(js/setTimeout
|
||||||
(fn []
|
(fn []
|
||||||
(alert/show-popup
|
(alert.effects/show-popup
|
||||||
(i18n/label :t/audio-recorder-error)
|
(i18n/label :t/audio-recorder-error)
|
||||||
(i18n/label
|
(i18n/label
|
||||||
:t/audio-recorder-permissions-error)))
|
:t/audio-recorder-permissions-error)))
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
(ns status-im2.contexts.shell.jump-to.effects
|
||||||
|
(:require
|
||||||
|
[status-im2.config :as config]
|
||||||
|
[status-im2.contexts.shell.jump-to.animation :as animation]
|
||||||
|
[status-im2.contexts.shell.jump-to.constants :as shell.constants]
|
||||||
|
[status-im2.contexts.shell.jump-to.state :as state]
|
||||||
|
[status-im2.contexts.shell.jump-to.utils :as shell.utils]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.shell/change-tab
|
||||||
|
(fn [stack-id]
|
||||||
|
(when (some #(= stack-id %) shell.constants/stacks-ids)
|
||||||
|
(animation/bottom-tab-on-press stack-id false))))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.shell/navigate-to-jump-to
|
||||||
|
(fn []
|
||||||
|
(animation/close-home-stack false)
|
||||||
|
(when-not config/shell-navigation-disabled?
|
||||||
|
(some-> ^js @state/jump-to-list-ref
|
||||||
|
(.scrollToOffset #js {:y 0 :animated false})))))
|
||||||
|
|
||||||
|
;; Note - pop-to-root resets currently opened screens to `close-screen-without-animation`.
|
||||||
|
;; This might take some time. So don't directly merge the effect of `pop-to-root` and
|
||||||
|
;; `navigate-to` for the floating screen. Because it might close even the currently opened screen.
|
||||||
|
;; https://github.com/status-im/status-mobile/pull/16438#issuecomment-1623954774
|
||||||
|
(rf/reg-fx :effects.shell/pop-to-root
|
||||||
|
(fn []
|
||||||
|
(shell.utils/reset-floating-screens)))
|
||||||
|
|
||||||
|
(rf/reg-fx :effects.shell/reset-state
|
||||||
|
(fn []
|
||||||
|
(reset! state/floating-screens-state {})))
|
|
@ -1,48 +1,15 @@
|
||||||
(ns status-im2.contexts.shell.jump-to.events
|
(ns status-im2.contexts.shell.jump-to.events
|
||||||
(:require
|
(:require
|
||||||
[re-frame.core :as re-frame]
|
|
||||||
[status-im.data-store.switcher-cards :as switcher-cards-store]
|
[status-im.data-store.switcher-cards :as switcher-cards-store]
|
||||||
[status-im.utils.core :as utils]
|
[status-im.utils.core :as utils]
|
||||||
[status-im2.config :as config]
|
[status-im2.config :as config]
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[status-im2.contexts.shell.jump-to.animation :as animation]
|
|
||||||
[status-im2.contexts.shell.jump-to.constants :as shell.constants]
|
[status-im2.contexts.shell.jump-to.constants :as shell.constants]
|
||||||
[status-im2.contexts.shell.jump-to.state :as state]
|
status-im2.contexts.shell.jump-to.effects
|
||||||
[status-im2.contexts.shell.jump-to.utils :as shell.utils]
|
[status-im2.contexts.shell.jump-to.utils :as shell.utils]
|
||||||
[status-im2.navigation.state :as navigation.state]
|
[status-im2.navigation.state :as navigation.state]
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
;;;; Effects
|
|
||||||
|
|
||||||
;; Navigation
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:shell/change-tab-fx
|
|
||||||
(fn [stack-id]
|
|
||||||
(when (some #(= stack-id %) shell.constants/stacks-ids)
|
|
||||||
(animation/bottom-tab-on-press stack-id false))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:shell/navigate-to-jump-to-fx
|
|
||||||
(fn []
|
|
||||||
(animation/close-home-stack false)
|
|
||||||
(when-not config/shell-navigation-disabled?
|
|
||||||
(some-> ^js @state/jump-to-list-ref
|
|
||||||
(.scrollToOffset #js {:y 0 :animated false})))))
|
|
||||||
|
|
||||||
;; Note - pop-to-root resets currently opened screens to `close-screen-without-animation`.
|
|
||||||
;; This might take some time. So don't directly merge the effect of `pop-to-root` and
|
|
||||||
;; `navigate-to` for the floating screen. Because it might close even the currently opened screen.
|
|
||||||
;; https://github.com/status-im/status-mobile/pull/16438#issuecomment-1623954774
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:shell/pop-to-root-fx
|
|
||||||
(fn []
|
|
||||||
(shell.utils/reset-floating-screens)))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:shell/reset-state
|
|
||||||
(fn []
|
|
||||||
(reset! state/floating-screens-state {})))
|
|
||||||
|
|
||||||
;;;; Events
|
;;;; Events
|
||||||
|
|
||||||
;; Switcher
|
;; Switcher
|
||||||
|
@ -105,7 +72,7 @@
|
||||||
[:shell/switcher-cards (:card-id card-data)]
|
[:shell/switcher-cards (:card-id card-data)]
|
||||||
switcher-card)}
|
switcher-card)}
|
||||||
(when config/shell-navigation-disabled?
|
(when config/shell-navigation-disabled?
|
||||||
{:shell/change-tab-fx (cond
|
{:effects.shell/change-tab (cond
|
||||||
(#{shell.constants/one-to-one-chat-card
|
(#{shell.constants/one-to-one-chat-card
|
||||||
shell.constants/private-group-chat-card}
|
shell.constants/private-group-chat-card}
|
||||||
card-type)
|
card-type)
|
||||||
|
@ -152,7 +119,7 @@
|
||||||
shell.constants/close-screen-without-animation))
|
shell.constants/close-screen-without-animation))
|
||||||
|
|
||||||
:dispatch [:set-view-id :shell]})
|
:dispatch [:set-view-id :shell]})
|
||||||
{:shell/navigate-to-jump-to-fx nil})))
|
{:effects.shell/navigate-to-jump-to nil})))
|
||||||
|
|
||||||
(rf/defn change-shell-status-bar-style
|
(rf/defn change-shell-status-bar-style
|
||||||
{:events [:change-shell-status-bar-style]}
|
{:events [:change-shell-status-bar-style]}
|
||||||
|
@ -246,7 +213,7 @@
|
||||||
(conj {:ms (* 2 shell.constants/shell-animation-time)
|
(conj {:ms (* 2 shell.constants/shell-animation-time)
|
||||||
:dispatch [:shell/add-switcher-card screen-id id]}))}
|
:dispatch [:shell/add-switcher-card screen-id id]}))}
|
||||||
(when (and id (not hidden-screen?))
|
(when (and id (not hidden-screen?))
|
||||||
{:shell/change-tab-fx (if (or (= screen-id shell.constants/community-screen)
|
{:effects.shell/change-tab (if (or (= screen-id shell.constants/community-screen)
|
||||||
community-id)
|
community-id)
|
||||||
:communities-stack
|
:communities-stack
|
||||||
:chats-stack)})))
|
:chats-stack)})))
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
(:require
|
(:require
|
||||||
[status-im.bottom-sheet.events]
|
[status-im.bottom-sheet.events]
|
||||||
[status-im.keycard.core :as keycard]
|
[status-im.keycard.core :as keycard]
|
||||||
status-im2.common.async-storage
|
status-im2.common.alert.effects
|
||||||
status-im2.common.font
|
status-im2.common.async-storage.effects
|
||||||
|
status-im2.common.font.events
|
||||||
[status-im2.common.json-rpc.events]
|
[status-im2.common.json-rpc.events]
|
||||||
status-im2.common.password-authentication.events
|
status-im2.common.password-authentication.events
|
||||||
status-im2.common.theme.events
|
status-im2.common.theme.events
|
||||||
|
@ -26,14 +27,14 @@
|
||||||
(rf/defn start-app
|
(rf/defn start-app
|
||||||
{:events [:app-started]}
|
{:events [:app-started]}
|
||||||
[cofx]
|
[cofx]
|
||||||
(rf/merge cofx
|
(rf/merge
|
||||||
|
cofx
|
||||||
{:db db/app-db
|
{:db db/app-db
|
||||||
:theme/init-theme nil
|
:theme/init-theme nil
|
||||||
:network/listen-to-network-info nil
|
:network/listen-to-network-info nil
|
||||||
:biometric/get-supported-biometric-type nil
|
:biometric/get-supported-biometric-type nil
|
||||||
;;app starting flow continues in get-profiles-overview
|
;;app starting flow continues in get-profiles-overview
|
||||||
:profile/get-profiles-overview #(rf/dispatch
|
:profile/get-profiles-overview #(rf/dispatch [:profile/get-profiles-overview-success %])
|
||||||
[:profile/get-profiles-overview-success %])
|
:effects.font/get-font-file-for-initials-avatar
|
||||||
:font/get-font-file-for-initials-avatar #(rf/dispatch
|
#(rf/dispatch [:font/init-font-file-for-initials-avatar %])}
|
||||||
[:font/init-font-file-for-initials-avatar %])}
|
|
||||||
(keycard/init)))
|
(keycard/init)))
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
[react-native.gesture :as gesture]
|
[react-native.gesture :as gesture]
|
||||||
[react-native.navigation :as navigation]
|
[react-native.navigation :as navigation]
|
||||||
[status-im2.common.theme.core :as theme]
|
[status-im2.common.theme.core :as theme]
|
||||||
|
[status-im2.navigation.effects :as effects]
|
||||||
[status-im2.navigation.options :as options]
|
[status-im2.navigation.options :as options]
|
||||||
[status-im2.navigation.roots :as roots]
|
|
||||||
[status-im2.navigation.state :as state]
|
[status-im2.navigation.state :as state]
|
||||||
[status-im2.navigation.view :as views]
|
[status-im2.navigation.view :as views]
|
||||||
[taoensso.timbre :as log]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(navigation/set-lazy-component-registrator
|
(navigation/set-lazy-component-registrator
|
||||||
(fn [screen-key]
|
(fn [screen-key]
|
||||||
|
@ -33,150 +33,26 @@
|
||||||
(re-frame/dispatch [:chat/check-last-chat])))
|
(re-frame/dispatch [:chat/check-last-chat])))
|
||||||
(rn/hide-splash-screen)))
|
(rn/hide-splash-screen)))
|
||||||
|
|
||||||
(defn set-view-id
|
|
||||||
[view-id]
|
|
||||||
(when (get views/screens view-id)
|
|
||||||
(re-frame/dispatch [:set-view-id view-id])))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:set-view-id-fx
|
|
||||||
(fn [view-id]
|
|
||||||
(re-frame/dispatch [:screens/on-will-focus view-id])
|
|
||||||
(when-let [{:keys [on-focus]} (get views/screens view-id)]
|
|
||||||
(when on-focus
|
|
||||||
(re-frame/dispatch on-focus)))))
|
|
||||||
|
|
||||||
(navigation/reg-component-did-appear-listener
|
(navigation/reg-component-did-appear-listener
|
||||||
(fn [view-id]
|
(fn [view-id]
|
||||||
(when (get views/screens view-id)
|
(when (get views/screens view-id)
|
||||||
;;NOTE when back from the background on Android, this event happens for all screens, but we need
|
;;NOTE when back from the background on Android, this event happens for all screens, but we
|
||||||
;;only for active one
|
;;need only for active one
|
||||||
(when (and @state/curr-modal (= @state/curr-modal view-id))
|
(when (and @state/curr-modal (= @state/curr-modal view-id))
|
||||||
(set-view-id view-id))
|
(effects/set-view-id view-id))
|
||||||
(when-not @state/curr-modal
|
(when-not @state/curr-modal
|
||||||
(set-view-id view-id)
|
(effects/set-view-id view-id)
|
||||||
(reset! state/pushed-screen-id view-id)))))
|
(reset! state/pushed-screen-id view-id)))))
|
||||||
|
|
||||||
(defn dissmissModal
|
;;;; Modal
|
||||||
([] (dissmissModal nil))
|
|
||||||
([comp-id]
|
|
||||||
(reset! state/dissmissing true)
|
|
||||||
(navigation/dismiss-modal (name (or comp-id (last @state/modals))))))
|
|
||||||
|
|
||||||
(defn dismiss-all-modals
|
|
||||||
[]
|
|
||||||
(when @state/curr-modal
|
|
||||||
(reset! state/curr-modal false)
|
|
||||||
(reset! state/dissmissing true)
|
|
||||||
(doseq [modal @state/modals]
|
|
||||||
(navigation/dismiss-modal (name modal)))
|
|
||||||
(reset! state/modals [])))
|
|
||||||
|
|
||||||
;; ROOT
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:set-root
|
|
||||||
(fn [root-id]
|
|
||||||
(let [root (get (roots/roots) root-id)]
|
|
||||||
(dismiss-all-modals)
|
|
||||||
(re-frame/dispatch [:profile.settings/switch-theme
|
|
||||||
(get roots/themes root-id)
|
|
||||||
root-id])
|
|
||||||
(reset! state/root-id (or (get-in root [:root :stack :id]) root-id))
|
|
||||||
(navigation/set-root root))))
|
|
||||||
|
|
||||||
;; NAVIGATE-TO
|
|
||||||
(defn navigate
|
|
||||||
[component]
|
|
||||||
(let [{:keys [options]} (get views/screens component)]
|
|
||||||
(dismiss-all-modals)
|
|
||||||
(navigation/push
|
|
||||||
(name @state/root-id)
|
|
||||||
{:component {:id component
|
|
||||||
:name component
|
|
||||||
:options (merge (options/default-root)
|
|
||||||
(options/statusbar-and-navbar)
|
|
||||||
options
|
|
||||||
(if (:topBar options)
|
|
||||||
(options/merge-top-bar (options/topbar-options) options)
|
|
||||||
{:topBar {:visible false}}))}})))
|
|
||||||
|
|
||||||
;; NAVIGATE-TO-WITHIN-STACK
|
|
||||||
(defn navigate-to-within-stack
|
|
||||||
[[component comp-id]]
|
|
||||||
(let [{:keys [options]} (get views/screens component)]
|
|
||||||
(navigation/push
|
|
||||||
(name comp-id)
|
|
||||||
{:component {:id component
|
|
||||||
:name component
|
|
||||||
:options (merge (options/statusbar-and-navbar)
|
|
||||||
options
|
|
||||||
(if (:topBar options)
|
|
||||||
(options/merge-top-bar (options/topbar-options) options)
|
|
||||||
{:topBar {:visible false}}))}})))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-to navigate)
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-to-within-stack navigate-to-within-stack)
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-replace-fx
|
|
||||||
(fn [view-id]
|
|
||||||
(navigation/pop (name @state/root-id))
|
|
||||||
(navigate view-id)))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-back
|
|
||||||
(fn []
|
|
||||||
(if @state/curr-modal
|
|
||||||
(dissmissModal)
|
|
||||||
(navigation/pop (name @state/root-id)))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-back-within-stack
|
|
||||||
(fn [comp-id]
|
|
||||||
(navigation/pop (name comp-id))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :navigate-back-to
|
|
||||||
(fn [comp-id]
|
|
||||||
(navigation/pop-to (name comp-id))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :dismiss-modal
|
|
||||||
(fn [comp-id]
|
|
||||||
(dissmissModal (name comp-id))))
|
|
||||||
|
|
||||||
(defn pop-to-root
|
|
||||||
[root-id]
|
|
||||||
(navigation/pop-to-root root-id)
|
|
||||||
(dismiss-all-modals))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :pop-to-root-fx pop-to-root)
|
|
||||||
|
|
||||||
;; MODAL
|
|
||||||
(defn open-modal
|
|
||||||
[component]
|
|
||||||
(let [{:keys [options]} (get views/screens component)
|
|
||||||
sheet? (:sheet? options)]
|
|
||||||
(if @state/dissmissing
|
|
||||||
(reset! state/dissmissing component)
|
|
||||||
(do
|
|
||||||
(reset! state/curr-modal true)
|
|
||||||
(swap! state/modals conj component)
|
|
||||||
(navigation/show-modal
|
|
||||||
{:stack {:children [{:component
|
|
||||||
{:name component
|
|
||||||
:id component
|
|
||||||
:options (merge (options/default-root)
|
|
||||||
(options/statusbar-and-navbar)
|
|
||||||
options
|
|
||||||
(when sheet?
|
|
||||||
options/sheet-options))}}]}})))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :open-modal-fx open-modal)
|
|
||||||
|
|
||||||
(navigation/reg-button-pressed-listener
|
(navigation/reg-button-pressed-listener
|
||||||
(fn [id]
|
(fn [id]
|
||||||
(if (= "dismiss-modal" id)
|
(if (= "dismiss-modal" id)
|
||||||
(do
|
(do
|
||||||
(when-let [event (get-in views/screens [(last @state/modals) :on-dissmiss])]
|
(when-let [event (get-in views/screens [(last @state/modals) :on-dissmiss])]
|
||||||
(re-frame/dispatch event))
|
(rf/dispatch event))
|
||||||
(dissmissModal))
|
(effects/dismiss-modal))
|
||||||
(when-let [handler (get-in views/screens [(keyword id) :right-handler])]
|
(when-let [handler (get-in views/screens [(keyword id) :right-handler])]
|
||||||
(handler)))))
|
(handler)))))
|
||||||
|
|
||||||
|
@ -185,35 +61,21 @@
|
||||||
(if (> (count @state/modals) 1)
|
(if (> (count @state/modals) 1)
|
||||||
(let [new-modals (butlast @state/modals)]
|
(let [new-modals (butlast @state/modals)]
|
||||||
(reset! state/modals (vec new-modals))
|
(reset! state/modals (vec new-modals))
|
||||||
(set-view-id (last new-modals)))
|
(effects/set-view-id (last new-modals)))
|
||||||
(do
|
(do
|
||||||
(reset! state/modals [])
|
(reset! state/modals [])
|
||||||
(reset! state/curr-modal false)
|
(reset! state/curr-modal false)
|
||||||
(set-view-id @state/pushed-screen-id)))
|
(effects/set-view-id @state/pushed-screen-id)))
|
||||||
|
|
||||||
(let [component @state/dissmissing]
|
(let [component @state/dissmissing]
|
||||||
(reset! state/dissmissing false)
|
(reset! state/dissmissing false)
|
||||||
(when (keyword? component)
|
(when (keyword? component)
|
||||||
(open-modal component)))))
|
(effects/open-modal component)))))
|
||||||
|
|
||||||
;; OVERLAY
|
;;;; Toast
|
||||||
(def dissmiss-overlay navigation/dissmiss-overlay)
|
|
||||||
|
|
||||||
(defn show-overlay
|
(navigation/register-component
|
||||||
([component] (show-overlay component {}))
|
"toasts"
|
||||||
([component opts]
|
|
||||||
(dissmiss-overlay component)
|
|
||||||
(navigation/show-overlay
|
|
||||||
{:component {:name component
|
|
||||||
:id component
|
|
||||||
:options (merge (options/statusbar)
|
|
||||||
{:layout {:componentBackgroundColor :transparent
|
|
||||||
:orientation ["portrait"]}
|
|
||||||
:overlay {:interceptTouchOutside true}}
|
|
||||||
opts)}})))
|
|
||||||
|
|
||||||
;; toast
|
|
||||||
(navigation/register-component "toasts"
|
|
||||||
; `:flex 0` is the same as `flex: 0 0 auto` in CSS.
|
; `:flex 0` is the same as `flex: 0 0 auto` in CSS.
|
||||||
; We need this to override the HOC default layout which is
|
; We need this to override the HOC default layout which is
|
||||||
; flex 1. If we don't override this property, this HOC
|
; flex 1. If we don't override this property, this HOC
|
||||||
|
@ -223,74 +85,14 @@
|
||||||
#js {:flex 0})
|
#js {:flex 0})
|
||||||
(fn [] views/toasts))
|
(fn [] views/toasts))
|
||||||
|
|
||||||
(re-frame/reg-fx :show-toasts
|
;;;; Bottom sheet
|
||||||
(fn []
|
|
||||||
(show-overlay "toasts"
|
|
||||||
{:overlay {:interceptTouchOutside false}
|
|
||||||
:layout {:componentBackgroundColor :transparent
|
|
||||||
:orientation ["portrait"]}})))
|
|
||||||
(re-frame/reg-fx :hide-toasts (fn [] (dissmiss-overlay "toasts")))
|
|
||||||
|
|
||||||
;; bottom sheet
|
(navigation/register-component
|
||||||
(navigation/register-component "bottom-sheet"
|
"bottom-sheet"
|
||||||
(fn [] (gesture/gesture-handler-root-hoc views/bottom-sheet))
|
(fn [] (gesture/gesture-handler-root-hoc views/bottom-sheet))
|
||||||
(fn [] views/bottom-sheet))
|
(fn [] views/bottom-sheet))
|
||||||
|
|
||||||
(re-frame/reg-fx :show-bottom-sheet (fn [] (show-overlay "bottom-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-bottom-sheet (fn [] (dissmiss-overlay "bottom-sheet")))
|
|
||||||
|
|
||||||
;; MERGE OPTIONS
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:merge-options
|
|
||||||
(fn [{:keys [id options]}]
|
|
||||||
(navigation/merge-options id options)))
|
|
||||||
|
|
||||||
;; LEGACY (should be removed in status 2.0)
|
;; LEGACY (should be removed in status 2.0)
|
||||||
(defn get-screen-component
|
|
||||||
[component]
|
|
||||||
(let [{:keys [options]} (get views/screens component)]
|
|
||||||
{:component {:id component
|
|
||||||
:name component
|
|
||||||
:options (merge (options/statusbar-and-navbar)
|
|
||||||
options
|
|
||||||
(options/merge-top-bar (options/topbar-options) options))}}))
|
|
||||||
|
|
||||||
(re-frame/reg-fx
|
|
||||||
:set-stack-root-fx
|
|
||||||
(fn [[stack component]]
|
|
||||||
;; We don't have bottom tabs as separate stacks anymore,. So the old way of pushing screens in
|
|
||||||
;; specific tabs will not work. Disabled set-stack-root for :shell-stack as it is not working
|
|
||||||
;; and currently only being used for browser and some rare keycard flows after login
|
|
||||||
(when-not (= @state/root-id :shell-stack)
|
|
||||||
(log/debug :set-stack-root-fx stack component)
|
|
||||||
(navigation/set-stack-root
|
|
||||||
(name stack)
|
|
||||||
(if (vector? component)
|
|
||||||
(mapv get-screen-component component)
|
|
||||||
(get-screen-component component))))))
|
|
||||||
|
|
||||||
(re-frame/reg-fx :show-popover (fn [] (show-overlay "popover")))
|
|
||||||
(re-frame/reg-fx :hide-popover (fn [] (dissmiss-overlay "popover")))
|
|
||||||
(re-frame/reg-fx :show-visibility-status-popover
|
|
||||||
(fn [] (show-overlay "visibility-status-popover")))
|
|
||||||
(re-frame/reg-fx :hide-visibility-status-popover
|
|
||||||
(fn [] (dissmiss-overlay "visibility-status-popover")))
|
|
||||||
(re-frame/reg-fx :show-bottom-sheet-overlay-old (fn [] (show-overlay "bottom-sheet-old")))
|
|
||||||
(re-frame/reg-fx :dismiss-bottom-sheet-overlay-old (fn [] (dissmiss-overlay "bottom-sheet-old")))
|
|
||||||
(re-frame/reg-fx :show-wallet-connect-sheet (fn [] (show-overlay "wallet-connect-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-wallet-connect-sheet (fn [] (dissmiss-overlay "wallet-connect-sheet")))
|
|
||||||
(re-frame/reg-fx :show-wallet-connect-success-sheet
|
|
||||||
(fn [] (show-overlay "wallet-connect-success-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-wallet-connect-success-sheet
|
|
||||||
(fn [] (dissmiss-overlay "wallet-connect-success-sheet")))
|
|
||||||
(re-frame/reg-fx :show-wallet-connect-app-management-sheet
|
|
||||||
(fn [] (show-overlay "wallet-connect-app-management-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-wallet-connect-app-management-sheet
|
|
||||||
(fn [] (dissmiss-overlay "wallet-connect-app-management-sheet")))
|
|
||||||
(re-frame/reg-fx :show-signing-sheet (fn [] (show-overlay "signing-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-signing-sheet (fn [] (dissmiss-overlay "signing-sheet")))
|
|
||||||
(re-frame/reg-fx :show-select-acc-sheet (fn [] (show-overlay "select-acc-sheet")))
|
|
||||||
(re-frame/reg-fx :hide-select-acc-sheet (fn [] (dissmiss-overlay "select-acc-sheet")))
|
|
||||||
|
|
||||||
(defonce
|
(defonce
|
||||||
_
|
_
|
||||||
|
|
|
@ -0,0 +1,248 @@
|
||||||
|
(ns status-im2.navigation.effects
|
||||||
|
(:require
|
||||||
|
[react-native.navigation :as navigation]
|
||||||
|
[status-im2.navigation.options :as options]
|
||||||
|
[status-im2.navigation.roots :as roots]
|
||||||
|
[status-im2.navigation.state :as state]
|
||||||
|
[status-im2.navigation.view :as views]
|
||||||
|
[taoensso.timbre :as log]
|
||||||
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
|
(rf/reg-fx :set-view-id-fx
|
||||||
|
(fn [view-id]
|
||||||
|
(rf/dispatch [:screens/on-will-focus view-id])
|
||||||
|
(when-let [{:keys [on-focus]} (get views/screens view-id)]
|
||||||
|
(when on-focus
|
||||||
|
(rf/dispatch on-focus)))))
|
||||||
|
|
||||||
|
(defn set-view-id
|
||||||
|
[view-id]
|
||||||
|
(when (get views/screens view-id)
|
||||||
|
(rf/dispatch [:set-view-id view-id])))
|
||||||
|
|
||||||
|
(defn- dismiss-all-modals
|
||||||
|
[]
|
||||||
|
(when @state/curr-modal
|
||||||
|
(reset! state/curr-modal false)
|
||||||
|
(reset! state/dissmissing true)
|
||||||
|
(doseq [modal @state/modals]
|
||||||
|
(navigation/dismiss-modal (name modal)))
|
||||||
|
(reset! state/modals [])))
|
||||||
|
|
||||||
|
;;;; Root
|
||||||
|
|
||||||
|
(rf/reg-fx :set-root
|
||||||
|
(fn [root-id]
|
||||||
|
(let [root (get (roots/roots) root-id)]
|
||||||
|
(dismiss-all-modals)
|
||||||
|
(rf/dispatch [:profile.settings/switch-theme
|
||||||
|
(get roots/themes root-id)
|
||||||
|
root-id])
|
||||||
|
(reset! state/root-id (or (get-in root [:root :stack :id]) root-id))
|
||||||
|
(navigation/set-root root))))
|
||||||
|
|
||||||
|
;;;; Navigate to
|
||||||
|
|
||||||
|
(defn- navigate
|
||||||
|
[component]
|
||||||
|
(let [{:keys [options]} (get views/screens component)]
|
||||||
|
(dismiss-all-modals)
|
||||||
|
(navigation/push
|
||||||
|
(name @state/root-id)
|
||||||
|
{:component {:id component
|
||||||
|
:name component
|
||||||
|
:options (merge (options/default-root)
|
||||||
|
(options/statusbar-and-navbar)
|
||||||
|
options
|
||||||
|
(if (:topBar options)
|
||||||
|
(options/merge-top-bar (options/topbar-options) options)
|
||||||
|
{:topBar {:visible false}}))}})))
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-to navigate)
|
||||||
|
|
||||||
|
;;;; Navigate to within stack
|
||||||
|
|
||||||
|
(defn- navigate-to-within-stack
|
||||||
|
[[component comp-id]]
|
||||||
|
(let [{:keys [options]} (get views/screens component)]
|
||||||
|
(navigation/push
|
||||||
|
(name comp-id)
|
||||||
|
{:component {:id component
|
||||||
|
:name component
|
||||||
|
:options (merge (options/statusbar-and-navbar)
|
||||||
|
options
|
||||||
|
(if (:topBar options)
|
||||||
|
(options/merge-top-bar (options/topbar-options) options)
|
||||||
|
{:topBar {:visible false}}))}})))
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-to-within-stack navigate-to-within-stack)
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-replace-fx
|
||||||
|
(fn [view-id]
|
||||||
|
(navigation/pop (name @state/root-id))
|
||||||
|
(navigate view-id)))
|
||||||
|
|
||||||
|
(defn dismiss-modal
|
||||||
|
([] (dismiss-modal nil))
|
||||||
|
([comp-id]
|
||||||
|
(reset! state/dissmissing true)
|
||||||
|
(navigation/dismiss-modal (name (or comp-id (last @state/modals))))))
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-back
|
||||||
|
(fn []
|
||||||
|
(if @state/curr-modal
|
||||||
|
(dismiss-modal)
|
||||||
|
(navigation/pop (name @state/root-id)))))
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-back-within-stack
|
||||||
|
(fn [comp-id]
|
||||||
|
(navigation/pop (name comp-id))))
|
||||||
|
|
||||||
|
(rf/reg-fx :navigate-back-to
|
||||||
|
(fn [comp-id]
|
||||||
|
(navigation/pop-to (name comp-id))))
|
||||||
|
|
||||||
|
(rf/reg-fx :dismiss-modal
|
||||||
|
(fn [comp-id]
|
||||||
|
(dismiss-modal (name comp-id))))
|
||||||
|
|
||||||
|
(defn- pop-to-root
|
||||||
|
[root-id]
|
||||||
|
(navigation/pop-to-root root-id)
|
||||||
|
(dismiss-all-modals))
|
||||||
|
|
||||||
|
(rf/reg-fx :pop-to-root-fx pop-to-root)
|
||||||
|
|
||||||
|
;;;; Modal
|
||||||
|
|
||||||
|
(defn open-modal
|
||||||
|
[component]
|
||||||
|
(let [{:keys [options]} (get views/screens component)
|
||||||
|
sheet? (:sheet? options)]
|
||||||
|
(if @state/dissmissing
|
||||||
|
(reset! state/dissmissing component)
|
||||||
|
(do
|
||||||
|
(reset! state/curr-modal true)
|
||||||
|
(swap! state/modals conj component)
|
||||||
|
(navigation/show-modal
|
||||||
|
{:stack {:children [{:component
|
||||||
|
{:name component
|
||||||
|
:id component
|
||||||
|
:options (merge (options/default-root)
|
||||||
|
(options/statusbar-and-navbar)
|
||||||
|
options
|
||||||
|
(when sheet?
|
||||||
|
options/sheet-options))}}]}})))))
|
||||||
|
|
||||||
|
(rf/reg-fx :open-modal-fx open-modal)
|
||||||
|
|
||||||
|
;;;; Overlay
|
||||||
|
|
||||||
|
(defn show-overlay
|
||||||
|
([component] (show-overlay component {}))
|
||||||
|
([component opts]
|
||||||
|
(navigation/dissmiss-overlay component)
|
||||||
|
(navigation/show-overlay
|
||||||
|
{:component {:name component
|
||||||
|
:id component
|
||||||
|
:options (merge (options/statusbar)
|
||||||
|
{:layout {:componentBackgroundColor :transparent
|
||||||
|
:orientation ["portrait"]}
|
||||||
|
:overlay {:interceptTouchOutside true}}
|
||||||
|
opts)}})))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-toasts
|
||||||
|
(fn []
|
||||||
|
(show-overlay "toasts"
|
||||||
|
{:overlay {:interceptTouchOutside false}
|
||||||
|
:layout {:componentBackgroundColor :transparent
|
||||||
|
:orientation ["portrait"]}})))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-toasts
|
||||||
|
(fn [] (navigation/dissmiss-overlay "toasts")))
|
||||||
|
|
||||||
|
;;;; Bottom sheet
|
||||||
|
|
||||||
|
(rf/reg-fx :show-bottom-sheet
|
||||||
|
(fn [] (show-overlay "bottom-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-bottom-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "bottom-sheet")))
|
||||||
|
|
||||||
|
;;;; Merge options
|
||||||
|
|
||||||
|
(rf/reg-fx :merge-options
|
||||||
|
(fn [{:keys [id options]}]
|
||||||
|
(navigation/merge-options id options)))
|
||||||
|
|
||||||
|
;;;; Legacy (should be removed in status 2.0)
|
||||||
|
|
||||||
|
(defn- get-screen-component
|
||||||
|
[component]
|
||||||
|
(let [{:keys [options]} (get views/screens component)]
|
||||||
|
{:component {:id component
|
||||||
|
:name component
|
||||||
|
:options (merge (options/statusbar-and-navbar)
|
||||||
|
options
|
||||||
|
(options/merge-top-bar (options/topbar-options) options))}}))
|
||||||
|
|
||||||
|
(rf/reg-fx :set-stack-root-fx
|
||||||
|
(fn [[stack component]]
|
||||||
|
;; We don't have bottom tabs as separate stacks anymore,. So the old way of pushing screens in
|
||||||
|
;; specific tabs will not work. Disabled set-stack-root for :shell-stack as it is not working
|
||||||
|
;; and currently only being used for browser and some rare keycard flows after login
|
||||||
|
(when-not (= @state/root-id :shell-stack)
|
||||||
|
(log/debug :set-stack-root-fx stack component)
|
||||||
|
(navigation/set-stack-root
|
||||||
|
(name stack)
|
||||||
|
(if (vector? component)
|
||||||
|
(mapv get-screen-component component)
|
||||||
|
(get-screen-component component))))))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-popover
|
||||||
|
(fn [] (show-overlay "popover")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-popover
|
||||||
|
(fn [] (navigation/dissmiss-overlay "popover")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-visibility-status-popover
|
||||||
|
(fn [] (show-overlay "visibility-status-popover")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-visibility-status-popover
|
||||||
|
(fn [] (navigation/dissmiss-overlay "visibility-status-popover")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-bottom-sheet-overlay-old
|
||||||
|
(fn [] (show-overlay "bottom-sheet-old")))
|
||||||
|
|
||||||
|
(rf/reg-fx :dismiss-bottom-sheet-overlay-old
|
||||||
|
(fn [] (navigation/dissmiss-overlay "bottom-sheet-old")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-wallet-connect-sheet
|
||||||
|
(fn [] (show-overlay "wallet-connect-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-wallet-connect-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "wallet-connect-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-wallet-connect-success-sheet
|
||||||
|
(fn [] (show-overlay "wallet-connect-success-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-wallet-connect-success-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "wallet-connect-success-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-wallet-connect-app-management-sheet
|
||||||
|
(fn [] (show-overlay "wallet-connect-app-management-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-wallet-connect-app-management-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "wallet-connect-app-management-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-signing-sheet
|
||||||
|
(fn [] (show-overlay "signing-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-signing-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "signing-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :show-select-acc-sheet
|
||||||
|
(fn [] (show-overlay "select-acc-sheet")))
|
||||||
|
|
||||||
|
(rf/reg-fx :hide-select-acc-sheet
|
||||||
|
(fn [] (navigation/dissmiss-overlay "select-acc-sheet")))
|
|
@ -65,7 +65,7 @@
|
||||||
(dissoc :shell/floating-screens)
|
(dissoc :shell/floating-screens)
|
||||||
(dissoc :shell/loaded-screens)
|
(dissoc :shell/loaded-screens)
|
||||||
(assoc :view-id (or @shell.state/selected-stack-id :shell)))
|
(assoc :view-id (or @shell.state/selected-stack-id :shell)))
|
||||||
:shell/pop-to-root-fx nil})
|
:effects.shell/pop-to-root nil})
|
||||||
|
|
||||||
(rf/defn init-root
|
(rf/defn init-root
|
||||||
{:events [:init-root]}
|
{:events [:init-root]}
|
||||||
|
@ -81,7 +81,7 @@
|
||||||
{:events [:navigate-change-tab]}
|
{:events [:navigate-change-tab]}
|
||||||
[{:keys [db]} stack-id]
|
[{:keys [db]} stack-id]
|
||||||
{:db (assoc db :view-id stack-id)
|
{:db (assoc db :view-id stack-id)
|
||||||
:shell/change-tab-fx stack-id})
|
:effects.shell/change-tab stack-id})
|
||||||
|
|
||||||
(rf/defn navigate-replace
|
(rf/defn navigate-replace
|
||||||
{:events [:navigate-replace]}
|
{:events [:navigate-replace]}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
(:require
|
(:require
|
||||||
[clojure.string :as string]
|
[clojure.string :as string]
|
||||||
[re-frame.core :as re-frame]
|
[re-frame.core :as re-frame]
|
||||||
[status-im2.common.alert.events :as alert]
|
[status-im2.common.alert.effects :as alert.effects]
|
||||||
[utils.i18n :as i18n]))
|
[utils.i18n :as i18n]))
|
||||||
|
|
||||||
;; Error handling code based on https://gist.github.com/pesterhazy/e6846be1b6712a9038537022d131ce46
|
;; Error handling code based on https://gist.github.com/pesterhazy/e6846be1b6712a9038537022d131ce46
|
||||||
|
@ -62,7 +62,7 @@
|
||||||
(if js/goog.DEBUG
|
(if js/goog.DEBUG
|
||||||
(some-> orig-handler
|
(some-> orig-handler
|
||||||
(.call nil e isFatal))
|
(.call nil e isFatal))
|
||||||
(alert/show-confirmation
|
(alert.effects/show-confirmation
|
||||||
{:title "Error"
|
{:title "Error"
|
||||||
:content (.-message e)
|
:content (.-message e)
|
||||||
:confirm-button-text (i18n/label :t/send-logs)
|
:confirm-button-text (i18n/label :t/send-logs)
|
||||||
|
|
Loading…
Reference in New Issue