* update dev deps * partial update dependencies * update watermelondb * update rn to 0.76.5, expo to 52.0.18 and others * upgrade android firebase * upgrade detox deps * fix package-lock.json * update emm and paste-input * update turbo-log * update network library * fix tests * review feedback * fix Keyboard blocking signIn button * Fall back to iphone 14 iOS 17.2 simulator as app crashes on iOS 17.4 * changes in deleteCredentialsForServer is causing a crash * withOptions x2 clearly is wrong * re-add cli-platform-apple fix * fix: RN 0.76.5 issue with bottom sheet disappearing (#8478) * experiment, using view vs BottomSheetView * revert previous & try disabling enableDynamicSizing * revert an unintended removal --------- Co-authored-by: yasserfaraazkhan <attitude3cena.yf@gmail.com> Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Rahim Rahman <rahim.rahman@mattermost.com>
89 lines
2.5 KiB
TypeScript
89 lines
2.5 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useMemo} from 'react';
|
|
import {type StyleProp, StyleSheet, type TextStyle, View, type ViewStyle} from 'react-native';
|
|
|
|
import Badge from '@components/badge';
|
|
import CompassIcon from '@components/compass_icon';
|
|
import TouchableWithFeedback from '@components/touchable_with_feedback';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity} from '@utils/theme';
|
|
|
|
type Props = {
|
|
badgeBackgroundColor?: string;
|
|
badgeBorderColor?: string;
|
|
badgeColor?: string;
|
|
badgeStyle?: StyleProp<TextStyle>;
|
|
hasUnreads: boolean;
|
|
iconColor?: string;
|
|
mentionCount: number;
|
|
onPress?: () => void;
|
|
size?: number;
|
|
style?: StyleProp<ViewStyle>;
|
|
testID?: string;
|
|
unreadStyle?: StyleProp<TextStyle>;
|
|
}
|
|
|
|
const hitSlop = {top: 20, bottom: 5, left: 40, right: 20};
|
|
|
|
const styles = StyleSheet.create({
|
|
badge: {
|
|
left: 13,
|
|
top: -8,
|
|
},
|
|
unread: {
|
|
left: 18,
|
|
top: -5,
|
|
},
|
|
});
|
|
|
|
export default function ServerIcon({
|
|
badgeBackgroundColor,
|
|
badgeBorderColor,
|
|
badgeColor,
|
|
badgeStyle,
|
|
hasUnreads,
|
|
iconColor,
|
|
mentionCount,
|
|
onPress,
|
|
size = 24,
|
|
style,
|
|
testID,
|
|
unreadStyle,
|
|
}: Props) {
|
|
const theme = useTheme();
|
|
const hasBadge = Boolean(mentionCount || hasUnreads);
|
|
const count = mentionCount || (hasUnreads ? -1 : 0);
|
|
const memoizedStyle = useMemo(() => {
|
|
return [(badgeStyle || styles.badge), count > -1 ? undefined : (unreadStyle || styles.unread)];
|
|
}, [badgeStyle, count, unreadStyle]);
|
|
|
|
return (
|
|
<View style={style}>
|
|
<TouchableWithFeedback
|
|
disabled={onPress === undefined}
|
|
onPress={onPress}
|
|
type='opacity'
|
|
testID={testID}
|
|
hitSlop={hitSlop}
|
|
>
|
|
<CompassIcon
|
|
size={size}
|
|
name='server-variant'
|
|
color={iconColor || changeOpacity(theme.sidebarHeaderTextColor, 0.56)}
|
|
/>
|
|
<Badge
|
|
borderColor={badgeBorderColor || theme.sidebarTeamBarBg}
|
|
backgroundColor={badgeBackgroundColor}
|
|
color={badgeColor}
|
|
visible={hasBadge}
|
|
style={memoizedStyle}
|
|
testID={`${testID}.badge`}
|
|
value={count}
|
|
/>
|
|
</TouchableWithFeedback>
|
|
</View>
|
|
);
|
|
}
|
|
|