Files
mattermost-mobile/app/components/threads_button/threads_button.tsx
Anurag Shivarathri 5dd3121bbc [Gekidou MM-43527] Add threads item to the channel switcher (#6657)
* Threads item in channel switcher

* Misc

* Updated test & renamed type

* Reverted unwanted changes

* Changed thread text to i18n

* feedback fix

* Merge conflict steps

* Merge fix

* test fix

* Added onPress to the dependencies

* Moved the term matching logic to the useMemo block

* Misc

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-11-25 18:51:04 +05:30

133 lines
3.9 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useCallback, useMemo} from 'react';
import {TouchableOpacity, View} from 'react-native';
import {switchToGlobalThreads} from '@actions/local/thread';
import Badge from '@components/badge';
import {
getStyleSheet as getChannelItemStyleSheet,
textStyle as channelItemTextStyle,
} from '@components/channel_item/channel_item';
import CompassIcon from '@components/compass_icon';
import FormattedText from '@components/formatted_text';
import {useServerUrl} from '@context/server';
import {useTheme} from '@context/theme';
import {useIsTablet} from '@hooks/device';
import {preventDoubleTap} from '@utils/tap';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
baseContainer: {
marginLeft: -18,
marginRight: -20,
},
icon: {
color: changeOpacity(theme.sidebarText, 0.5),
fontSize: 24,
},
iconActive: {
color: theme.sidebarText,
},
iconInfo: {
color: changeOpacity(theme.centerChannelColor, 0.72),
},
text: {
flex: 1,
},
}));
type Props = {
currentChannelId: string;
groupUnreadsSeparately: boolean;
isInfo?: boolean;
onlyUnreads: boolean;
onPress?: () => void;
unreadsAndMentions: {
unreads: boolean;
mentions: number;
};
};
const ThreadsButton = ({currentChannelId, groupUnreadsSeparately, isInfo, onlyUnreads, onPress, unreadsAndMentions}: Props) => {
const isTablet = useIsTablet();
const serverUrl = useServerUrl();
const theme = useTheme();
const styles = getChannelItemStyleSheet(theme);
const customStyles = getStyleSheet(theme);
const handlePress = useCallback(preventDoubleTap(() => {
if (onPress) {
onPress();
} else {
switchToGlobalThreads(serverUrl);
}
}), [onPress, serverUrl]);
const {unreads, mentions} = unreadsAndMentions;
const isActive = isTablet && !currentChannelId;
const [containerStyle, iconStyle, textStyle, badgeStyle] = useMemo(() => {
const container = [
styles.container,
isActive && styles.activeItem,
];
const icon = [
customStyles.icon,
(isActive || unreads) && customStyles.iconActive,
isInfo && customStyles.iconInfo,
];
const text = [
customStyles.text,
unreads ? channelItemTextStyle.bold : channelItemTextStyle.regular,
styles.text,
unreads && styles.highlight,
isActive && styles.textActive,
isInfo && styles.textInfo,
];
const badge = [
styles.badge,
isInfo && styles.infoBadge,
];
return [container, icon, text, badge];
}, [customStyles, isActive, isInfo, styles, unreads]);
if (groupUnreadsSeparately && (onlyUnreads && !isActive && !unreads && !mentions)) {
return null;
}
return (
<TouchableOpacity
onPress={handlePress}
testID='channel_list.threads.button'
>
<View style={customStyles.baseContainer}>
<View style={containerStyle}>
<CompassIcon
name='message-text-outline'
style={iconStyle}
/>
<FormattedText
id='threads'
defaultMessage='Threads'
style={textStyle}
/>
<Badge
value={mentions}
style={badgeStyle}
visible={mentions > 0}
/>
</View>
</View>
</TouchableOpacity>
);
};
export default React.memo(ThreadsButton);