Files
mattermost-mobile/app/components/threads_button/threads_button.tsx
Daniel Espino García a8ee3a1b5a Fix and unify channel and user list items (#7175)
* Fix channel and user list items

* Fixes on members and create a dm lists

* Fix tutorial and ipad

* Fix test

* Address feedback

* Several fixes on Android

* Fix tests

* Address feedback

* Add more non breaking strings

---------

Co-authored-by: Daniel Espino <danielespino@MacBook-Pro-de-Daniel.local>
2023-04-19 10:13:14 +02:00

146 lines
4.2 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,
ROW_HEIGHT,
textStyle as channelItemTextStyle,
} from '@components/channel_item/channel_item';
import CompassIcon from '@components/compass_icon';
import FormattedText from '@components/formatted_text';
import {HOME_PADDING} from '@constants/view';
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) => ({
icon: {
color: changeOpacity(theme.sidebarText, 0.5),
fontSize: 24,
marginRight: 12,
},
iconActive: {
color: theme.sidebarText,
},
iconInfo: {
color: changeOpacity(theme.centerChannelColor, 0.72),
},
text: {
flex: 1,
},
}));
type Props = {
currentChannelId: string;
groupUnreadsSeparately: boolean;
onCenterBg?: boolean;
onlyUnreads: boolean;
onPress?: () => void;
shouldHighlighActive?: boolean;
unreadsAndMentions: {
unreads: boolean;
mentions: number;
};
isOnHome?: boolean;
};
const ThreadsButton = ({
currentChannelId,
groupUnreadsSeparately,
onCenterBg,
onlyUnreads,
onPress,
unreadsAndMentions,
shouldHighlighActive = false,
isOnHome = false,
}: 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 && shouldHighlighActive && !currentChannelId;
const [containerStyle, iconStyle, textStyle, badgeStyle] = useMemo(() => {
const container = [
styles.container,
isOnHome && HOME_PADDING,
isActive && styles.activeItem,
isActive && isOnHome && {
paddingLeft: HOME_PADDING.paddingLeft - styles.activeItem.borderLeftWidth,
},
{minHeight: ROW_HEIGHT},
];
const icon = [
customStyles.icon,
(isActive || unreads) && customStyles.iconActive,
onCenterBg && customStyles.iconInfo,
];
const text = [
customStyles.text,
unreads ? channelItemTextStyle.bold : channelItemTextStyle.regular,
styles.text,
unreads && styles.highlight,
isActive && styles.textActive,
onCenterBg && styles.textOnCenterBg,
];
const badge = [
styles.badge,
onCenterBg && styles.badgeOnCenterBg,
];
return [container, icon, text, badge];
}, [customStyles, isActive, onCenterBg, styles, unreads, isOnHome]);
if (groupUnreadsSeparately && (onlyUnreads && !isActive && !unreads && !mentions)) {
return null;
}
return (
<TouchableOpacity
onPress={handlePress}
testID='channel_list.threads.button'
>
<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>
</TouchableOpacity>
);
};
export default React.memo(ThreadsButton);