Skip to content

Commit

Permalink
[#19351] fix: animate username in profile
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-ghafouri committed Apr 4, 2024
1 parent d4e1b63 commit 35f08d5
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 11 deletions.
19 changes: 19 additions & 0 deletions src/js/worklets/header.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import {useDerivedValue, withTiming} from "react-native-reanimated";

export function headerContentOpacity(scrollY, threshold) {
return useDerivedValue(function () {
'worklet';
if (scrollY.value < threshold) {
return withTiming(0);
} else {
return withTiming(1);
}
});
}

export function headerContentPosition(scrollY, threshold, topBarHeight) {
return useDerivedValue(function () {
'worklet';
return scrollY.value < threshold ? withTiming(topBarHeight) : withTiming(0);
});
}
13 changes: 12 additions & 1 deletion src/quo/components/navigation/page_nav/style.cljs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(ns quo.components.navigation.page-nav.style
(:require
[quo.foundations.colors :as colors]))
[quo.foundations.colors :as colors]
[react-native.reanimated :as reanimated]))

(defn container
[margin-top]
Expand All @@ -21,6 +22,16 @@
:justify-content (if centered? :center :flex-start)
:opacity center-opacity})

(defn center-content-container-animation
[{:keys [centered? center-opacity has-animations? translate-animation opacity-animation]}]
(if has-animations?
(reanimated/apply-animations-to-style
{:transform [{:translate-y translate-animation}]
:opacity opacity-animation}
(center-content-container centered? center-opacity))
(center-content-container centered? center-opacity)))


(def right-actions-container
{:flex-direction :row})

Expand Down
34 changes: 26 additions & 8 deletions src/quo/components/navigation/page_nav/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
[quo.components.markdown.text :as text]
[quo.components.navigation.page-nav.style :as style]
[quo.theme :as theme]
[react-native.core :as rn]))
[react-native.core :as rn]
[react-native.reanimated :as reanimated]
[utils.worklets.header :as header-worklet]))

(def ^:private button-type
{:white :grey
Expand Down Expand Up @@ -85,14 +87,29 @@
:else
nil)])

(def header-height 155)
(def page-nav-height 25)
(def threshold (- header-height page-nav-height))

(defn- title-center
[{:keys [centered? title center-opacity]}]
[rn/view {:style (style/center-content-container centered? center-opacity)}
[text/text
{:weight :medium
:size :paragraph-1
:number-of-lines 1}
title]])
[{:keys [centered? title center-opacity scroll-y]}]
(let [translate-animation (when scroll-y
(header-worklet/header-content-position scroll-y
threshold
page-nav-height))
opacity-animation (when scroll-y
(header-worklet/header-content-opacity scroll-y threshold))]
[reanimated/view
{:style (style/center-content-container-animation {:has-animations? (not (nil? scroll-y))
:centered? centered?
:center-opacity center-opacity
:translate-animation translate-animation
:opacity-animation opacity-animation})}
[text/text
{:weight :medium
:size :paragraph-1
:number-of-lines 1}
title]]))

(defn- dropdown-center
[{:keys [theme background dropdown-on-press dropdown-selected? dropdown-text center-opacity]}]
Expand Down Expand Up @@ -295,6 +312,7 @@
`:title`
- title
- text-align: `:center` or `:left`
- scroll-y: a shared value (optional)
`:dropdown`
- dropdown-on-press: a callback
- dropdown-selected?: a boolean
Expand Down
11 changes: 9 additions & 2 deletions src/status_im/contexts/profile/settings/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
[status-im.contexts.profile.settings.header.view :as settings.header]
[status-im.contexts.profile.settings.list-items :as settings.items]
[status-im.contexts.profile.settings.style :as style]
[status-im.contexts.profile.utils :as profile.utils]
[utils.debounce :as debounce]
[utils.i18n :as i18n]
[utils.re-frame :as rf]))
Expand Down Expand Up @@ -42,15 +43,21 @@
(let [insets (safe-area/get-insets)
customization-color (rf/sub [:profile/customization-color])
scroll-y (reanimated/use-shared-value 0)
logout-press #(rf/dispatch [:multiaccounts.logout.ui/logout-pressed])]
logout-press #(rf/dispatch [:multiaccounts.logout.ui/logout-pressed])
profile (rf/sub [:profile/profile])
full-name (profile.utils/displayed-name profile)]
[quo/overlay {:type :shell}
[rn/view
{:key :header
:style (style/navigation-wrapper {:customization-color customization-color
:inset (:top insets)
:theme theme})}
[quo/page-nav
{:background :blur
{:title full-name
:background :blur
:type :title
:text-align :left
:scroll-y scroll-y
:icon-name :i/close
:on-press #(rf/dispatch [:navigate-back])
:right-side [{:icon-name :i/multi-profile
Expand Down
16 changes: 16 additions & 0 deletions src/utils/worklets/header.cljs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
(ns utils.worklets.header)

(def ^:private worklets (js/require "../src/js/worklets/header.js"))

(defn header-content-opacity
[scroll-y threshold]
(.headerContentOpacity ^js worklets
scroll-y
threshold))

(defn header-content-position
[scroll-y threshold top-bar-height]
(.headerContentPosition ^js worklets
scroll-y
threshold
top-bar-height))

0 comments on commit 35f08d5

Please sign in to comment.