import React, { Component } from 'react' import PropTypes from 'prop-types' import Isvg from 'react-inlinesvg' import { MdSearch } from 'react-icons/lib/md' import { FaAngleDown, FaRepeat } from 'react-icons/lib/fa' import { btc } from 'utils' import ContactsForm from 'components/Contacts/ContactsForm' import OnlineContact from 'components/Contacts/OnlineContact' import PendingContact from 'components/Contacts/PendingContact' import ClosingContact from 'components/Contacts/ClosingContact' import OfflineContact from 'components/Contacts/OfflineContact' import plus from 'icons/plus.svg' import styles from './Contacts.scss' class Contacts extends Component { constructor(props) { super(props) this.state = { refreshing: false } } componentWillMount() { const { fetchChannels, fetchPeers, fetchDescribeNetwork } = this.props fetchChannels() fetchPeers() fetchDescribeNetwork() } render() { const { channels: { searchQuery, filterPulldown, filter, viewType }, currentChannels, activeChannels, nonActiveChannels, pendingOpenChannels, closingPendingChannels, fetchChannels, updateChannelSearchQuery, toggleFilterPulldown, changeFilter, nonActiveFilters, openContactsForm, contactsFormProps, peers } = this.props const refreshClicked = () => { // turn the spinner on this.setState({ refreshing: true }) // store event in icon so we dont get an error when react clears it const icon = this.repeat.childNodes // fetch channels fetchChannels() // wait for the svg to appear as child const svgTimeout = setTimeout(() => { if (icon[0].tagName === 'svg') { // spin icon for 1 sec icon[0].style.animation = 'spin 1000ms linear 1' clearTimeout(svgTimeout) } }, 1) // clear animation after the second so we can reuse it const refreshTimeout = setTimeout(() => { icon[0].style.animation = '' this.setState({ refreshing: false }) clearTimeout(refreshTimeout) }, 1000) } return (

Contacts ({activeChannels.length} online)

Add
updateChannelSearchQuery(event.target.value)} className={`${styles.text} ${styles.input}`} placeholder='Search your friends list...' type='text' id='channelSearch' />

{filter.name}

    { nonActiveFilters.map(f => (
  • changeFilter(f)}> {f.name}
  • )) }
{ this.repeat = ref }}> { this.state.refreshing ? : 'Refresh' }
) } } Contacts.propTypes = {} export default Contacts