import React, { Component } from 'react' import PropTypes from 'prop-types' import { FaRepeat } from 'react-icons/lib/fa' import { MdSearch } from 'react-icons/lib/md' import PeerForm from 'components/Peers/PeerForm' import PeerModal from 'components/Peers/PeerModal' import Peer from 'components/Peers/Peer' import styles from './Peers.scss' class Peers extends Component { constructor(props) { super(props) this.state = { refreshing: false } } componentWillMount() { this.props.fetchPeers() } render() { const { fetchPeers, peerFormProps, setPeerForm, setPeer, updateSearchQuery, disconnectRequest, peerModalOpen, filteredPeers, peers: { peer, searchQuery } } = 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.refs.repeat.childNodes // fetch peers fetchPeers() // 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 (