2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
2018-04-13 02:43:44 +03:00
|
|
|
import { _t } from '../../languageHandler';
|
|
|
|
import { KeyCode } from '../../Keyboard';
|
|
|
|
import sdk from '../../index';
|
|
|
|
import dis from '../../dispatcher';
|
|
|
|
import rate_limited_func from '../../ratelimitedfunc';
|
|
|
|
import AccessibleButton from '../../components/views/elements/AccessibleButton';
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'SearchBox',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
onSearch: React.PropTypes.func,
|
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
searchTerm: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
},
|
|
|
|
|
|
|
|
onAction: function(payload) {
|
|
|
|
switch (payload.action) {
|
|
|
|
case 'view_room':
|
|
|
|
if (this.refs.search && payload.clear_search) {
|
|
|
|
this._clearSearch();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'focus_room_filter':
|
|
|
|
if (this.refs.search) {
|
|
|
|
this.refs.search.focus();
|
|
|
|
this.refs.search.select();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onChange: function() {
|
|
|
|
if (!this.refs.search) return;
|
|
|
|
this.setState({ searchTerm: this.refs.search.value });
|
|
|
|
this.onSearch();
|
|
|
|
},
|
|
|
|
|
|
|
|
onSearch: new rate_limited_func(
|
|
|
|
function() {
|
|
|
|
this.props.onSearch(this.refs.search.value);
|
|
|
|
},
|
2018-10-27 06:50:35 +03:00
|
|
|
100,
|
2018-04-12 01:58:04 +03:00
|
|
|
),
|
|
|
|
|
|
|
|
_onKeyDown: function(ev) {
|
|
|
|
switch (ev.keyCode) {
|
|
|
|
case KeyCode.ESCAPE:
|
|
|
|
this._clearSearch();
|
|
|
|
dis.dispatch({action: 'focus_composer'});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_clearSearch: function() {
|
|
|
|
this.refs.search.value = "";
|
|
|
|
this.onChange();
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2018-10-27 06:50:35 +03:00
|
|
|
const TintableSvg = sdk.getComponent('elements.TintableSvg');
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-11-02 17:29:18 +03:00
|
|
|
const searchControls = [
|
|
|
|
this.state.searchTerm.length > 0 ?
|
|
|
|
<AccessibleButton key="button"
|
|
|
|
className="mx_SearchBox_closeButton"
|
|
|
|
onClick={ ()=>{ this._clearSearch(); } }>
|
|
|
|
<TintableSvg
|
|
|
|
className="mx_SearchBox_searchButton"
|
|
|
|
src="img/icons-close.svg" width="24" height="24"
|
|
|
|
/>
|
|
|
|
</AccessibleButton>
|
|
|
|
:
|
|
|
|
<TintableSvg
|
|
|
|
key="button"
|
|
|
|
className="mx_SearchBox_searchButton"
|
|
|
|
src="img/icons-search-copy.svg" width="13" height="13"
|
|
|
|
/>,
|
|
|
|
<input
|
|
|
|
key="searchfield"
|
|
|
|
type="text"
|
|
|
|
ref="search"
|
|
|
|
className="mx_SearchBox_search"
|
|
|
|
value={ this.state.searchTerm }
|
|
|
|
onChange={ this.onChange }
|
|
|
|
onKeyDown={ this._onKeyDown }
|
|
|
|
placeholder={ _t('Filter room names') }
|
|
|
|
/>,
|
|
|
|
];
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-27 06:50:35 +03:00
|
|
|
const self = this;
|
2018-04-12 01:58:04 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_SearchBox">
|
|
|
|
{ searchControls }
|
|
|
|
</div>
|
|
|
|
);
|
2018-10-27 06:50:35 +03:00
|
|
|
},
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|