fix multiple set view-id events dispatched (#19083)
This commit is contained in:
parent
62f68ff44b
commit
e771d056a0
|
@ -21,6 +21,7 @@
|
||||||
[status-im.contexts.profile.push-notifications.events :as notifications]
|
[status-im.contexts.profile.push-notifications.events :as notifications]
|
||||||
[status-im.contexts.shell.jump-to.state :as shell.state]
|
[status-im.contexts.shell.jump-to.state :as shell.state]
|
||||||
[status-im.contexts.shell.jump-to.utils :as shell.utils]
|
[status-im.contexts.shell.jump-to.utils :as shell.utils]
|
||||||
|
[status-im.navigation.core :as navigation]
|
||||||
status-im.contexts.wallet.signals
|
status-im.contexts.wallet.signals
|
||||||
status-im.events
|
status-im.events
|
||||||
status-im.navigation.core
|
status-im.navigation.core
|
||||||
|
@ -44,7 +45,7 @@
|
||||||
|
|
||||||
(defn init
|
(defn init
|
||||||
[]
|
[]
|
||||||
|
(navigation/init)
|
||||||
(native-module/init #(re-frame/dispatch [:signals/signal-received %]))
|
(native-module/init #(re-frame/dispatch [:signals/signal-received %]))
|
||||||
(when platform/android?
|
(when platform/android?
|
||||||
(native-module/set-soft-input-mode adjust-resize))
|
(native-module/set-soft-input-mode adjust-resize))
|
||||||
|
|
|
@ -11,86 +11,88 @@
|
||||||
[status-im.navigation.view :as views]
|
[status-im.navigation.view :as views]
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
|
||||||
(navigation/set-lazy-component-registrator
|
(defn init
|
||||||
(fn [screen-key]
|
[]
|
||||||
(let [screen (views/screen screen-key)]
|
(navigation/set-lazy-component-registrator
|
||||||
(navigation/register-component screen-key
|
(fn [screen-key]
|
||||||
(fn [] (gesture/gesture-handler-root-hoc screen))
|
(let [screen (views/screen screen-key)]
|
||||||
(fn [] screen)))))
|
(navigation/register-component screen-key
|
||||||
|
(fn [] (gesture/gesture-handler-root-hoc screen))
|
||||||
|
(fn [] screen)))))
|
||||||
|
|
||||||
;; APP LAUNCHED
|
;; APP LAUNCHED
|
||||||
(navigation/reg-app-launched-listener
|
(navigation/reg-app-launched-listener
|
||||||
(fn []
|
(fn []
|
||||||
(navigation/set-default-options options/default-options)
|
(navigation/set-default-options options/default-options)
|
||||||
(reset! state/curr-modal false)
|
(reset! state/curr-modal false)
|
||||||
(reset! state/dissmissing false)
|
|
||||||
(re-frame/dispatch [:bottom-sheet-hidden])
|
|
||||||
(if (= @state/root-id :multiaccounts-stack)
|
|
||||||
(re-frame/dispatch-sync [:set-multiaccount-root])
|
|
||||||
(when @state/root-id
|
|
||||||
(reset! theme/device-theme (rn/get-color-scheme))
|
|
||||||
(re-frame/dispatch [:init-root @state/root-id])
|
|
||||||
(re-frame/dispatch [:chat/check-last-chat])))
|
|
||||||
(rn/hide-splash-screen)))
|
|
||||||
|
|
||||||
(navigation/reg-component-did-appear-listener
|
|
||||||
(fn [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 only for active one
|
|
||||||
(when (and @state/curr-modal (= @state/curr-modal view-id))
|
|
||||||
(effects/set-view-id view-id))
|
|
||||||
(when-not @state/curr-modal
|
|
||||||
(effects/set-view-id view-id)
|
|
||||||
(reset! state/pushed-screen-id view-id)))))
|
|
||||||
|
|
||||||
;;;; Modal
|
|
||||||
|
|
||||||
(navigation/reg-button-pressed-listener
|
|
||||||
(fn [id]
|
|
||||||
(if (= "dismiss-modal" id)
|
|
||||||
(do
|
|
||||||
(when-let [event (get-in views/screens [(last @state/modals) :on-dissmiss])]
|
|
||||||
(rf/dispatch event))
|
|
||||||
(effects/dismiss-modal))
|
|
||||||
(when-let [handler (get-in views/screens [(keyword id) :right-handler])]
|
|
||||||
(handler)))))
|
|
||||||
|
|
||||||
(navigation/reg-modal-dismissed-listener
|
|
||||||
(fn []
|
|
||||||
(if (> (count @state/modals) 1)
|
|
||||||
(let [new-modals (butlast @state/modals)]
|
|
||||||
(reset! state/modals (vec new-modals))
|
|
||||||
(effects/set-view-id (last new-modals)))
|
|
||||||
(do
|
|
||||||
(reset! state/modals [])
|
|
||||||
(reset! state/curr-modal false)
|
|
||||||
(effects/set-view-id @state/pushed-screen-id)))
|
|
||||||
|
|
||||||
(let [component @state/dissmissing]
|
|
||||||
(reset! state/dissmissing false)
|
(reset! state/dissmissing false)
|
||||||
(when (keyword? component)
|
(re-frame/dispatch [:bottom-sheet-hidden])
|
||||||
(effects/open-modal component)))))
|
(if (= @state/root-id :multiaccounts-stack)
|
||||||
|
(re-frame/dispatch-sync [:set-multiaccount-root])
|
||||||
|
(when @state/root-id
|
||||||
|
(reset! theme/device-theme (rn/get-color-scheme))
|
||||||
|
(re-frame/dispatch [:init-root @state/root-id])
|
||||||
|
(re-frame/dispatch [:chat/check-last-chat])))
|
||||||
|
(rn/hide-splash-screen)))
|
||||||
|
|
||||||
;;;; Toast
|
(navigation/reg-component-did-appear-listener
|
||||||
|
(fn [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 only for active one
|
||||||
|
(when (and @state/curr-modal (= @state/curr-modal view-id))
|
||||||
|
(effects/set-view-id view-id))
|
||||||
|
(when-not @state/curr-modal
|
||||||
|
(effects/set-view-id view-id)
|
||||||
|
(reset! state/pushed-screen-id view-id)))))
|
||||||
|
|
||||||
(navigation/register-component
|
;;;; Modal
|
||||||
"toasts"
|
|
||||||
; `:flex 0` is the same as `flex: 0 0 auto` in CSS.
|
|
||||||
; We need this to override the HOC default layout which is
|
|
||||||
; flex 1. If we don't override this property, this HOC
|
|
||||||
; will catch all touches/gestures while the toast is shown,
|
|
||||||
; preventing the user doing any action in the app
|
|
||||||
#(gesture/gesture-handler-root-hoc views/toasts
|
|
||||||
#js {:flex 0})
|
|
||||||
(fn [] views/toasts))
|
|
||||||
|
|
||||||
;;;; Bottom sheet
|
(navigation/reg-button-pressed-listener
|
||||||
|
(fn [id]
|
||||||
|
(if (= "dismiss-modal" id)
|
||||||
|
(do
|
||||||
|
(when-let [event (get-in views/screens [(last @state/modals) :on-dissmiss])]
|
||||||
|
(rf/dispatch event))
|
||||||
|
(effects/dismiss-modal))
|
||||||
|
(when-let [handler (get-in views/screens [(keyword id) :right-handler])]
|
||||||
|
(handler)))))
|
||||||
|
|
||||||
(navigation/register-component
|
(navigation/reg-modal-dismissed-listener
|
||||||
"bottom-sheet"
|
(fn []
|
||||||
(fn [] (gesture/gesture-handler-root-hoc views/bottom-sheet))
|
(if (> (count @state/modals) 1)
|
||||||
(fn [] views/bottom-sheet))
|
(let [new-modals (butlast @state/modals)]
|
||||||
|
(reset! state/modals (vec new-modals))
|
||||||
|
(effects/set-view-id (last new-modals)))
|
||||||
|
(do
|
||||||
|
(reset! state/modals [])
|
||||||
|
(reset! state/curr-modal false)
|
||||||
|
(effects/set-view-id @state/pushed-screen-id)))
|
||||||
|
|
||||||
|
(let [component @state/dissmissing]
|
||||||
|
(reset! state/dissmissing false)
|
||||||
|
(when (keyword? component)
|
||||||
|
(effects/open-modal component)))))
|
||||||
|
|
||||||
|
;;;; Toast
|
||||||
|
|
||||||
|
(navigation/register-component
|
||||||
|
"toasts"
|
||||||
|
; `:flex 0` is the same as `flex: 0 0 auto` in CSS.
|
||||||
|
; We need this to override the HOC default layout which is
|
||||||
|
; flex 1. If we don't override this property, this HOC
|
||||||
|
; will catch all touches/gestures while the toast is shown,
|
||||||
|
; preventing the user doing any action in the app
|
||||||
|
#(gesture/gesture-handler-root-hoc views/toasts
|
||||||
|
#js {:flex 0})
|
||||||
|
(fn [] views/toasts))
|
||||||
|
|
||||||
|
;;;; Bottom sheet
|
||||||
|
|
||||||
|
(navigation/register-component
|
||||||
|
"bottom-sheet"
|
||||||
|
(fn [] (gesture/gesture-handler-root-hoc views/bottom-sheet))
|
||||||
|
(fn [] views/bottom-sheet)))
|
||||||
|
|
||||||
;; LEGACY (should be removed in status 2.0)
|
;; LEGACY (should be removed in status 2.0)
|
||||||
|
|
||||||
|
|
|
@ -129,12 +129,11 @@
|
||||||
|
|
||||||
(defn open-modal
|
(defn open-modal
|
||||||
[component]
|
[component]
|
||||||
(let [{:keys [options name]} (get views/screens component)
|
(let [{:keys [options]} (get views/screens component)
|
||||||
sheet? (:sheet? options)]
|
sheet? (:sheet? options)]
|
||||||
(if @state/dissmissing
|
(if @state/dissmissing
|
||||||
(reset! state/dissmissing component)
|
(reset! state/dissmissing component)
|
||||||
(do
|
(do
|
||||||
(set-view-id name) ; TODO https://github.com/status-im/status-mobile/issues/18811
|
|
||||||
(reset! state/curr-modal true)
|
(reset! state/curr-modal true)
|
||||||
(swap! state/modals conj component)
|
(swap! state/modals conj component)
|
||||||
(navigation/show-modal
|
(navigation/show-modal
|
||||||
|
|
Loading…
Reference in New Issue