forked from Ivasoft/mattermost-mobile
* Performance fixes and fix manual sort * Fix test * Use combineLatestWith * Revert unread on top
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useEffect} from 'react';
|
|
import Animated, {useAnimatedStyle, useSharedValue, withTiming} from 'react-native-reanimated';
|
|
|
|
import {TEAM_SIDEBAR_WIDTH} from '@constants/view';
|
|
import {useTheme} from '@context/theme';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
import AddTeam from './add_team';
|
|
import TeamList from './team_list';
|
|
|
|
type Props = {
|
|
iconPad?: boolean;
|
|
canJoinOtherTeams: boolean;
|
|
hasMoreThanOneTeam: boolean;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
container: {
|
|
width: TEAM_SIDEBAR_WIDTH,
|
|
height: '100%',
|
|
backgroundColor: theme.sidebarBg,
|
|
paddingTop: 10,
|
|
},
|
|
listContainer: {
|
|
backgroundColor: theme.sidebarHeaderBg,
|
|
borderTopRightRadius: 12,
|
|
flex: 1,
|
|
},
|
|
iconMargin: {
|
|
marginTop: 44,
|
|
},
|
|
};
|
|
});
|
|
|
|
export default function TeamSidebar({iconPad, canJoinOtherTeams, hasMoreThanOneTeam}: Props) {
|
|
const initialWidth = hasMoreThanOneTeam ? TEAM_SIDEBAR_WIDTH : 0;
|
|
const width = useSharedValue(initialWidth);
|
|
const marginTop = useSharedValue(iconPad ? 44 : 0);
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
|
|
const transform = useAnimatedStyle(() => {
|
|
return {
|
|
width: withTiming(width.value, {duration: 350}),
|
|
};
|
|
}, []);
|
|
|
|
const serverStyle = useAnimatedStyle(() => ({
|
|
marginTop: withTiming(marginTop.value, {duration: 350}),
|
|
}), []);
|
|
|
|
useEffect(() => {
|
|
marginTop.value = iconPad ? 44 : 0;
|
|
}, [iconPad]);
|
|
|
|
useEffect(() => {
|
|
width.value = hasMoreThanOneTeam ? TEAM_SIDEBAR_WIDTH : 0;
|
|
}, [hasMoreThanOneTeam]);
|
|
|
|
return (
|
|
<Animated.View style={[styles.container, transform]}>
|
|
<Animated.View style={[styles.listContainer, serverStyle]}>
|
|
<TeamList testID='team_sidebar.team_list'/>
|
|
{canJoinOtherTeams && (
|
|
<AddTeam/>
|
|
)}
|
|
</Animated.View>
|
|
</Animated.View>
|
|
);
|
|
}
|