* Add the channel options to get into playbooks (#8750) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Address design issues * Add requested comment --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Playbooks database (#8802) * Add lastPlaybookFetchAt to channel table (#8916) * Add lastPlaybookFetchAt to channel table * Add missing commit * Use my_channel table instead * Fix test * Address feedback * First implementation of playbooks API (#8897) * First implementation of playbooks API * Add version check * Address feedback * Fix test * Add last fetch at usage and other improvements * Simplify test * Add sort_order, update_at and previousReminder columns (#8927) * Add sort_order, update_at and previousReminder columns * Remove order from the schema * Fix tests * Add tests * Add websockets for playbooks (#8947) * Add websocket events for playbooks * Fix typo * Add playbook run list (#8761) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Fix merge * Add API related functionality --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Add playbooks run details (#8872) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Add playbooks run details * Fix merge * Add API related functionality * Add API related changes * Order fixes * Several fixes * Add error state on playbook run * i18n-extract * Fix tests * Fix test * Several fixes * Fixes and add missing UI elements * i18n-extract * Fix tests * Remove files from bad merge --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Add missing tests for playbooks (#8976) * Add the channel options to get into playbooks * Use playbook run id instead of playbook id * i18n * Fix issues and move playbooks to the products folder * Address some tests * Fix test * Add playbook run list * Add missing texts * Add back button support and item size to flash list * Address design issues * Add requested comment * Standardize tag and use it in the card * Add playbooks run details * Fix merge * Add API related functionality * Add API related changes * Order fixes * Several fixes * Add error state on playbook run * i18n-extract * Fix tests * Fix test * Several fixes * Fixes and add missing UI elements * i18n-extract * Fix tests * Remove files from bad merge * Add tests * Fix typo * Add missing strings * Fix tests and skip some * Fix test * Fix typo --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com> * Address feedback * Address feedback and fix tests * Address comments and fix tests * Address feedback * Address plugin changes and fix bugs --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
179 lines
5.9 KiB
TypeScript
179 lines
5.9 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback} from 'react';
|
|
import {useIntl, type MessageDescriptor} from 'react-intl';
|
|
import {Platform, type StyleProp, Text, type TextStyle, TouchableOpacity, View, type ViewStyle} from 'react-native';
|
|
|
|
import FormattedText from '@components/formatted_text';
|
|
import {useTheme} from '@context/theme';
|
|
import {useIsTablet} from '@hooks/device';
|
|
import {usePreventDoubleTap} from '@hooks/utils';
|
|
import {BOTTOM_SHEET_ANDROID_OFFSET} from '@screens/bottom_sheet';
|
|
import {TITLE_HEIGHT} from '@screens/bottom_sheet/content';
|
|
import {bottomSheet} from '@screens/navigation';
|
|
import {bottomSheetSnapPoint} from '@utils/helpers';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
import UserAvatar from './user_avatar';
|
|
import UsersList from './users_list';
|
|
|
|
import type UserModel from '@typings/database/models/servers/user';
|
|
import type {AvailableScreens} from '@typings/screens/navigation';
|
|
|
|
const OVERFLOW_DISPLAY_LIMIT = 99;
|
|
const USER_ROW_HEIGHT = 40;
|
|
|
|
type Props = {
|
|
channelId?: string;
|
|
location: AvailableScreens;
|
|
users: UserModel[];
|
|
breakAt?: number;
|
|
style?: StyleProp<ViewStyle>;
|
|
noBorder?: boolean;
|
|
avatarStyle?: StyleProp<ViewStyle>;
|
|
overflowContainerStyle?: StyleProp<ViewStyle>;
|
|
overflowItemStyle?: StyleProp<ViewStyle>;
|
|
overflowTextStyle?: StyleProp<TextStyle>;
|
|
bottomSheetTitle: MessageDescriptor;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
const size = 24;
|
|
const imgOverlap = -6;
|
|
|
|
return {
|
|
container: {
|
|
flexDirection: 'row',
|
|
},
|
|
avatarCommon: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
width: size,
|
|
height: size,
|
|
borderWidth: (size / 2) + 1,
|
|
borderColor: theme.centerChannelBg,
|
|
backgroundColor: theme.centerChannelBg,
|
|
borderRadius: size / 2,
|
|
},
|
|
noBorder: {
|
|
borderWidth: 0,
|
|
},
|
|
notFirstAvatars: {
|
|
marginLeft: imgOverlap,
|
|
},
|
|
overflowContainer: {
|
|
borderRadius: size / 2,
|
|
borderWidth: 1,
|
|
marginLeft: imgOverlap,
|
|
},
|
|
overflowItem: {
|
|
borderRadius: size / 2,
|
|
borderWidth: 1,
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.08),
|
|
},
|
|
overflowText: {
|
|
fontSize: 10,
|
|
fontWeight: 'bold',
|
|
color: changeOpacity(theme.centerChannelColor, 0.64),
|
|
textAlign: 'center',
|
|
},
|
|
listHeader: {
|
|
marginBottom: 12,
|
|
},
|
|
listHeaderText: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Heading', 600, 'SemiBold'),
|
|
},
|
|
};
|
|
});
|
|
|
|
const UserAvatarsStack = ({
|
|
breakAt = 3,
|
|
channelId,
|
|
location,
|
|
style: baseContainerStyle,
|
|
users,
|
|
noBorder = false,
|
|
avatarStyle,
|
|
overflowContainerStyle,
|
|
overflowItemStyle,
|
|
overflowTextStyle,
|
|
bottomSheetTitle,
|
|
}: Props) => {
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
const intl = useIntl();
|
|
const isTablet = useIsTablet();
|
|
|
|
const showParticipantsList = usePreventDoubleTap(useCallback(() => {
|
|
const renderContent = () => (
|
|
<>
|
|
{!isTablet && (
|
|
<View style={style.listHeader}>
|
|
<FormattedText
|
|
{...bottomSheetTitle}
|
|
style={style.listHeaderText}
|
|
/>
|
|
</View>
|
|
)}
|
|
<UsersList
|
|
channelId={channelId}
|
|
location={location}
|
|
users={users}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
let height = bottomSheetSnapPoint(Math.min(users.length, 5), USER_ROW_HEIGHT) + TITLE_HEIGHT;
|
|
if (Platform.OS === 'android') {
|
|
height += BOTTOM_SHEET_ANDROID_OFFSET;
|
|
}
|
|
|
|
const snapPoints: Array<string | number> = [1, height];
|
|
if (users.length > 5) {
|
|
snapPoints.push('80%');
|
|
}
|
|
|
|
bottomSheet({
|
|
closeButtonId: 'close-set-user-status',
|
|
renderContent,
|
|
initialSnapIndex: 1,
|
|
snapPoints,
|
|
title: intl.formatMessage(bottomSheetTitle),
|
|
theme,
|
|
});
|
|
}, [users, intl, bottomSheetTitle, theme, isTablet, style.listHeader, style.listHeaderText, channelId, location]));
|
|
|
|
const displayUsers = users.slice(0, breakAt);
|
|
const overflowUsersCount = Math.min(users.length - displayUsers.length, OVERFLOW_DISPLAY_LIMIT);
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={showParticipantsList}
|
|
style={baseContainerStyle}
|
|
>
|
|
<View style={style.container}>
|
|
{displayUsers.map((user, index) => (
|
|
<UserAvatar
|
|
key={user.id}
|
|
style={index === 0 ? [style.avatarCommon, noBorder && style.noBorder, avatarStyle] : [style.avatarCommon, style.notFirstAvatars, noBorder && style.noBorder, avatarStyle]}
|
|
user={user}
|
|
/>
|
|
))}
|
|
{Boolean(overflowUsersCount) && (
|
|
<View style={[style.avatarCommon, style.overflowContainer, noBorder && style.noBorder, overflowContainerStyle]}>
|
|
<View style={[style.avatarCommon, style.overflowItem, noBorder && style.noBorder, overflowItemStyle]}>
|
|
<Text style={[style.overflowText, overflowTextStyle]}>
|
|
{'+' + overflowUsersCount.toString()}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
)}
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
};
|
|
|
|
export default UserAvatarsStack;
|