Skip to content

Commit

Permalink
fix: community permission context not passing community-id (#19669)
Browse files Browse the repository at this point in the history
Signed-off-by: Cristian Lungu <[email protected]>
  • Loading branch information
clauxx authored Apr 30, 2024
1 parent 65b0d1c commit d8e3934
Showing 1 changed file with 14 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,24 @@

(defn view
[{:keys [contact-id]}]
(let [customization-color (rf/sub [:profile/customization-color])
[primary-name _] (rf/sub [:contacts/contact-two-names-by-identity
contact-id])
{:keys [contact-request-state]} (rf/sub [:chats/current-chat-chat-view])
chat-type (rf/sub [:chats/chat-type])
contact-request-send? (or (not contact-request-state)
(= contact-request-state
constants/contact-request-state-none))
contact-request-received? (= contact-request-state
constants/contact-request-state-received)
contact-request-pending? (= contact-request-state
constants/contact-request-state-sent)]
(let [customization-color (rf/sub [:profile/customization-color])
[primary-name _] (rf/sub [:contacts/contact-two-names-by-identity
contact-id])
{:keys [contact-request-state community-id]} (rf/sub [:chats/current-chat-chat-view])
chat-type (rf/sub [:chats/chat-type])
contact-request-send? (or (not contact-request-state)
(= contact-request-state
constants/contact-request-state-none))
contact-request-received? (= contact-request-state
constants/contact-request-state-received)
contact-request-pending? (= contact-request-state
constants/contact-request-state-sent)]
[rn/view {:style style/container}
[quo/permission-context
{:blur? true
:on-press (condp = chat-type
:community-chat #(rf/dispatch [:navigate-to :community-account-selection])
:community-chat #(rf/dispatch [:open-modal :community-account-selection-sheet
{:community-id community-id}])
#(rf/dispatch [:chat.ui/show-profile contact-id]))
:type :action
:action-icon (cond
Expand Down

0 comments on commit d8e3934

Please sign in to comment.