@@ -17,14 +17,17 @@ const SIGNET = require('./signet.png');
17
17
const TEXT = require ( './text.png' ) ;
18
18
19
19
export const HEADER_HEIGHT =
20
- Platform . OS === 'web' ? 64 : Platform . OS === 'macos' ? 128 : 192 ;
20
+ Platform . OS === 'web' || Platform . OS === 'macos' ? 64 : 192 ;
21
21
export const COLLAPSED_HEADER_HEIGHT = 64 ;
22
22
23
23
export interface HeaderProps {
24
24
scrollOffset : SharedValue < number > ;
25
25
}
26
26
27
27
export default function Header ( props : HeaderProps ) {
28
+ if ( Platform . OS === 'macos' ) {
29
+ return < HeaderMacOS { ...props } /> ;
30
+ }
28
31
if ( Platform . OS === 'web' ) {
29
32
return < HeaderWeb { ...props } /> ;
30
33
}
@@ -58,9 +61,7 @@ function HeaderNative(props: HeaderProps) {
58
61
} ) ;
59
62
60
63
const collapsedCoefficient = 0.7 ;
61
- const openCoefficient = Platform . OS === 'macos' ? 1 : 0.5 ;
62
- const padding = Platform . OS === 'macos' ? 10 : 0 ;
63
- const horizontalOffset = Platform . OS === 'macos' ? 50 : 0 ;
64
+ const openCoefficient = 0.5 ;
64
65
65
66
const signetStyle = useAnimatedStyle ( ( ) => {
66
67
const size = isMounted . value ? measure ( containerRef ) : undefined ;
@@ -69,20 +70,16 @@ function HeaderNative(props: HeaderProps) {
69
70
[ 0 , 1 ] ,
70
71
[
71
72
headerHeight . value * collapsedCoefficient ,
72
- headerHeight . value * openCoefficient - padding ,
73
+ headerHeight . value * openCoefficient ,
73
74
]
74
75
) ;
75
76
const clampedHeight = Math . min ( headerHeight . value , HEADER_HEIGHT ) ;
76
77
77
- const signetOpenOffsetCoefficient = Platform . OS === 'macos' ? 0.32 : 0.5 ;
78
- const signetOpenOffsetBias =
79
- Platform . OS === 'macos' ? 15 - ( size ?. height ?? 0 ) : 0 ;
78
+ const signetOpenOffsetCoefficient = 0.5 ;
80
79
81
80
const signetCollapsedOffset = COLLAPSED_HEADER_HEIGHT * 0.25 ;
82
81
const signetOpenOffset =
83
- ( ( size ?. width ?? 0 ) - imageSize ) * signetOpenOffsetCoefficient +
84
- signetOpenOffsetBias +
85
- horizontalOffset ;
82
+ ( ( size ?. width ?? 0 ) - imageSize ) * signetOpenOffsetCoefficient ;
86
83
87
84
return {
88
85
position : 'absolute' ,
@@ -91,7 +88,7 @@ function HeaderNative(props: HeaderProps) {
91
88
top : interpolate (
92
89
Math . sqrt ( expandFactor . value ) ,
93
90
[ 0 , 1 ] ,
94
- [ clampedHeight * 0.1 , 0 + padding / 2 ]
91
+ [ clampedHeight * 0.1 , 0 ]
95
92
) ,
96
93
left : interpolate (
97
94
expandFactor . value ,
@@ -110,19 +107,18 @@ function HeaderNative(props: HeaderProps) {
110
107
[ 0 , 1 ] ,
111
108
[
112
109
headerHeight . value * collapsedCoefficient ,
113
- headerHeight . value * openCoefficient - padding ,
110
+ headerHeight . value * openCoefficient ,
114
111
]
115
112
) ;
116
113
117
114
const widthCoefficient = 0.2 ;
118
- const widthBias = Platform . OS === 'macos' ? 0.2 : 0.4 ;
115
+ const widthBias = 0.4 ;
119
116
120
117
const textWidth =
121
118
( size ?. width ?? 0 ) * ( expandFactor . value * widthCoefficient + widthBias ) ;
122
119
123
120
const textCollapsedOffset = ( ( size ?. width ?? 0 ) - textWidth ) * 0.5 ;
124
- const textOpenOffset =
125
- ( ( size ?. width ?? 0 ) - textWidth ) * 0.5 + horizontalOffset ;
121
+ const textOpenOffset = ( ( size ?. width ?? 0 ) - textWidth ) * 0.5 ;
126
122
127
123
return {
128
124
position : 'absolute' ,
@@ -131,7 +127,7 @@ function HeaderNative(props: HeaderProps) {
131
127
bottom : interpolate (
132
128
expandFactor . value ,
133
129
[ 0 , 1 ] ,
134
- [ COLLAPSED_HEADER_HEIGHT * 0.2 , 0 + padding / 2 ]
130
+ [ COLLAPSED_HEADER_HEIGHT * 0.2 , 0 ]
135
131
) ,
136
132
left : interpolate (
137
133
expandFactor . value ,
@@ -185,6 +181,15 @@ function HeaderWeb(_props: HeaderProps) {
185
181
) ;
186
182
}
187
183
184
+ function HeaderMacOS ( _props : HeaderProps ) {
185
+ return (
186
+ < Animated . View collapsable = { false } style = { styles . webHeader } >
187
+ < Animated . Image source = { SIGNET } style = { styles . macosSignet } />
188
+ < Animated . Image source = { TEXT } style = { styles . macosText } />
189
+ </ Animated . View >
190
+ ) ;
191
+ }
192
+
188
193
const styles = StyleSheet . create ( {
189
194
nativeHeader : {
190
195
width : '100%' ,
@@ -211,4 +216,15 @@ const styles = StyleSheet.create({
211
216
width : 170 ,
212
217
height : 32 ,
213
218
} ,
219
+ macosSignet : {
220
+ // macos stretches the images to fill the available space
221
+ width : 31 , // 65:100 ratio applied to 48px
222
+ height : 48 ,
223
+ marginHorizontal : 8.5 ,
224
+ } ,
225
+ macosText : {
226
+ width : 142 , // 1439:323 ratio applied to 32px
227
+ height : 32 ,
228
+ marginHorizontal : 14 ,
229
+ } ,
214
230
} ) ;
0 commit comments