import React, { Component } from 'react'; import { View, Text, Animated, Easing, TouchableWithoutFeedback, TouchableOpacity, FlatList, Linking } from 'react-native'; import { batch, connect } from 'react-redux'; import { withSafeAreaInsets } from 'react-native-safe-area-context'; import { Subscription } from 'rxjs'; import * as List from '../../containers/List'; import Button from '../../containers/Button'; import { toggleServerDropdown } from '../../actions/rooms'; import { selectServerRequest, serverInitAdd } from '../../actions/server'; import { appStart } from '../../actions/app'; import I18n from '../../i18n'; import EventEmitter from '../../utils/events'; import ServerItem from '../../containers/ServerItem'; import database from '../../lib/database'; import { themes, TOKEN_KEY } from '../../lib/constants'; import { withTheme } from '../../theme'; import { KEY_COMMAND, handleCommandSelectServer, IKeyCommandEvent } from '../../commands'; import { isTablet } from '../../utils/deviceInfo'; import { localAuthenticate } from '../../utils/localAuthentication'; import { showConfirmationAlert } from '../../utils/info'; import log, { events, logEvent } from '../../utils/log'; import { headerHeight } from '../../containers/Header'; import { goRoom } from '../../utils/goRoom'; import UserPreferences from '../../lib/methods/userPreferences'; import { IApplicationState, IBaseScreen, RootEnum, TServerModel } from '../../definitions'; import styles from './styles'; import { ChatsStackParamList } from '../../stacks/types'; import { removeServer } from '../../lib/methods'; const ROW_HEIGHT = 68; const ANIMATION_DURATION = 200; interface IServerDropdownProps extends IBaseScreen { insets?: { top: number; }; closeServerDropdown: boolean; server: string; isMasterDetail: boolean; } interface IServerDropdownState { servers: TServerModel[]; } class ServerDropdown extends Component { private animatedValue: Animated.Value; private subscription?: Subscription; private newServerTimeout?: ReturnType | false; constructor(props: IServerDropdownProps) { super(props); this.state = { servers: [] }; this.animatedValue = new Animated.Value(0); } async componentDidMount() { const serversDB = database.servers; const observable = await serversDB.get('servers').query().observeWithColumns(['name']); this.subscription = observable.subscribe(data => { this.setState({ servers: data }); }); Animated.timing(this.animatedValue, { toValue: 1, duration: ANIMATION_DURATION, easing: Easing.inOut(Easing.quad), useNativeDriver: true }).start(); if (isTablet) { EventEmitter.addEventListener(KEY_COMMAND, this.handleCommands); } } componentDidUpdate(prevProps: IServerDropdownProps) { const { closeServerDropdown } = this.props; if (prevProps.closeServerDropdown !== closeServerDropdown) { this.close(); } } componentWillUnmount() { if (this.newServerTimeout) { clearTimeout(this.newServerTimeout); this.newServerTimeout = false; } if (this.subscription && this.subscription.unsubscribe) { this.subscription.unsubscribe(); } if (isTablet) { EventEmitter.removeListener(KEY_COMMAND, this.handleCommands); } } close = () => { const { dispatch } = this.props; Animated.timing(this.animatedValue, { toValue: 0, duration: ANIMATION_DURATION, easing: Easing.inOut(Easing.quad), useNativeDriver: true }).start(() => dispatch(toggleServerDropdown())); }; createWorkspace = async () => { logEvent(events.RL_CREATE_NEW_WORKSPACE); try { await Linking.openURL('https://cloud.rocket.chat/trial'); } catch (e) { log(e); } }; navToNewServer = (previousServer: string) => { const { dispatch } = this.props; batch(() => { dispatch(appStart({ root: RootEnum.ROOT_OUTSIDE })); dispatch(serverInitAdd(previousServer)); }); }; addServer = () => { logEvent(events.RL_ADD_SERVER); const { server } = this.props; this.close(); setTimeout(() => { this.navToNewServer(server); }, ANIMATION_DURATION); }; select = async (server: string, version?: string) => { const { server: currentServer, dispatch, isMasterDetail } = this.props; this.close(); if (currentServer !== server) { logEvent(events.RL_CHANGE_SERVER); const userId = UserPreferences.getString(`${TOKEN_KEY}-${server}`); if (isMasterDetail) { goRoom({ item: {}, isMasterDetail }); } if (!userId) { setTimeout(() => { this.navToNewServer(currentServer); this.newServerTimeout = setTimeout(() => { EventEmitter.emit('NewServer', { server }); }, ANIMATION_DURATION); }, ANIMATION_DURATION); } else { await localAuthenticate(server); dispatch(selectServerRequest(server, version, true, true)); } } }; remove = (server: string) => showConfirmationAlert({ message: I18n.t('This_will_remove_all_data_from_this_server'), confirmationText: I18n.t('Delete'), onPress: async () => { this.close(); try { await removeServer({ server }); } catch { // do nothing } } }); handleCommands = ({ event }: { event: IKeyCommandEvent }) => { const { servers } = this.state; const { navigation } = this.props; const { input } = event as unknown as { input: number }; if (handleCommandSelectServer(event)) { if (servers[input - 1]) { this.select(servers[input - 1].id); navigation.navigate('RoomView'); } } }; renderServer = ({ item }: { item: { id: string; iconURL: string; name: string; version: string } }) => { const { server } = this.props; return ( this.select(item.id, item.version)} onLongPress={() => item.id === server || this.remove(item.id)} hasCheck={item.id === server} /> ); }; render() { const { servers } = this.state; const { theme, isMasterDetail, insets } = this.props; const maxRows = 4; const initialTop = 87 + Math.min(servers.length, maxRows) * ROW_HEIGHT; const statusBarHeight = insets?.top ?? 0; const heightDestination = isMasterDetail ? headerHeight + statusBarHeight : 0; const translateY = this.animatedValue.interpolate({ inputRange: [0, 1], outputRange: [-initialTop, heightDestination] }); const backdropOpacity = this.animatedValue.interpolate({ inputRange: [0, 1], outputRange: [0, themes[theme].backdropOpacity] }); return ( <> {I18n.t('Server')} {I18n.t('Add_Server')} item.id} renderItem={this.renderServer} ItemSeparatorComponent={List.Separator} keyboardShouldPersistTaps='always' />