Sometimes toast about old join community notification starts appearing on every login (#19557)
This commit is contained in:
parent
7eaa5f6bb1
commit
06aa4671b6
|
@ -217,6 +217,7 @@ GEM
|
|||
|
||||
PLATFORMS
|
||||
arm64-darwin-22
|
||||
x86_64-darwin-22
|
||||
|
||||
DEPENDENCIES
|
||||
activesupport (>= 6.1.7.3, < 7.1.0)
|
||||
|
|
|
@ -488,3 +488,5 @@
|
|||
(def ^:const alert-banner-height 40)
|
||||
|
||||
(def ^:const status-hostname "status.app")
|
||||
|
||||
(def ^:const community-joined-notification-type "communityJoined")
|
||||
|
|
|
@ -59,16 +59,11 @@
|
|||
|
||||
(defn- handle-my-request
|
||||
[db {:keys [community-id state deleted] :as request}]
|
||||
(let [{:keys [name]} (get-in db [:communities community-id])]
|
||||
(cond (and (= constants/community-request-to-join-state-pending state) (not deleted))
|
||||
(assoc-in db [:communities/my-pending-requests-to-join community-id] request)
|
||||
(and (= constants/community-request-to-join-state-accepted state) (not deleted))
|
||||
(do (rf/dispatch [:toasts/upsert
|
||||
{:id :joined-community
|
||||
:type :positive
|
||||
:text (i18n/label :t/joined-community {:community name})}])
|
||||
(update-in db [:communities/my-pending-requests-to-join] dissoc community-id))
|
||||
:else (update-in db [:communities/my-pending-requests-to-join] dissoc community-id))))
|
||||
(cond (and (= constants/community-request-to-join-state-pending state) (not deleted))
|
||||
(assoc-in db [:communities/my-pending-requests-to-join community-id] request)
|
||||
(and (= constants/community-request-to-join-state-accepted state) (not deleted))
|
||||
(update-in db [:communities/my-pending-requests-to-join] dissoc community-id)
|
||||
:else (update-in db [:communities/my-pending-requests-to-join] dissoc community-id)))
|
||||
|
||||
(defn handle-admin-request
|
||||
[db {:keys [id community-id deleted] :as request}]
|
||||
|
|
|
@ -2,9 +2,13 @@
|
|||
(:require
|
||||
[legacy.status-im.notifications.wallet :as notifications.wallet]
|
||||
[react-native.platform :as platform]
|
||||
[status-im.constants :as constants]
|
||||
status-im.contexts.profile.push-notifications.local.effects
|
||||
[utils.i18n :as i18n]
|
||||
[utils.re-frame :as rf]))
|
||||
|
||||
(def ^:private push-notification-types
|
||||
#{"transaction" "message"})
|
||||
|
||||
(defn foreground-chat?
|
||||
[{{:keys [current-chat-id view-id]} :db} chat-id]
|
||||
|
@ -21,6 +25,14 @@
|
|||
(or (= app-state "background")
|
||||
(not (foreground-chat? cofx chat-id))))))
|
||||
|
||||
(defn show-community-joined-toast
|
||||
[{:keys [bodyType title]}]
|
||||
(when (= bodyType constants/community-joined-notification-type)
|
||||
{:dispatch [:toasts/upsert
|
||||
{:id :joined-community
|
||||
:type :positive
|
||||
:text (i18n/label :t/joined-community {:community title})}]}))
|
||||
|
||||
(defn create-notification
|
||||
[cofx {:keys [bodyType] :as notification}]
|
||||
(assoc
|
||||
|
@ -32,7 +44,9 @@
|
|||
bodyType))
|
||||
|
||||
(rf/defn process
|
||||
[cofx event]
|
||||
(if platform/ios?
|
||||
{:effects/push-notifications-local-present-ios (create-notification nil event)}
|
||||
{:effects/push-notifications-local-present-android (create-notification cofx event)}))
|
||||
[cofx {:keys [bodyType] :as event}]
|
||||
(if (push-notification-types bodyType)
|
||||
(if platform/ios?
|
||||
{:effects/push-notifications-local-present-ios (create-notification nil event)}
|
||||
{:effects/push-notifications-local-present-android (create-notification cofx event)})
|
||||
(show-community-joined-toast event)))
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
||||
"owner": "status-im",
|
||||
"repo": "status-go",
|
||||
"version": "v0.179.0",
|
||||
"commit-sha1": "0db27a8be6b482c3d4687909e156e38654911f88",
|
||||
"src-sha256": "0qcdf90sz0y0486dsgjindanavilkh9czzijlk8r0zz867n5b896"
|
||||
"version": "v0.179.2",
|
||||
"commit-sha1": "18cc3a16d5db25e653e9f90add48a6807f6f96c5",
|
||||
"src-sha256": "1zswv57kd7z2ccad7kjad31a3f5dgj16g36wipb6xfd6qklkd54y"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue