* Update DM and thread title/subtitle as well as navbar rounded corners * Fix rounded corners * ux review
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import Animated, {useAnimatedStyle} from 'react-native-reanimated';
|
|
|
|
import RoundedHeaderContext from '@components/rounded_header_context';
|
|
|
|
type Props = {
|
|
defaultHeight: number;
|
|
hasSearch: boolean;
|
|
isLargeTitle: boolean;
|
|
largeHeight: number;
|
|
scrollValue?: Animated.SharedValue<number>;
|
|
top: number;
|
|
}
|
|
|
|
const NavigationHeaderContext = ({
|
|
defaultHeight,
|
|
hasSearch,
|
|
isLargeTitle,
|
|
largeHeight,
|
|
scrollValue,
|
|
top,
|
|
}: Props) => {
|
|
const marginTop = useAnimatedStyle(() => {
|
|
const normal = defaultHeight + top;
|
|
const calculated = -(top + (scrollValue?.value || 0));
|
|
const searchHeight = hasSearch ? defaultHeight + 9 : 0;
|
|
let margin: number;
|
|
if (isLargeTitle) {
|
|
margin = Math.max((-(scrollValue?.value || 0) + largeHeight + searchHeight), normal);
|
|
} else {
|
|
margin = Math.max((normal + calculated), normal);
|
|
}
|
|
|
|
return {
|
|
position: 'absolute',
|
|
width: '100%',
|
|
height: '100%',
|
|
marginTop: margin,
|
|
};
|
|
}, [defaultHeight, largeHeight, isLargeTitle, hasSearch]);
|
|
|
|
return (
|
|
<Animated.View style={marginTop}>
|
|
<RoundedHeaderContext/>
|
|
</Animated.View>
|
|
);
|
|
};
|
|
|
|
export default NavigationHeaderContext;
|
|
|