import React, { memo, useState, useEffect, useRef } from 'react'; import Modal from 'react-modal'; import { useSelector, useDispatch } from 'react-redux'; import { FiUsers, FiX } from 'react-icons/fi'; import Text from 'components/Text'; import useModal from 'components/modals/useModal'; import Button from 'components/ui/Button'; import { join } from 'state/channels'; import { searchChannels } from 'state/channelSearch'; import { linkify } from 'utils'; import colorify from 'utils/colorify'; const Channel = memo(({ network, name, topic, userCount, joined }) => { const dispatch = useDispatch(); const handleClick = () => dispatch(join([name], network)); return (

{name}

{userCount} {joined ? ( Joined ) : ( )}

{colorify(linkify(topic))}

); }); const AddChannel = () => { const [modal, network, closeModal] = useModal('channel'); const channels = useSelector(state => state.channels); const search = useSelector(state => state.channelSearch); const dispatch = useDispatch(); const [q, setQ] = useState(''); const inputEl = useRef(); const resultsEl = useRef(); const prevSearch = useRef(''); useEffect(() => { if (modal.isOpen) { dispatch(searchChannels(network, '')); setTimeout(() => inputEl.current.focus(), 0); } else { prevSearch.current = ''; setQ(''); } }, [modal.isOpen]); const handleSearch = e => { let nextQ = e.target.value.trim().toLowerCase(); setQ(nextQ); if (nextQ !== q) { resultsEl.current.scrollTop = 0; while (nextQ.charAt(0) === '#') { nextQ = nextQ.slice(1); } if (nextQ !== prevSearch.current) { prevSearch.current = nextQ; dispatch(searchChannels(network, nextQ)); } } }; const handleKey = e => { if (e.key === 'Enter') { let channel = e.target.value.trim(); if (channel !== '') { closeModal(false); if (channel.charAt(0) !== '#') { channel = `#${channel}`; } dispatch(join([channel], network)); } } }; const handleLoadMore = () => dispatch(searchChannels(network, q, search.results.length)); let hasMore = !search.end; if (hasMore) { if (search.results.length < 10) { hasMore = false; } else if ( search.results.length > 10 && (search.results.length - 10) % 50 !== 0 ) { hasMore = false; } } return (
{search.results.map(channel => ( ))} {hasMore && ( )}
); }; export default AddChannel;