Update contact screen to new design (#15526)

This commit is contained in:
erikseppanen 2023-04-18 13:28:12 -04:00 committed by GitHub
parent 8bf5abdf3d
commit 5d0b739cc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 58 additions and 76 deletions

View File

@ -3,18 +3,6 @@
[react-native.platform :as platform] [react-native.platform :as platform]
[quo2.foundations.typography :as typography])) [quo2.foundations.typography :as typography]))
(defn container-kbd
[]
{:style {:flex 1}
:keyboardVerticalOffset 60})
(def container-image
{:style {:flex 1
:flex-direction :row}})
(def image
{:flex 1})
(defn container-outer (defn container-outer
[] []
{:style {:flex (if platform/ios? 4.5 5) {:style {:flex (if platform/ios? 4.5 5)
@ -41,7 +29,8 @@
[] []
{:size :heading-1 {:size :heading-1
:weight :semi-bold :weight :semi-bold
:style {:margin-bottom 6 :style {:margin-top 32
:margin-bottom 6
:color (colors/theme-colors :color (colors/theme-colors
colors/neutral-100 colors/neutral-100
colors/white)}}) colors/white)}})
@ -127,11 +116,8 @@
:accessibility-label :new-contact-close-button :accessibility-label :new-contact-close-button
:size 32 :size 32
:override-background-color (colors/theme-colors :override-background-color (colors/theme-colors
colors/white-opa-60 colors/neutral-10
colors/neutral-80-opa-60) colors/neutral-90)})
:style {:position :absolute
:left 20
:top 20}})
(def button-qr (def button-qr
{:type :outline {:type :outline

View File

@ -5,7 +5,6 @@
[react-native.core :as rn] [react-native.core :as rn]
[react-native.clipboard :as clipboard] [react-native.clipboard :as clipboard]
[reagent.core :as reagent] [reagent.core :as reagent]
[status-im2.common.resources :as resources]
[status-im.qr-scanner.core :as qr-scanner] [status-im.qr-scanner.core :as qr-scanner]
[status-im.utils.utils :as utils] [status-im.utils.utils :as utils]
[status-im2.contexts.add-new-contact.style :as style] [status-im2.contexts.add-new-contact.style :as style]
@ -55,11 +54,9 @@
show-paste-button? (and (not (string/blank? @clipboard)) show-paste-button? (and (not (string/blank? @clipboard))
(string/blank? @default-value) (string/blank? @default-value)
(string/blank? input))] (string/blank? input))]
[rn/keyboard-avoiding-view (style/container-kbd)
[rn/view style/container-image [rn/view (style/container-outer)
[rn/image [rn/view style/container-inner
{:source (resources/get-image :add-new-contact)
:style style/image}]
[quo/button [quo/button
(merge (style/button-close) (merge (style/button-close)
{:on-press {:on-press
@ -67,9 +64,7 @@
(reset! clipboard nil) (reset! clipboard nil)
(reset! default-value nil) (reset! default-value nil)
(rf/dispatch [:contacts/clear-new-identity]) (rf/dispatch [:contacts/clear-new-identity])
(rf/dispatch [:navigate-back]))}) :i/close]] (rf/dispatch [:navigate-back]))}) :i/close]
[rn/view (style/container-outer)
[rn/view style/container-inner
[quo/text (style/text-title) [quo/text (style/text-title)
(i18n/label :t/add-a-contact)] (i18n/label :t/add-a-contact)]
[quo/text (style/text-subtitle) [quo/text (style/text-subtitle)
@ -119,4 +114,4 @@
(rf/dispatch [:contacts/clear-new-identity]) (rf/dispatch [:contacts/clear-new-identity])
(rf/dispatch [:navigate-back]) (rf/dispatch [:navigate-back])
(rf/dispatch [:chat.ui/show-profile public-key ens]))}) (rf/dispatch [:chat.ui/show-profile public-key ens]))})
(i18n/label :t/view-profile)]]]])))) (i18n/label :t/view-profile)]]]))))

View File

@ -71,6 +71,7 @@
:component album-selector/album-selector} :component album-selector/album-selector}
{:name :new-contact {:name :new-contact
:options {:sheet? true}
:component add-new-contact/new-contact} :component add-new-contact/new-contact}
{:name :discover-communities {:name :discover-communities