2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-10-19 11:51:02 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-07-17 18:37:33 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-03-10 12:04:40 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-10-19 11:51:02 +02:00
|
|
|
|
2017-07-21 15:46:53 +02:00
|
|
|
import Button from '../../Button';
|
|
|
|
import InputChip from '../../Form/InputChip';
|
|
|
|
import { SearchIcon } from '../../Icons';
|
2016-10-19 11:51:02 +02:00
|
|
|
|
|
|
|
import styles from './search.css';
|
|
|
|
|
|
|
|
export default class ActionbarSearch extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
tokens: PropTypes.array
|
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
showSearch: false,
|
|
|
|
stateChanging: false,
|
|
|
|
inputValue: '',
|
|
|
|
timeoutIds: []
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
const { tokens } = nextProps;
|
|
|
|
|
|
|
|
if (tokens.length > 0 && this.props.tokens.length === 0) {
|
|
|
|
this.handleOpenSearch(true, true);
|
|
|
|
}
|
2016-10-24 16:35:43 +02:00
|
|
|
|
|
|
|
if (tokens.length !== this.props.tokens.length) {
|
|
|
|
this.handleSearchChange(tokens);
|
|
|
|
}
|
2016-10-19 11:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
const { timeoutIds } = this.state;
|
|
|
|
|
|
|
|
if (timeoutIds.length > 0) {
|
|
|
|
timeoutIds.map(id => window.clearTimeout(id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { showSearch } = this.state;
|
|
|
|
const { tokens } = this.props;
|
|
|
|
|
|
|
|
const inputContainerClasses = [ styles.inputContainer ];
|
|
|
|
|
|
|
|
if (!showSearch) {
|
|
|
|
inputContainerClasses.push(styles.inputContainerShown);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={ styles.searchcontainer }
|
2017-01-18 13:05:01 +01:00
|
|
|
key='searchAccount'
|
|
|
|
>
|
2016-10-19 11:51:02 +02:00
|
|
|
<div className={ inputContainerClasses.join(' ') }>
|
2016-10-31 23:22:22 +01:00
|
|
|
<InputChip
|
2017-01-06 17:23:04 +01:00
|
|
|
addOnBlur
|
2017-05-18 11:48:53 +02:00
|
|
|
autoFocus
|
2016-10-19 11:51:02 +02:00
|
|
|
className={ styles.input }
|
2017-03-10 12:04:40 +01:00
|
|
|
hint={
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.actionbar.search.hint'
|
|
|
|
defaultMessage='Enter search input...'
|
|
|
|
/>
|
|
|
|
}
|
2016-10-31 23:22:22 +01:00
|
|
|
tokens={ tokens }
|
|
|
|
|
2016-10-19 11:51:02 +02:00
|
|
|
onBlur={ this.handleSearchBlur }
|
2016-10-31 23:22:22 +01:00
|
|
|
onInputChange={ this.handleInputChange }
|
|
|
|
onTokensChange={ this.handleTokensChange }
|
2016-10-24 16:35:43 +02:00
|
|
|
/>
|
2016-10-19 11:51:02 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
className={ styles.searchButton }
|
2017-03-10 12:04:40 +01:00
|
|
|
icon={ <SearchIcon /> }
|
2016-10-19 11:51:02 +02:00
|
|
|
label=''
|
2017-01-18 13:05:01 +01:00
|
|
|
onClick={ this.handleSearchClick }
|
|
|
|
/>
|
2016-10-19 11:51:02 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-10-31 23:22:22 +01:00
|
|
|
handleTokensChange = (tokens) => {
|
|
|
|
this.handleSearchChange(tokens);
|
2016-10-19 11:51:02 +02:00
|
|
|
}
|
|
|
|
|
2016-10-31 23:22:22 +01:00
|
|
|
handleInputChange = (inputValue) => {
|
2016-10-24 16:35:43 +02:00
|
|
|
this.setState({ inputValue }, () => {
|
2016-10-31 23:22:22 +01:00
|
|
|
this.handleSearchChange();
|
2016-10-24 16:35:43 +02:00
|
|
|
});
|
2016-10-19 11:51:02 +02:00
|
|
|
}
|
|
|
|
|
2016-10-24 16:35:43 +02:00
|
|
|
handleSearchChange = (searchTokens) => {
|
|
|
|
const { onChange, tokens } = this.props;
|
|
|
|
const { inputValue } = this.state;
|
|
|
|
|
|
|
|
const newSearchTokens = []
|
2016-10-31 23:22:22 +01:00
|
|
|
.concat(searchTokens || tokens);
|
2016-10-24 16:35:43 +02:00
|
|
|
|
|
|
|
const newSearchValues = []
|
2016-10-31 23:22:22 +01:00
|
|
|
.concat(searchTokens || tokens, inputValue);
|
2016-10-19 11:51:02 +02:00
|
|
|
|
2016-10-24 16:35:43 +02:00
|
|
|
onChange(newSearchTokens, newSearchValues);
|
2016-10-19 11:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
handleSearchClick = () => {
|
|
|
|
const { showSearch } = this.state;
|
|
|
|
|
|
|
|
this.handleOpenSearch(!showSearch);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSearchBlur = () => {
|
|
|
|
const timeoutId = window.setTimeout(() => {
|
|
|
|
const { inputValue } = this.state;
|
|
|
|
const { tokens } = this.props;
|
|
|
|
|
|
|
|
if (tokens.length === 0 && inputValue.length === 0) {
|
|
|
|
this.handleOpenSearch(false);
|
|
|
|
}
|
|
|
|
}, 250);
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
timeoutIds: [].concat(this.state.timeoutIds, timeoutId)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleOpenSearch = (showSearch, force) => {
|
2016-10-31 23:22:22 +01:00
|
|
|
if (this.state.stateChanging && !force) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-19 11:51:02 +02:00
|
|
|
|
|
|
|
this.setState({
|
|
|
|
showSearch: showSearch,
|
|
|
|
stateChanging: true
|
|
|
|
});
|
|
|
|
|
|
|
|
const timeoutId = window.setTimeout(() => {
|
|
|
|
this.setState({ stateChanging: false });
|
|
|
|
}, 450);
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
timeoutIds: [].concat(this.state.timeoutIds, timeoutId)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|