chore: fix component tests and permission drawer preview (#14831)
This commit is contained in:
parent
f0272f2e77
commit
967c869486
1
Makefile
1
Makefile
|
@ -351,7 +351,6 @@ component-test: export COMPONENT_TEST := true
|
||||||
component-test: export BABEL_ENV := test
|
component-test: export BABEL_ENV := test
|
||||||
component-test: ##@test Run tests once in NodeJS
|
component-test: ##@test Run tests once in NodeJS
|
||||||
# Here we create the gyp bindings for nodejs
|
# Here we create the gyp bindings for nodejs
|
||||||
yarn install
|
|
||||||
yarn shadow-cljs compile component-test && \
|
yarn shadow-cljs compile component-test && \
|
||||||
jest --config=test/jest/jest.config.js
|
jest --config=test/jest/jest.config.js
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns quo2.components.drawers.--tests--.action-drawers-component-spec
|
(ns quo2.components.drawers.action-drawers.component-spec
|
||||||
(:require ["@testing-library/react-native" :as rtl]
|
(:require ["@testing-library/react-native" :as rtl]
|
||||||
[quo2.components.drawers.action-drawers :as action-drawer]
|
[quo2.components.drawers.action-drawers.view :as action-drawer]
|
||||||
[reagent.core :as reagent]))
|
[reagent.core :as reagent]))
|
||||||
|
|
||||||
(defn render-action-drawer
|
(defn render-action-drawer
|
|
@ -0,0 +1,41 @@
|
||||||
|
(ns quo2.components.drawers.action-drawers.style
|
||||||
|
(:require [quo2.foundations.colors :as colors]))
|
||||||
|
|
||||||
|
(def divider
|
||||||
|
{:border-top-width 1
|
||||||
|
:border-top-color (colors/theme-colors
|
||||||
|
colors/neutral-10
|
||||||
|
colors/neutral-90)
|
||||||
|
:margin-top 8
|
||||||
|
:margin-bottom 7
|
||||||
|
:align-items :center
|
||||||
|
:flex-direction :row})
|
||||||
|
|
||||||
|
(defn container
|
||||||
|
[sub-label]
|
||||||
|
{:border-radius 12
|
||||||
|
:height (if sub-label 58 50)
|
||||||
|
:margin-horizontal 8})
|
||||||
|
|
||||||
|
(defn row-container
|
||||||
|
[sub-label]
|
||||||
|
{:height (if sub-label 58 50)
|
||||||
|
:margin-horizontal 12
|
||||||
|
:flex-direction :row})
|
||||||
|
|
||||||
|
(def left-icon
|
||||||
|
{:height 20
|
||||||
|
:margin-top :auto
|
||||||
|
:margin-bottom :auto
|
||||||
|
:margin-right 12
|
||||||
|
:width 20})
|
||||||
|
|
||||||
|
(def text-container
|
||||||
|
{:flex 1
|
||||||
|
:justify-content :center})
|
||||||
|
|
||||||
|
(def right-icon
|
||||||
|
{:height 20
|
||||||
|
:margin-top :auto
|
||||||
|
:margin-bottom :auto
|
||||||
|
:width 20})
|
|
@ -1,8 +1,9 @@
|
||||||
(ns quo2.components.drawers.action-drawers
|
(ns quo2.components.drawers.action-drawers.view
|
||||||
(:require [quo2.components.icon :as icon]
|
(:require [quo2.components.icon :as icon]
|
||||||
[quo2.components.markdown.text :as text]
|
[quo2.components.markdown.text :as text]
|
||||||
[quo2.foundations.colors :as colors]
|
[quo2.foundations.colors :as colors]
|
||||||
[react-native.core :as rn]))
|
[react-native.core :as rn]
|
||||||
|
[quo2.components.drawers.action-drawers.style :as style]))
|
||||||
|
|
||||||
(defn- get-icon-color
|
(defn- get-icon-color
|
||||||
[danger?]
|
[danger?]
|
||||||
|
@ -12,14 +13,7 @@
|
||||||
|
|
||||||
(def divider
|
(def divider
|
||||||
[rn/view
|
[rn/view
|
||||||
{:style {:border-top-width 1
|
{:style style/divider
|
||||||
:border-top-color (colors/theme-colors
|
|
||||||
colors/neutral-10
|
|
||||||
colors/neutral-90)
|
|
||||||
:margin-top 8
|
|
||||||
:margin-bottom 7
|
|
||||||
:align-items :center
|
|
||||||
:flex-direction :row}
|
|
||||||
:accessible true
|
:accessible true
|
||||||
:accessibility-label :divider}])
|
:accessibility-label :divider}])
|
||||||
|
|
||||||
|
@ -38,32 +32,20 @@
|
||||||
(when add-divider? divider)
|
(when add-divider? divider)
|
||||||
[rn/touchable-highlight
|
[rn/touchable-highlight
|
||||||
{:accessibility-label accessibility-label
|
{:accessibility-label accessibility-label
|
||||||
:style {:border-radius 12
|
:style style/container
|
||||||
:height (if sub-label 58 50)
|
|
||||||
:margin-horizontal 8}
|
|
||||||
:underlay-color (colors/theme-colors colors/neutral-5 colors/neutral-90)
|
:underlay-color (colors/theme-colors colors/neutral-5 colors/neutral-90)
|
||||||
:on-press on-press}
|
:on-press on-press}
|
||||||
[rn/view
|
[rn/view
|
||||||
{:style
|
{:style style/row-container}
|
||||||
{:height (if sub-label 58 50)
|
|
||||||
:margin-horizontal 12
|
|
||||||
:flex-direction :row}}
|
|
||||||
[rn/view
|
[rn/view
|
||||||
{:accessibility-label :left-icon-for-action
|
{:accessibility-label :left-icon-for-action
|
||||||
:accessible true
|
:accessible true
|
||||||
:style
|
:style style/left-icon}
|
||||||
{:height 20
|
|
||||||
:margin-top :auto
|
|
||||||
:margin-bottom :auto
|
|
||||||
:margin-right 12
|
|
||||||
:width 20}}
|
|
||||||
[icon/icon icon
|
[icon/icon icon
|
||||||
{:color (get-icon-color danger?)
|
{:color (get-icon-color danger?)
|
||||||
:size 20}]]
|
:size 20}]]
|
||||||
[rn/view
|
[rn/view
|
||||||
{:style
|
{:style style/text-container}
|
||||||
{:flex 1
|
|
||||||
:justify-content :center}}
|
|
||||||
[text/text
|
[text/text
|
||||||
{:size :paragraph-1
|
{:size :paragraph-1
|
||||||
:weight :medium
|
:weight :medium
|
||||||
|
@ -79,11 +61,7 @@
|
||||||
sub-label])]
|
sub-label])]
|
||||||
(when right-icon
|
(when right-icon
|
||||||
[rn/view
|
[rn/view
|
||||||
{:style
|
{:style style/right-icon
|
||||||
{:height 20
|
|
||||||
:margin-top :auto
|
|
||||||
:margin-bottom :auto
|
|
||||||
:width 20}
|
|
||||||
:accessible true
|
:accessible true
|
||||||
:accessibility-label :right-icon-for-action}
|
:accessibility-label :right-icon-for-action}
|
||||||
[icon/icon right-icon
|
[icon/icon right-icon
|
|
@ -1,10 +1,10 @@
|
||||||
(ns quo2.components.drawers.permission-context.--tests--.permission-context-component-spec
|
(ns quo2.components.drawers.permission-context.component-spec
|
||||||
(:require [quo2.components.drawers.permission-context.view :as permission-context]
|
(:require [quo2.components.drawers.permission-context.view :as permission-context]
|
||||||
[react-native.core :as rn]
|
[react-native.core :as rn]
|
||||||
[test-helpers.component :as h]))
|
[test-helpers.component :as h]))
|
||||||
|
|
||||||
(h/describe "permission context"
|
(h/describe "permission context"
|
||||||
(h/test
|
(h/test "it tests the default render"
|
||||||
(h/render [permission-context/view
|
(h/render [permission-context/view
|
||||||
[rn/text
|
[rn/text
|
||||||
{:accessibility-label :accessibility-id}
|
{:accessibility-label :accessibility-id}
|
|
@ -3,9 +3,13 @@
|
||||||
|
|
||||||
(def radius 20)
|
(def radius 20)
|
||||||
(def container
|
(def container
|
||||||
{:padding-top 16
|
{:flex-direction :row
|
||||||
|
:background-color (colors/theme-colors colors/white colors/neutral-90)
|
||||||
|
:height 82
|
||||||
|
:padding-top 16
|
||||||
:padding-bottom 48
|
:padding-bottom 48
|
||||||
:padding-horizontal 20
|
:justify-content :center
|
||||||
|
:padding-right :auto
|
||||||
:shadow-offset {:width 0
|
:shadow-offset {:width 0
|
||||||
:height 2}
|
:height 2}
|
||||||
:shadow-radius radius
|
:shadow-radius radius
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
(ns quo2.components.drawers.permission-context.view
|
(ns quo2.components.drawers.permission-context.view
|
||||||
(:require [react-native.core :as rn]
|
(:require [react-native.core :as rn]
|
||||||
|
[quo2.foundations.colors :as colors]
|
||||||
[quo2.components.drawers.permission-context.style :as style]))
|
[quo2.components.drawers.permission-context.style :as style]))
|
||||||
|
|
||||||
(defn view
|
(defn view
|
||||||
[children]
|
[children on-press]
|
||||||
[rn/view {:style style/container}
|
[rn/touchable-highlight
|
||||||
|
{:on-press on-press
|
||||||
|
:underlay-color (colors/theme-colors :transparent colors/neutral-95-opa-70)
|
||||||
|
:style style/container}
|
||||||
children])
|
children])
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
quo2.components.dividers.date
|
quo2.components.dividers.date
|
||||||
quo2.components.dividers.divider-label
|
quo2.components.dividers.divider-label
|
||||||
quo2.components.dividers.new-messages
|
quo2.components.dividers.new-messages
|
||||||
quo2.components.drawers.action-drawers
|
quo2.components.drawers.action-drawers.view
|
||||||
|
quo2.components.drawers.permission-context.view
|
||||||
quo2.components.dropdowns.dropdown
|
quo2.components.dropdowns.dropdown
|
||||||
quo2.components.header
|
quo2.components.header
|
||||||
quo2.components.icon
|
quo2.components.icon
|
||||||
|
@ -41,6 +42,7 @@
|
||||||
quo2.components.notifications.info-count
|
quo2.components.notifications.info-count
|
||||||
quo2.components.notifications.notification-dot
|
quo2.components.notifications.notification-dot
|
||||||
quo2.components.notifications.toast
|
quo2.components.notifications.toast
|
||||||
|
quo2.components.profile.profile-card.view
|
||||||
quo2.components.reactions.reaction
|
quo2.components.reactions.reaction
|
||||||
quo2.components.selectors.disclaimer.view
|
quo2.components.selectors.disclaimer.view
|
||||||
quo2.components.selectors.filter.view
|
quo2.components.selectors.filter.view
|
||||||
|
@ -52,8 +54,10 @@
|
||||||
quo2.components.tabs.tabs
|
quo2.components.tabs.tabs
|
||||||
quo2.components.tags.context-tags
|
quo2.components.tags.context-tags
|
||||||
quo2.components.tags.status-tags
|
quo2.components.tags.status-tags
|
||||||
quo2.components.profile.profile-card.view
|
quo2.components.tags.permission-tag
|
||||||
quo2.components.tags.tags))
|
quo2.components.tags.tag
|
||||||
|
quo2.components.tags.tags
|
||||||
|
quo2.components.tags.token-tag))
|
||||||
|
|
||||||
(def toast quo2.components.notifications.toast/toast)
|
(def toast quo2.components.notifications.toast/toast)
|
||||||
(def button quo2.components.buttons.button/button)
|
(def button quo2.components.buttons.button/button)
|
||||||
|
@ -63,7 +67,6 @@
|
||||||
(def separator quo2.components.separator/separator)
|
(def separator quo2.components.separator/separator)
|
||||||
(def counter quo2.components.counter.counter/counter)
|
(def counter quo2.components.counter.counter/counter)
|
||||||
(def header quo2.components.header/header)
|
(def header quo2.components.header/header)
|
||||||
(def action-drawer quo2.components.drawers.action-drawers/action-drawer)
|
|
||||||
(def dropdown quo2.components.dropdowns.dropdown/dropdown)
|
(def dropdown quo2.components.dropdowns.dropdown/dropdown)
|
||||||
(def info-message quo2.components.info.info-message/info-message)
|
(def info-message quo2.components.info.info-message/info-message)
|
||||||
(def information-box quo2.components.info.information-box/information-box)
|
(def information-box quo2.components.info.information-box/information-box)
|
||||||
|
@ -71,7 +74,6 @@
|
||||||
(def system-message quo2.components.messages.system-message/system-message)
|
(def system-message quo2.components.messages.system-message/system-message)
|
||||||
(def reaction quo2.components.reactions.reaction/reaction)
|
(def reaction quo2.components.reactions.reaction/reaction)
|
||||||
(def add-reaction quo2.components.reactions.reaction/add-reaction)
|
(def add-reaction quo2.components.reactions.reaction/add-reaction)
|
||||||
(def tags quo2.components.tags.tags/tags)
|
|
||||||
(def user-avatar-tag quo2.components.tags.context-tags/user-avatar-tag)
|
(def user-avatar-tag quo2.components.tags.context-tags/user-avatar-tag)
|
||||||
(def context-tag quo2.components.tags.context-tags/context-tag)
|
(def context-tag quo2.components.tags.context-tags/context-tag)
|
||||||
(def group-avatar-tag quo2.components.tags.context-tags/group-avatar-tag)
|
(def group-avatar-tag quo2.components.tags.context-tags/group-avatar-tag)
|
||||||
|
@ -80,7 +82,6 @@
|
||||||
(def tabs quo2.components.tabs.tabs/tabs)
|
(def tabs quo2.components.tabs.tabs/tabs)
|
||||||
(def account-selector quo2.components.tabs.account-selector/account-selector)
|
(def account-selector quo2.components.tabs.account-selector/account-selector)
|
||||||
(def floating-shell-button quo2.components.navigation.floating-shell-button/floating-shell-button)
|
(def floating-shell-button quo2.components.navigation.floating-shell-button/floating-shell-button)
|
||||||
(def status-tag quo2.components.tags.status-tags/status-tag)
|
|
||||||
(def page-nav quo2.components.navigation.page-nav/page-nav)
|
(def page-nav quo2.components.navigation.page-nav/page-nav)
|
||||||
(def disclaimer quo2.components.selectors.disclaimer.view/view)
|
(def disclaimer quo2.components.selectors.disclaimer.view/view)
|
||||||
(def checkbox quo2.components.selectors.selectors/checkbox)
|
(def checkbox quo2.components.selectors.selectors/checkbox)
|
||||||
|
@ -118,6 +119,10 @@
|
||||||
(def new-messages quo2.components.dividers.new-messages/new-messages)
|
(def new-messages quo2.components.dividers.new-messages/new-messages)
|
||||||
(def divider-date quo2.components.dividers.date/date)
|
(def divider-date quo2.components.dividers.date/date)
|
||||||
|
|
||||||
|
;;;; DRAWERS
|
||||||
|
(def action-drawer quo2.components.drawers.action-drawers.view/action-drawer)
|
||||||
|
(def permission-context quo2.components.drawers.permission-context.view/view)
|
||||||
|
|
||||||
;;;; LIST ITEMS
|
;;;; LIST ITEMS
|
||||||
(def channel-list-item quo2.components.list-items.channel/list-item)
|
(def channel-list-item quo2.components.list-items.channel/list-item)
|
||||||
(def menu-item quo2.components.list-items.menu-item/menu-item)
|
(def menu-item quo2.components.list-items.menu-item/menu-item)
|
||||||
|
@ -135,3 +140,10 @@
|
||||||
;;;; SETTINGS
|
;;;; SETTINGS
|
||||||
(def privacy-option quo2.components.settings.privacy-option/card)
|
(def privacy-option quo2.components.settings.privacy-option/card)
|
||||||
(def account quo2.components.settings.accounts.view/account)
|
(def account quo2.components.settings.accounts.view/account)
|
||||||
|
|
||||||
|
;;;; TAGS
|
||||||
|
(def tag quo2.components.tags.tag/tag)
|
||||||
|
(def tags quo2.components.tags.tags/tags)
|
||||||
|
(def permission-tag quo2.components.tags.permission-tag/tag)
|
||||||
|
(def status-tag quo2.components.tags.status-tags/status-tag)
|
||||||
|
(def token-tag quo2.components.tags.token-tag/tag)
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
[quo2.components.buttons.--tests--.buttons-component-spec]
|
[quo2.components.buttons.--tests--.buttons-component-spec]
|
||||||
[quo2.components.counter.--tests--.counter-component-spec]
|
[quo2.components.counter.--tests--.counter-component-spec]
|
||||||
[quo2.components.dividers.--tests--.divider-label-component-spec]
|
[quo2.components.dividers.--tests--.divider-label-component-spec]
|
||||||
[quo2.components.drawers.--tests--.action-drawers-component-spec]
|
[quo2.components.drawers.action-drawers.component-spec]
|
||||||
[quo2.components.drawers.permission-context.--tests--.permission-context-component-spec]
|
[quo2.components.drawers.permission-context.component-spec]
|
||||||
[quo2.components.markdown.--tests--.text-component-spec]
|
[quo2.components.markdown.--tests--.text-component-spec]
|
||||||
[quo2.components.selectors.--tests--.selectors-component-spec]
|
[quo2.components.selectors.--tests--.selectors-component-spec]
|
||||||
[quo2.components.selectors.filter.component-spec]))
|
[quo2.components.selectors.filter.component-spec]))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
(ns status-im2.common.home.actions.view
|
(ns status-im2.common.home.actions.view
|
||||||
(:require [utils.i18n :as i18n]
|
(:require [utils.i18n :as i18n]
|
||||||
[quo2.components.drawers.action-drawers :as drawer]
|
[quo2.core :as quo]
|
||||||
[status-im2.common.confirmation-drawer.view :as confirmation-drawer]
|
[status-im2.common.confirmation-drawer.view :as confirmation-drawer]
|
||||||
[status-im2.constants :as constants]
|
[status-im2.constants :as constants]
|
||||||
[utils.re-frame :as rf]))
|
[utils.re-frame :as rf]))
|
||||||
|
@ -407,7 +407,7 @@
|
||||||
|
|
||||||
(defn one-to-one-actions
|
(defn one-to-one-actions
|
||||||
[{:keys [chat-id] :as item} inside-chat?]
|
[{:keys [chat-id] :as item} inside-chat?]
|
||||||
[drawer/action-drawer
|
[quo/action-drawer
|
||||||
[[(view-profile-entry chat-id)
|
[[(view-profile-entry chat-id)
|
||||||
(edit-nickname-entry chat-id)]
|
(edit-nickname-entry chat-id)]
|
||||||
(notification-actions item inside-chat?)
|
(notification-actions item inside-chat?)
|
||||||
|
@ -415,7 +415,7 @@
|
||||||
|
|
||||||
(defn public-chat-actions
|
(defn public-chat-actions
|
||||||
[{:keys [chat-id] :as item} inside-chat?]
|
[{:keys [chat-id] :as item} inside-chat?]
|
||||||
[drawer/action-drawer
|
[quo/action-drawer
|
||||||
[[(group-details-entry chat-id)
|
[[(group-details-entry chat-id)
|
||||||
(when inside-chat?
|
(when inside-chat?
|
||||||
(add-members-entry))]
|
(add-members-entry))]
|
||||||
|
@ -424,7 +424,7 @@
|
||||||
|
|
||||||
(defn private-group-chat-actions
|
(defn private-group-chat-actions
|
||||||
[item inside-chat?]
|
[item inside-chat?]
|
||||||
[drawer/action-drawer
|
[quo/action-drawer
|
||||||
[(group-actions item inside-chat?)
|
[(group-actions item inside-chat?)
|
||||||
(notification-actions item inside-chat?)
|
(notification-actions item inside-chat?)
|
||||||
(destructive-actions item)]])
|
(destructive-actions item)]])
|
||||||
|
@ -432,7 +432,7 @@
|
||||||
(defn contact-actions
|
(defn contact-actions
|
||||||
[{:keys [public-key] :as contact} {:keys [chat-id admin?] :as extra-data}]
|
[{:keys [public-key] :as contact} {:keys [chat-id admin?] :as extra-data}]
|
||||||
(let [current-pub-key (rf/sub [:multiaccount/public-key])]
|
(let [current-pub-key (rf/sub [:multiaccount/public-key])]
|
||||||
[drawer/action-drawer
|
[quo/action-drawer
|
||||||
[[(view-profile-entry public-key)
|
[[(view-profile-entry public-key)
|
||||||
(remove-from-contacts-entry contact)
|
(remove-from-contacts-entry contact)
|
||||||
(rename-entry)
|
(rename-entry)
|
||||||
|
@ -460,7 +460,7 @@
|
||||||
[{:keys [admins] :as group}]
|
[{:keys [admins] :as group}]
|
||||||
(let [current-pub-key (rf/sub [:multiaccount/public-key])
|
(let [current-pub-key (rf/sub [:multiaccount/public-key])
|
||||||
admin? (get admins current-pub-key)]
|
admin? (get admins current-pub-key)]
|
||||||
[drawer/action-drawer
|
[quo/action-drawer
|
||||||
[(when admin? [(edit-name-image-entry)])
|
[(when admin? [(edit-name-image-entry)])
|
||||||
[(notifications-entry admin?)]
|
[(notifications-entry admin?)]
|
||||||
(destructive-actions group)]]))
|
(destructive-actions group)]]))
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
(ns status-im2.contexts.quo-preview.drawers.action-drawers
|
(ns status-im2.contexts.quo-preview.drawers.action-drawers
|
||||||
(:require [quo2.components.buttons.button :as button]
|
(:require [quo2.core :as quo]
|
||||||
[quo2.components.drawers.action-drawers :as quo2]
|
|
||||||
[quo2.foundations.colors :as colors]
|
[quo2.foundations.colors :as colors]
|
||||||
[react-native.core :as rn]
|
[react-native.core :as rn]
|
||||||
[reagent.core :as reagent]
|
[reagent.core :as reagent]
|
||||||
|
@ -27,7 +26,7 @@
|
||||||
[rn/view
|
[rn/view
|
||||||
{:height 300
|
{:height 300
|
||||||
:background-color (colors/theme-colors colors/white colors/neutral-95)}
|
:background-color (colors/theme-colors colors/white colors/neutral-95)}
|
||||||
[quo2/action-drawer
|
[quo/action-drawer
|
||||||
(cond->
|
(cond->
|
||||||
[[{:icon :i/friend
|
[[{:icon :i/friend
|
||||||
:label "View channel members and details"
|
:label "View channel members and details"
|
||||||
|
@ -59,7 +58,7 @@
|
||||||
[rn/touchable-without-feedback {:on-press rn/dismiss-keyboard!}
|
[rn/touchable-without-feedback {:on-press rn/dismiss-keyboard!}
|
||||||
[rn/view {:padding-bottom 400}
|
[rn/view {:padding-bottom 400}
|
||||||
[preview/customizer state descriptor]
|
[preview/customizer state descriptor]
|
||||||
[button/button
|
[quo/button
|
||||||
{:style {:margin-horizontal 40}
|
{:style {:margin-horizontal 40}
|
||||||
:on-press #(rf/dispatch [:bottom-sheet/show-sheet
|
:on-press #(rf/dispatch [:bottom-sheet/show-sheet
|
||||||
{:content (constantly (render-action-sheet state))
|
{:content (constantly (render-action-sheet state))
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
(ns status-im2.contexts.quo-preview.drawers.permission-drawers
|
||||||
|
(:require [quo2.core :as quo]
|
||||||
|
[quo2.foundations.colors :as colors]
|
||||||
|
[react-native.core :as rn]
|
||||||
|
[status-im.react-native.resources :as resources]))
|
||||||
|
|
||||||
|
(defn example-1
|
||||||
|
[]
|
||||||
|
[:<>
|
||||||
|
[quo/text {:style {:margin-right 4}} "Hold"]
|
||||||
|
[quo/permission-tag
|
||||||
|
{:size 24
|
||||||
|
:locked false
|
||||||
|
:tokens [{:id 1
|
||||||
|
:group [{:id 1 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 2 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 3 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 4 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 5 :token-icon (resources/get-image :status-logo)}]}]
|
||||||
|
:background-color (colors/theme-colors
|
||||||
|
colors/neutral-10
|
||||||
|
colors/neutral-80)}]
|
||||||
|
[quo/text
|
||||||
|
{:style {:margin-left 4
|
||||||
|
:margin-right 4}} "Or"]
|
||||||
|
[quo/permission-tag
|
||||||
|
{:size 24
|
||||||
|
:locked false
|
||||||
|
:tokens [{:id 1
|
||||||
|
:group [{:id 1 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 2 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 3 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 4 :token-icon (resources/get-image :status-logo)}
|
||||||
|
{:id 5 :token-icon (resources/get-image :status-logo)}]}]
|
||||||
|
:background-color (colors/theme-colors
|
||||||
|
colors/neutral-10
|
||||||
|
colors/neutral-80)}]
|
||||||
|
[quo/text {:style {:margin-left 4}} "To post"]])
|
||||||
|
|
||||||
|
(defn example-2
|
||||||
|
[]
|
||||||
|
[:<>
|
||||||
|
[quo/text {:style {:margin-right 4}} "Hold"]
|
||||||
|
[quo/token-tag
|
||||||
|
{:size :small
|
||||||
|
:token-img-src (js/require "../resources/images/tokens/mainnet/ETH.png")} "ETH"]
|
||||||
|
[quo/text {:style {:margin-left 4}} "To post"]])
|
||||||
|
|
||||||
|
(defn example-3
|
||||||
|
[]
|
||||||
|
[:<>
|
||||||
|
[quo/icon :i/communities {:color (colors/theme-colors colors/neutral-100 colors/white)}]
|
||||||
|
[quo/text {:style {:margin-right 4}} "Join community to post"]])
|
||||||
|
|
||||||
|
(defn cool-preview
|
||||||
|
[]
|
||||||
|
(fn []
|
||||||
|
[:<>
|
||||||
|
[rn/view {:margin-top 60}
|
||||||
|
[quo/permission-context [example-1] #(js/alert "drawer pressed")]]
|
||||||
|
[rn/view {:margin-top 60}
|
||||||
|
[quo/permission-context [example-2] #(js/alert "drawer pressed")]]
|
||||||
|
[rn/view {:margin-top 60}
|
||||||
|
[quo/permission-context [example-3] #(js/alert "drawer pressed")]]]))
|
||||||
|
|
||||||
|
(defn preview-permission-drawers
|
||||||
|
[]
|
||||||
|
[rn/view
|
||||||
|
{:style {:background-color (colors/theme-colors colors/neutral-20 colors/neutral-100)}
|
||||||
|
:flex 1}
|
||||||
|
[rn/flat-list
|
||||||
|
{:flex 1
|
||||||
|
:nested-scroll-enabled true
|
||||||
|
:keyboard-should-persist-taps :always
|
||||||
|
:header [cool-preview]
|
||||||
|
:key-fn hash}]])
|
|
@ -29,6 +29,7 @@
|
||||||
[status-im2.contexts.quo-preview.dividers.divider-label :as divider-label]
|
[status-im2.contexts.quo-preview.dividers.divider-label :as divider-label]
|
||||||
[status-im2.contexts.quo-preview.dividers.new-messages :as new-messages]
|
[status-im2.contexts.quo-preview.dividers.new-messages :as new-messages]
|
||||||
[status-im2.contexts.quo-preview.drawers.action-drawers :as drawers]
|
[status-im2.contexts.quo-preview.drawers.action-drawers :as drawers]
|
||||||
|
[status-im2.contexts.quo-preview.drawers.permission-drawers :as permission-drawers]
|
||||||
[status-im2.contexts.quo-preview.dropdowns.dropdown :as dropdown]
|
[status-im2.contexts.quo-preview.dropdowns.dropdown :as dropdown]
|
||||||
[status-im2.contexts.quo-preview.info.info-message :as info-message]
|
[status-im2.contexts.quo-preview.info.info-message :as info-message]
|
||||||
[status-im2.contexts.quo-preview.info.information-box :as information-box]
|
[status-im2.contexts.quo-preview.info.information-box :as information-box]
|
||||||
|
@ -128,7 +129,10 @@
|
||||||
:component divider-date/preview-divider-date}]
|
:component divider-date/preview-divider-date}]
|
||||||
:drawers [{:name :action-drawers
|
:drawers [{:name :action-drawers
|
||||||
:insets {:top false}
|
:insets {:top false}
|
||||||
:component drawers/preview-action-drawers}]
|
:component drawers/preview-action-drawers}
|
||||||
|
{:name :permission-drawers
|
||||||
|
:insets {:top false}
|
||||||
|
:component permission-drawers/preview-permission-drawers}]
|
||||||
:dropdowns [{:name :dropdown
|
:dropdowns [{:name :dropdown
|
||||||
:insets {:top false}
|
:insets {:top false}
|
||||||
:component dropdown/preview-dropdown}]
|
:component dropdown/preview-dropdown}]
|
||||||
|
|
Loading…
Reference in New Issue