parent
ed53fecf47
commit
6f3bf98e83
|
@ -3,8 +3,10 @@
|
|||
["react-native-share" :default react-native-share]))
|
||||
|
||||
(defn open
|
||||
[options on-success on-error]
|
||||
(-> ^js react-native-share
|
||||
(.open (clj->js options))
|
||||
(.then on-success)
|
||||
(.catch on-error)))
|
||||
([options]
|
||||
(open options #() #()))
|
||||
([options on-success on-error]
|
||||
(-> ^js react-native-share
|
||||
(.open (clj->js options))
|
||||
(.then on-success)
|
||||
(.catch on-error))))
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
(:require
|
||||
[quo.core :as quo]
|
||||
[react-native.core :as rn]
|
||||
[react-native.platform :as platform]
|
||||
[react-native.share :as share]
|
||||
[status-im2.contexts.profile.utils :as profile.utils]
|
||||
[status-im2.contexts.wallet.account.tabs.about.style :as style]
|
||||
[utils.i18n :as i18n]
|
||||
|
@ -9,28 +11,45 @@
|
|||
|
||||
(defn about-options
|
||||
[]
|
||||
[quo/action-drawer
|
||||
[[{:icon :i/link
|
||||
:accessibility-label :view-on-eth
|
||||
:label (i18n/label :t/view-on-eth)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/link
|
||||
:accessibility-label :view-on-opt
|
||||
:label (i18n/label :t/view-on-opt)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/link
|
||||
:accessibility-label :view-on-arb
|
||||
:label (i18n/label :t/view-on-arb)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/copy
|
||||
:accessibility-label :copy-address
|
||||
:label (i18n/label :t/copy-address)}
|
||||
{:icon :i/qr-code
|
||||
:accessibility-label :show-address-qr
|
||||
:label (i18n/label :t/show-address-qr)}
|
||||
{:icon :i/share
|
||||
:accessibility-label :share-address
|
||||
:label (i18n/label :t/share-address)}]]])
|
||||
(let [{:keys [address] :as account} (rf/sub [:wallet/current-viewing-account])
|
||||
share-title (str (:name account) " " (i18n/label :t/address))]
|
||||
[quo/action-drawer
|
||||
[[{:icon :i/link
|
||||
:accessibility-label :view-on-eth
|
||||
:label (i18n/label :t/view-on-eth)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/link
|
||||
:accessibility-label :view-on-opt
|
||||
:label (i18n/label :t/view-on-opt)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/link
|
||||
:accessibility-label :view-on-arb
|
||||
:label (i18n/label :t/view-on-arb)
|
||||
:right-icon :i/external}
|
||||
{:icon :i/copy
|
||||
:accessibility-label :copy-address
|
||||
:label (i18n/label :t/copy-address)}
|
||||
{:icon :i/qr-code
|
||||
:accessibility-label :show-address-qr
|
||||
:label (i18n/label :t/show-address-qr)}
|
||||
{:icon :i/share
|
||||
:accessibility-label :share-address
|
||||
:label (i18n/label :t/share-address)
|
||||
:on-press (fn []
|
||||
(rf/dispatch [:hide-bottom-sheet])
|
||||
(js/setTimeout
|
||||
#(share/open
|
||||
(if platform/ios?
|
||||
{:activityItemSources [{:placeholderItem {:type "text"
|
||||
:content address}
|
||||
:item {:default {:type "text"
|
||||
:content
|
||||
address}}
|
||||
:linkMetadata {:title share-title}}]}
|
||||
{:title share-title
|
||||
:subject share-title
|
||||
:message address}))
|
||||
600))}]]]))
|
||||
|
||||
(defn view
|
||||
[]
|
||||
|
|
Loading…
Reference in New Issue