2018-12-21 10:55:35 +00:00
|
|
|
import React, { PureComponent } from 'react';
|
2018-08-31 16:46:33 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
import {
|
|
|
|
toggleServerDropdown, closeServerDropdown, closeSortDropdown, setSearch as setSearchAction
|
|
|
|
} from '../../../actions/rooms';
|
2018-08-31 16:46:33 +00:00
|
|
|
import Header from './Header';
|
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class RoomsListHeaderView extends PureComponent {
|
2018-08-31 16:46:33 +00:00
|
|
|
static propTypes = {
|
|
|
|
showServerDropdown: PropTypes.bool,
|
|
|
|
showSortDropdown: PropTypes.bool,
|
2018-10-23 21:39:48 +00:00
|
|
|
showSearchHeader: PropTypes.bool,
|
2018-08-31 16:46:33 +00:00
|
|
|
serverName: PropTypes.string,
|
2019-04-30 19:31:51 +00:00
|
|
|
connecting: PropTypes.bool,
|
2019-02-07 16:13:21 +00:00
|
|
|
isFetching: PropTypes.bool,
|
2018-08-31 16:46:33 +00:00
|
|
|
open: PropTypes.func,
|
|
|
|
close: PropTypes.func,
|
2018-10-23 21:39:48 +00:00
|
|
|
closeSort: PropTypes.func,
|
2019-03-12 16:23:06 +00:00
|
|
|
setSearch: PropTypes.func
|
2018-10-23 21:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onSearchChangeText = (text) => {
|
|
|
|
const { setSearch } = this.props;
|
|
|
|
setSearch(text.trim());
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onPress = () => {
|
|
|
|
const {
|
|
|
|
showServerDropdown, showSortDropdown, close, open, closeSort
|
|
|
|
} = this.props;
|
|
|
|
if (showServerDropdown) {
|
|
|
|
close();
|
|
|
|
} else if (showSortDropdown) {
|
|
|
|
closeSort();
|
|
|
|
setTimeout(() => {
|
|
|
|
open();
|
|
|
|
}, 300);
|
|
|
|
} else {
|
|
|
|
open();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-02-07 16:13:21 +00:00
|
|
|
const {
|
2019-04-30 19:31:51 +00:00
|
|
|
serverName, showServerDropdown, showSearchHeader, connecting, isFetching
|
2019-02-07 16:13:21 +00:00
|
|
|
} = this.props;
|
2019-04-30 19:31:51 +00:00
|
|
|
|
2018-08-31 16:46:33 +00:00
|
|
|
return (
|
|
|
|
<Header
|
|
|
|
serverName={serverName}
|
|
|
|
showServerDropdown={showServerDropdown}
|
2018-10-23 21:39:48 +00:00
|
|
|
showSearchHeader={showSearchHeader}
|
2019-04-30 19:31:51 +00:00
|
|
|
connecting={connecting}
|
2019-02-07 16:13:21 +00:00
|
|
|
isFetching={isFetching}
|
|
|
|
onPress={this.onPress}
|
2018-10-23 21:39:48 +00:00
|
|
|
onSearchChangeText={text => this.onSearchChangeText(text)}
|
2018-08-31 16:46:33 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
showServerDropdown: state.rooms.showServerDropdown,
|
|
|
|
showSortDropdown: state.rooms.showSortDropdown,
|
|
|
|
showSearchHeader: state.rooms.showSearchHeader,
|
|
|
|
connecting: state.meteor.connecting || state.server.loading,
|
|
|
|
isFetching: state.rooms.isFetching,
|
|
|
|
serverName: state.settings.Site_Name
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchtoProps = dispatch => ({
|
|
|
|
close: () => dispatch(closeServerDropdown()),
|
|
|
|
open: () => dispatch(toggleServerDropdown()),
|
|
|
|
closeSort: () => dispatch(closeSortDropdown()),
|
|
|
|
setSearch: searchText => dispatch(setSearchAction(searchText))
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchtoProps)(RoomsListHeaderView);
|