mirror of
https://github.com/tooot-app/app
synced 2025-04-17 03:37:21 +02:00
97 lines
2.4 KiB
TypeScript
97 lines
2.4 KiB
TypeScript
import { ParseEmojis } from '@components/Parse'
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
import { useTheme } from '@utils/styles/ThemeManager'
|
|
import React from 'react'
|
|
import { Dimensions, StyleSheet, Text, View } from 'react-native'
|
|
import Animated, {
|
|
Extrapolate,
|
|
interpolate,
|
|
useAnimatedStyle
|
|
} from 'react-native-reanimated'
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context'
|
|
|
|
export interface Props {
|
|
scrollY: Animated.SharedValue<number>
|
|
account: Mastodon.Account | undefined
|
|
}
|
|
|
|
const AccountNav = React.memo(
|
|
({ scrollY, account }: Props) => {
|
|
const { colors } = useTheme()
|
|
const headerHeight = useSafeAreaInsets().top + 44
|
|
|
|
const nameY =
|
|
Dimensions.get('screen').width / 3 +
|
|
StyleConstants.Avatar.L -
|
|
StyleConstants.Spacing.Global.PagePadding * 2 +
|
|
StyleConstants.Spacing.M -
|
|
headerHeight
|
|
|
|
const styleOpacity = useAnimatedStyle(() => {
|
|
return {
|
|
opacity: interpolate(scrollY.value, [0, 200], [0, 1], Extrapolate.CLAMP)
|
|
}
|
|
})
|
|
const styleMarginTop = useAnimatedStyle(() => {
|
|
return {
|
|
marginTop: interpolate(
|
|
scrollY.value,
|
|
[nameY, nameY + 20],
|
|
[50, 0],
|
|
Extrapolate.CLAMP
|
|
)
|
|
}
|
|
})
|
|
|
|
return (
|
|
<Animated.View
|
|
style={[
|
|
styles.base,
|
|
styleOpacity,
|
|
{ backgroundColor: colors.backgroundDefault, height: headerHeight }
|
|
]}
|
|
>
|
|
<View
|
|
style={[
|
|
styles.content,
|
|
{
|
|
marginTop:
|
|
useSafeAreaInsets().top + (44 - StyleConstants.Font.Size.L) / 2
|
|
}
|
|
]}
|
|
>
|
|
<Animated.View style={[styles.display_name, styleMarginTop]}>
|
|
{account ? (
|
|
<Text numberOfLines={1}>
|
|
<ParseEmojis
|
|
content={account.display_name || account.username}
|
|
emojis={account.emojis}
|
|
fontBold
|
|
/>
|
|
</Text>
|
|
) : null}
|
|
</Animated.View>
|
|
</View>
|
|
</Animated.View>
|
|
)
|
|
},
|
|
(_, next) => next.account === undefined
|
|
)
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
...StyleSheet.absoluteFillObject,
|
|
zIndex: 99
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
overflow: 'hidden'
|
|
},
|
|
display_name: {
|
|
flexDirection: 'row'
|
|
}
|
|
})
|
|
|
|
export default AccountNav
|