import React, { useState } from 'react'; import { Text } from 'react-native'; import { themes } from '../../constants/colors'; import { MultiSelect } from '../../containers/UIKit/MultiSelect'; import { ISearchLocal } from '../../definitions'; import I18n from '../../i18n'; import RocketChat from '../../lib/rocketchat'; import { avatarURL } from '../../utils/avatar'; import debounce from '../../utils/debounce'; import { ICreateDiscussionViewSelectChannel } from './interfaces'; import styles from './styles'; const SelectChannel = ({ server, token, userId, onChannelSelect, initial, blockUnauthenticatedAccess, serverVersion, theme }: ICreateDiscussionViewSelectChannel): JSX.Element => { const [channels, setChannels] = useState([]); const getChannels = debounce(async (keyword = '') => { try { const res = await RocketChat.localSearch({ text: keyword }); setChannels(res); } catch { // do nothing } }, 300); const getAvatar = (item: any) => avatarURL({ text: RocketChat.getRoomAvatar(item), type: item.t, user: { id: userId, token }, server, avatarETag: item.avatarETag, rid: item.rid, blockUnauthenticatedAccess, serverVersion }); return ( <> {I18n.t('Parent_channel_or_group')} ({ value: channel.name || channel.fname, text: { text: RocketChat.getRoomTitle(channel) }, imageUrl: getAvatar(channel) }))} onClose={() => setChannels([])} placeholder={{ text: `${I18n.t('Select_a_Channel')}...` }} /> ); }; export default SelectChannel;