[#12467] Remove default action icon in message actions list
This commit is contained in:
parent
37d893d5f8
commit
3409ccab27
|
@ -494,8 +494,10 @@
|
||||||
(on-long-press
|
(on-long-press
|
||||||
(concat
|
(concat
|
||||||
[{:on-press #(re-frame/dispatch [:chat.ui/reply-to-message message])
|
[{:on-press #(re-frame/dispatch [:chat.ui/reply-to-message message])
|
||||||
|
:id :reply
|
||||||
:label (i18n/label :t/message-reply)}
|
:label (i18n/label :t/message-reply)}
|
||||||
{:on-press #(react/copy-to-clipboard (get content :text))
|
{:on-press #(react/copy-to-clipboard (get content :text))
|
||||||
|
:id :copy
|
||||||
:label (i18n/label :t/sharing-copy-to-clipboard)}]
|
:label (i18n/label :t/sharing-copy-to-clipboard)}]
|
||||||
(when message-pin-enabled [{:on-press #(pin-message message)
|
(when message-pin-enabled [{:on-press #(pin-message message)
|
||||||
:label (if pinned (i18n/label :t/unpin) (i18n/label :t/pin))}]))))})
|
:label (if pinned (i18n/label :t/unpin) (i18n/label :t/pin))}]))))})
|
||||||
|
@ -544,8 +546,10 @@
|
||||||
:on-long-press (fn []
|
:on-long-press (fn []
|
||||||
(on-long-press
|
(on-long-press
|
||||||
[{:on-press #(re-frame/dispatch [:chat.ui/reply-to-message message])
|
[{:on-press #(re-frame/dispatch [:chat.ui/reply-to-message message])
|
||||||
|
:id :reply
|
||||||
:label (i18n/label :t/message-reply)}
|
:label (i18n/label :t/message-reply)}
|
||||||
{:on-press #(re-frame/dispatch [:chat.ui/save-image-to-gallery (:image content)])
|
{:on-press #(re-frame/dispatch [:chat.ui/save-image-to-gallery (:image content)])
|
||||||
|
:id :save
|
||||||
:label (i18n/label :t/save)}]))}]
|
:label (i18n/label :t/save)}]))}]
|
||||||
reaction-picker])
|
reaction-picker])
|
||||||
|
|
||||||
|
|
|
@ -51,9 +51,9 @@
|
||||||
[rn/view {:style (styles/quick-actions-row)}
|
[rn/view {:style (styles/quick-actions-row)}
|
||||||
[quo/text {:color (if (= id "delete") :negative :link)
|
[quo/text {:color (if (= id "delete") :negative :link)
|
||||||
:weight :medium} label]
|
:weight :medium} label]
|
||||||
;; fallback to warning icon if id to icon mapping is not defined
|
(when-let [icon (get id-icon id)]
|
||||||
[icons/icon (get id-icon id :main-icons/warning)
|
[icons/icon icon
|
||||||
{:color (if (= id "delete") :red :blue)}]]])])])
|
{:color (if (= id "delete") :red :blue)}])]])])])
|
||||||
|
|
||||||
(def modal
|
(def modal
|
||||||
(reagent/adapt-react-class
|
(reagent/adapt-react-class
|
||||||
|
|
Loading…
Reference in New Issue