Rocket.Chat.ReactNative/app/views/SelectedUsersView/Header.tsx

75 lines
2.1 KiB
TypeScript
Raw Normal View History

import React, { useRef } from 'react';
import { FlatList, View, Text, StyleSheet } from 'react-native';
import { themes } from '../../lib/constants';
import SearchBox from '../../containers/SearchBox';
import I18n from '../../i18n';
import { ISelectedUser } from '../../reducers/selectedUsers';
import { useTheme } from '../../theme';
import sharedStyles from '../Styles';
import { useAppSelector } from '../../lib/hooks';
import Chip from '../../containers/Chip';
const styles = StyleSheet.create({
selectedText: {
marginLeft: 16,
marginBottom: 12,
fontSize: 12,
...sharedStyles.textRegular
},
contentContainerList: {
paddingHorizontal: 16,
marginBottom: 16
}
});
const Header = ({
onChangeText,
useRealName,
onPressItem
}: {
useRealName: boolean;
onChangeText: (text: string) => void;
onPressItem: (userItem: ISelectedUser) => void;
}) => {
const flatlist = useRef<FlatList>();
const { theme } = useTheme();
const { users } = useAppSelector(state => ({
users: state.selectedUsers.users
}));
const onContentSizeChange = () => flatlist?.current?.scrollToEnd({ animated: true });
return (
feat: mobile color normalization (#5616) * chore: remove auxiliaryText color * chore: remove titleText * chore: password colors change * chore: use fontDefault on ActionSheet item * wip: type * chore: set custom icon default color * remove tintActive color * only set color when checked * remove icon color * remove tintActive * chore: remove STATUS_COLORS * chore: remove mentions colors * chore: remove switch color * chore: background color * chore: auxiliaryBackground * chore: one local colors * wip: some colors * wip: colors * wip: colors * wip: end colors * test: update * chore: fix some colors * chore: fix lint * chore: back to text props * chore: fix ts errors * revert * chore: fix lint * test: update snapshot * update storybook * cocoapods * fix app theme color * remove unused color * fix login service button color * remove unused color * unused backgroundColor * fix background color * fix transparent color * fix background color * wip: key * fix color * chore: revert to 1 tick * test: update * chore: use same color as front end * test: update * fix radius * fix background color * fix wrong color * change some colors * chore: update stories * chore: fix button style * chore: fix item color * lint * update snapshot * link * remove background color * change send to channel color * call icons * video conf colors * fix app default color * bottom sheet * remove background * two factor color * update tests * feat: add force-logout stream listener * remove icon colors * improve badge color * update tests * fix header colors * fix collapsible icon color * imagePreview color * wip * update test * lint --------- Co-authored-by: Diego Mello <diegolmello@gmail.com>
2024-04-18 10:19:54 +00:00
<View style={{ backgroundColor: themes[theme].surfaceRoom }}>
<SearchBox onChangeText={(text: string) => onChangeText(text)} testID='select-users-view-search' />
{users.length === 0 ? null : (
<View>
feat: mobile color normalization (#5616) * chore: remove auxiliaryText color * chore: remove titleText * chore: password colors change * chore: use fontDefault on ActionSheet item * wip: type * chore: set custom icon default color * remove tintActive color * only set color when checked * remove icon color * remove tintActive * chore: remove STATUS_COLORS * chore: remove mentions colors * chore: remove switch color * chore: background color * chore: auxiliaryBackground * chore: one local colors * wip: some colors * wip: colors * wip: colors * wip: end colors * test: update * chore: fix some colors * chore: fix lint * chore: back to text props * chore: fix ts errors * revert * chore: fix lint * test: update snapshot * update storybook * cocoapods * fix app theme color * remove unused color * fix login service button color * remove unused color * unused backgroundColor * fix background color * fix transparent color * fix background color * wip: key * fix color * chore: revert to 1 tick * test: update * chore: use same color as front end * test: update * fix radius * fix background color * fix wrong color * change some colors * chore: update stories * chore: fix button style * chore: fix item color * lint * update snapshot * link * remove background color * change send to channel color * call icons * video conf colors * fix app default color * bottom sheet * remove background * two factor color * update tests * feat: add force-logout stream listener * remove icon colors * improve badge color * update tests * fix header colors * fix collapsible icon color * imagePreview color * wip * update test * lint --------- Co-authored-by: Diego Mello <diegolmello@gmail.com>
2024-04-18 10:19:54 +00:00
<Text style={[styles.selectedText, { color: themes[theme].fontHint }]}>
{I18n.t('N_Selected_members', { n: users.length })}
</Text>
<FlatList
data={users}
ref={(ref: FlatList) => (flatlist.current = ref)}
onContentSizeChange={onContentSizeChange}
keyExtractor={item => item._id}
renderItem={({ item }) => {
const name = useRealName && item.fname ? item.fname : item.name;
const username = item.search ? (item.username as string) : item.name;
return (
<Chip text={name} avatar={username} onPress={() => onPressItem(item)} testID={`selected-user-${item.name}`} />
);
}}
keyboardShouldPersistTaps='always'
contentContainerStyle={styles.contentContainerList}
horizontal
/>
</View>
)}
</View>
);
};
export default Header;