|
11 | 11 | [utils.i18n :as i18n]
|
12 | 12 | [utils.re-frame :as rf]))
|
13 | 13 |
|
| 14 | +(defn- show-terms-of-use |
| 15 | + [] |
| 16 | + (rf/dispatch [:show-bottom-sheet {:content terms/terms-of-use :shell? true}])) |
| 17 | + |
| 18 | +(defn- show-privacy-policy |
| 19 | + [] |
| 20 | + (rf/dispatch [:show-bottom-sheet {:content privacy/privacy-statement :shell? true}])) |
| 21 | + |
| 22 | +(defn- terms |
| 23 | + [terms-accepted? set-terms-accepted?] |
| 24 | + [rn/view {:style style/terms-privacy-container} |
| 25 | + [rn/view |
| 26 | + {:accessibility-label :terms-privacy-checkbox-container} |
| 27 | + [quo/selectors |
| 28 | + {:type :checkbox |
| 29 | + :blur? true |
| 30 | + :checked? terms-accepted? |
| 31 | + :on-change #(set-terms-accepted? not)}]] |
| 32 | + [rn/view {:style style/text-container} |
| 33 | + [quo/text |
| 34 | + {:style style/plain-text |
| 35 | + :size :paragraph-2} |
| 36 | + (str (i18n/label :t/accept-status-tos-prefix) " ")] |
| 37 | + [quo/text |
| 38 | + {:on-press show-terms-of-use |
| 39 | + :style style/highlighted-text |
| 40 | + :size :paragraph-2 |
| 41 | + :weight :medium} |
| 42 | + (i18n/label :t/terms-of-service)] |
| 43 | + [quo/text |
| 44 | + {:style style/plain-text |
| 45 | + :size :paragraph-2} |
| 46 | + " " (i18n/label :t/and) " "] |
| 47 | + [quo/text |
| 48 | + {:on-press show-privacy-policy |
| 49 | + :style style/highlighted-text |
| 50 | + :size :paragraph-2 |
| 51 | + :weight :medium} |
| 52 | + (i18n/label :t/intro-privacy-policy)]]]) |
| 53 | + |
| 54 | +(defn- explore-new-status |
| 55 | + [] |
| 56 | + (rf/dispatch [:profile/explore-new-status])) |
| 57 | + |
| 58 | +(defn- sync-or-recover-profile |
| 59 | + [] |
| 60 | + (when-let [blur-show-fn @overlay/blur-show-fn-atom] |
| 61 | + (blur-show-fn)) |
| 62 | + (rf/dispatch [:open-modal :screen/onboarding.sync-or-recover-profile])) |
| 63 | + |
| 64 | +(defn- create-profile |
| 65 | + [] |
| 66 | + (when-let [blur-show-fn @overlay/blur-show-fn-atom] |
| 67 | + (blur-show-fn)) |
| 68 | + (rf/dispatch [:open-modal :screen/onboarding.new-to-status])) |
| 69 | + |
14 | 70 | (defn view
|
15 | 71 | []
|
16 |
| - (let [[terms-accepted? set-terms-accepted?] (rn/use-state false)] |
| 72 | + (let [[terms-accepted? set-terms-accepted?] (rn/use-state false) |
| 73 | + has-profiles-and-unaccepted-terms? (rf/sub [:profile/has-profiles-and-unaccepted-terms?])] |
17 | 74 | [rn/view {:style style/page-container}
|
18 | 75 | [background/view false]
|
19 | 76 | [quo/bottom-actions
|
20 |
| - {:container-style (style/bottom-actions-container (safe-area/get-bottom)) |
21 |
| - :actions :two-vertical-actions |
22 |
| - :description :top |
23 |
| - :description-top-text [rn/view |
24 |
| - {:style style/terms-privacy-container} |
25 |
| - [rn/view |
26 |
| - {:accessibility-label :terms-privacy-checkbox-container} |
27 |
| - [quo/selectors |
28 |
| - {:type :checkbox |
29 |
| - :blur? true |
30 |
| - :checked? terms-accepted? |
31 |
| - :on-change #(set-terms-accepted? not)}]] |
32 |
| - [rn/view {:style style/text-container} |
33 |
| - [quo/text |
34 |
| - {:style style/plain-text |
35 |
| - :size :paragraph-2} |
36 |
| - (str (i18n/label :t/accept-status-tos-prefix) " ")] |
37 |
| - [quo/text |
38 |
| - {:on-press #(rf/dispatch [:show-bottom-sheet |
39 |
| - {:content terms/terms-of-use |
40 |
| - :shell? true}]) |
41 |
| - :style style/highlighted-text |
42 |
| - :size :paragraph-2 |
43 |
| - :weight :medium} |
44 |
| - (i18n/label :t/terms-of-service)] |
45 |
| - [quo/text |
46 |
| - {:style style/plain-text |
47 |
| - :size :paragraph-2} |
48 |
| - " " (i18n/label :t/and) " "] |
49 |
| - [quo/text |
50 |
| - {:on-press #(rf/dispatch [:show-bottom-sheet |
51 |
| - {:content privacy/privacy-statement |
52 |
| - :shell? true}]) |
53 |
| - :style style/highlighted-text |
54 |
| - :size :paragraph-2 |
55 |
| - :weight :medium} |
56 |
| - (i18n/label :t/intro-privacy-policy)]]] |
57 |
| - :button-one-label (i18n/label :t/sync-or-recover-profile) |
58 |
| - :button-one-props {:type :dark-grey |
59 |
| - :disabled? (not terms-accepted?) |
60 |
| - :accessibility-label :already-use-status-button |
61 |
| - :on-press (fn [] |
62 |
| - (when-let [blur-show-fn @overlay/blur-show-fn-atom] |
63 |
| - (blur-show-fn)) |
64 |
| - (rf/dispatch |
65 |
| - [:open-modal |
66 |
| - :screen/onboarding.sync-or-recover-profile]))} |
67 |
| - :button-two-label (i18n/label :t/create-profile) |
68 |
| - :button-two-props {:accessibility-label :new-to-status-button |
69 |
| - :disabled? (not terms-accepted?) |
70 |
| - :on-press |
71 |
| - (fn [] |
72 |
| - (when-let [blur-show-fn @overlay/blur-show-fn-atom] |
73 |
| - (blur-show-fn)) |
74 |
| - (rf/dispatch |
75 |
| - [:open-modal :screen/onboarding.new-to-status]))}}] |
| 77 | + (cond-> |
| 78 | + {:container-style (style/bottom-actions-container (safe-area/get-bottom)) |
| 79 | + :actions :two-vertical-actions |
| 80 | + :description :top |
| 81 | + :description-top-text [terms terms-accepted? set-terms-accepted?]} |
| 82 | + |
| 83 | + has-profiles-and-unaccepted-terms? |
| 84 | + (assoc |
| 85 | + :actions :one-action |
| 86 | + :button-one-label (i18n/label :t/explore-the-new-status) |
| 87 | + :button-one-props {:disabled? (not terms-accepted?) |
| 88 | + :accessibility-label :explore-new-status |
| 89 | + :on-press explore-new-status}) |
| 90 | + |
| 91 | + (not has-profiles-and-unaccepted-terms?) |
| 92 | + (assoc |
| 93 | + :actions :two-vertical-actions |
| 94 | + :button-one-label (i18n/label :t/sync-or-recover-profile) |
| 95 | + :button-one-props {:type :dark-grey |
| 96 | + :disabled? (not terms-accepted?) |
| 97 | + :accessibility-label :already-use-status-button |
| 98 | + :on-press sync-or-recover-profile} |
| 99 | + :button-two-label (i18n/label :t/create-profile) |
| 100 | + :button-two-props {:accessibility-label :new-to-status-button |
| 101 | + :disabled? (not terms-accepted?) |
| 102 | + :on-press create-profile}))] |
76 | 103 | [overlay/view]]))
|
0 commit comments