import { Q } from '@nozbe/watermelondb'; import orderBy from 'lodash/orderBy'; import React from 'react'; import { FlatList, View } from 'react-native'; import { connect } from 'react-redux'; import { Subscription } from 'rxjs'; import { addUser, removeUser, reset } from '../actions/selectedUsers'; import { themes } from '../lib/constants'; import * as HeaderButton from '../containers/HeaderButton'; import * as List from '../containers/List'; import Loading from '../containers/Loading'; import SafeAreaView from '../containers/SafeAreaView'; import SearchBox from '../containers/SearchBox'; import StatusBar from '../containers/StatusBar'; import { IApplicationState, IBaseScreen, ISearch, ISearchLocal, IUser } from '../definitions'; import I18n from '../i18n'; import database from '../lib/database'; import UserItem from '../containers/UserItem'; import { ISelectedUser } from '../reducers/selectedUsers'; import { getUserSelector } from '../selectors/login'; import { ChatsStackParamList } from '../stacks/types'; import { withTheme } from '../theme'; import { showErrorAlert } from '../lib/methods/helpers/info'; import log, { events, logEvent } from '../lib/methods/helpers/log'; import sharedStyles from './Styles'; import { search } from '../lib/methods'; import { isGroupChat } from '../lib/methods/helpers'; const ITEM_WIDTH = 250; const getItemLayout = (_: any, index: number) => ({ length: ITEM_WIDTH, offset: ITEM_WIDTH * index, index }); interface ISelectedUsersViewState { maxUsers?: number; search: (ISearch | ISearchLocal)[]; chats: ISelectedUser[]; } interface ISelectedUsersViewProps extends IBaseScreen { users: ISelectedUser[]; loading: boolean; user: IUser; baseUrl: string; } class SelectedUsersView extends React.Component { private flatlist?: FlatList; private querySubscription?: Subscription; constructor(props: ISelectedUsersViewProps) { super(props); this.init(); const maxUsers = props.route.params?.maxUsers; this.state = { maxUsers, search: [], chats: [] }; const { user, dispatch } = this.props; if (this.isGroupChat()) { dispatch(addUser({ _id: user.id, name: user.username, fname: user.name as string })); } this.setHeader(props.route.params?.showButton); } componentDidUpdate(prevProps: ISelectedUsersViewProps) { if (this.isGroupChat()) { const { users } = this.props; if (prevProps.users.length !== users.length) { this.setHeader(users.length > 0); } } } componentWillUnmount() { const { dispatch } = this.props; dispatch(reset()); if (this.querySubscription && this.querySubscription.unsubscribe) { this.querySubscription.unsubscribe(); } } // showButton can be sent as route params or updated by the component setHeader = (showButton?: boolean) => { const { navigation, route } = this.props; const title = route.params?.title ?? I18n.t('Select_Users'); const buttonText = route.params?.buttonText ?? I18n.t('Next'); const maxUsers = route.params?.maxUsers; const nextAction = route.params?.nextAction ?? (() => {}); const options = { title, headerRight: () => (!maxUsers || showButton) && ( ) }; navigation.setOptions(options); }; // eslint-disable-next-line react/sort-comp init = async () => { try { const db = database.active; const observable = await db.get('subscriptions').query(Q.where('t', 'd')).observeWithColumns(['room_updated_at']); this.querySubscription = observable.subscribe(data => { const chats = orderBy(data, ['roomUpdatedAt'], ['desc']) as ISelectedUser[]; this.setState({ chats }); }); } catch (e) { log(e); } }; onSearchChangeText(text: string) { this.handleSearch(text); } handleSearch = async (text: string) => { const result = await search({ text, filterRooms: false }); this.setState({ search: result }); }; isGroupChat = () => { const { maxUsers } = this.state; return maxUsers && maxUsers > 2; }; isChecked = (username: string) => { const { users } = this.props; return users.findIndex(el => el.name === username) !== -1; }; toggleUser = (user: ISelectedUser) => { const { maxUsers } = this.state; const { dispatch, users, user: { username } } = this.props; // Disallow removing self user from the direct message group if (this.isGroupChat() && username === user.name) { return; } if (!this.isChecked(user.name)) { if (this.isGroupChat() && users.length === maxUsers) { return showErrorAlert(I18n.t('Max_number_of_users_allowed_is_number', { maxUsers }), I18n.t('Oops')); } logEvent(events.SELECTED_USERS_ADD_USER); dispatch(addUser(user)); } else { logEvent(events.SELECTED_USERS_REMOVE_USER); dispatch(removeUser(user)); } }; _onPressItem = (id: string, item = {} as ISelectedUser) => { if (item.search) { this.toggleUser({ _id: item._id, name: item.username as string, fname: item.name }); } else { this.toggleUser({ _id: item._id, name: item.name, fname: item.fname }); } }; _onPressSelectedItem = (item: ISelectedUser) => this.toggleUser(item); renderHeader = () => { const { theme } = this.props; return ( this.onSearchChangeText(text)} testID='select-users-view-search' /> {this.renderSelected()} ); }; setFlatListRef = (ref: FlatList) => (this.flatlist = ref); onContentSizeChange = () => this.flatlist?.scrollToEnd({ animated: true }); renderSelected = () => { const { users, theme } = this.props; if (users.length === 0) { return null; } return ( item._id} style={[sharedStyles.separatorTop, { borderColor: themes[theme].separatorColor }]} contentContainerStyle={{ marginVertical: 5 }} renderItem={this.renderSelectedItem} keyboardShouldPersistTaps='always' horizontal /> ); }; renderSelectedItem = ({ item }: { item: ISelectedUser }) => { const { theme } = this.props; return ( this._onPressSelectedItem(item)} testID={`selected-user-${item.name}`} style={{ paddingRight: 15 }} theme={theme} /> ); }; renderItem = ({ item, index }: { item: ISelectedUser; index: number }) => { const { search, chats } = this.state; const { theme } = this.props; const name = item.search ? item.name : item.fname; const username = item.search ? (item.username as string) : item.name; let style = { borderColor: themes[theme].separatorColor }; if (index === 0) { style = { ...style, ...sharedStyles.separatorTop }; } if (search.length > 0 && index === search.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } if (search.length === 0 && index === chats.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } return ( this._onPressItem(item._id, item)} testID={`select-users-view-item-${item.name}`} icon={this.isChecked(username) ? 'check' : null} style={style} theme={theme} /> ); }; renderList = () => { const { search, chats } = this.state; const { theme } = this.props; const searchOrChats = (search.length > 0 ? search : chats) as ISelectedUser[]; // filter DM between multiple users const data = searchOrChats.filter(sub => !isGroupChat(sub)); return ( item._id} renderItem={this.renderItem} ItemSeparatorComponent={List.Separator} ListHeaderComponent={this.renderHeader} contentContainerStyle={{ backgroundColor: themes[theme].backgroundColor }} keyboardShouldPersistTaps='always' /> ); }; render = () => { const { loading } = this.props; return ( {this.renderList()} ); }; } const mapStateToProps = (state: IApplicationState) => ({ baseUrl: state.server.server, users: state.selectedUsers.users, loading: state.selectedUsers.loading, user: getUserSelector(state) }); export default connect(mapStateToProps)(withTheme(SelectedUsersView));