2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-02-24 07:42:04 +03:00
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
2019-08-30 12:34:59 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
2019-02-24 07:42:04 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2018-04-13 02:43:44 +03:00
|
|
|
import { KeyCode } from '../../Keyboard';
|
|
|
|
import dis from '../../dispatcher';
|
2019-02-13 22:32:50 +03:00
|
|
|
import { throttle } from 'lodash';
|
2018-04-13 02:43:44 +03:00
|
|
|
import AccessibleButton from '../../components/views/elements/AccessibleButton';
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2019-08-30 12:34:59 +03:00
|
|
|
module.exports = createReactClass({
|
2018-04-12 01:58:04 +03:00
|
|
|
displayName: 'SearchBox',
|
|
|
|
|
|
|
|
propTypes: {
|
2019-02-24 07:42:04 +03:00
|
|
|
onSearch: PropTypes.func,
|
|
|
|
onCleared: PropTypes.func,
|
|
|
|
className: PropTypes.string,
|
|
|
|
placeholder: PropTypes.string.isRequired,
|
2019-03-06 17:53:52 +03:00
|
|
|
|
|
|
|
// If true, the search box will focus and clear itself
|
|
|
|
// on room search focus action (it would be nicer to take
|
|
|
|
// this functionality out, but not obvious how that would work)
|
|
|
|
enableRoomSearchFocus: PropTypes.bool,
|
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
enableRoomSearchFocus: false,
|
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
searchTerm: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
},
|
|
|
|
|
|
|
|
onAction: function(payload) {
|
2019-03-06 17:53:52 +03:00
|
|
|
if (!this.props.enableRoomSearchFocus) return;
|
|
|
|
|
2018-04-12 01:58:04 +03:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onChange: function() {
|
|
|
|
if (!this.refs.search) return;
|
|
|
|
this.setState({ searchTerm: this.refs.search.value });
|
|
|
|
this.onSearch();
|
|
|
|
},
|
|
|
|
|
2019-02-13 22:32:50 +03:00
|
|
|
onSearch: throttle(function() {
|
2019-02-07 19:31:57 +03:00
|
|
|
this.props.onSearch(this.refs.search.value);
|
2019-02-13 22:32:50 +03:00
|
|
|
}, 200, {trailing: true, leading: true}),
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
_onKeyDown: function(ev) {
|
|
|
|
switch (ev.keyCode) {
|
|
|
|
case KeyCode.ESCAPE:
|
2018-11-05 11:35:44 +03:00
|
|
|
this._clearSearch("keyboard");
|
2018-04-12 01:58:04 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-12-18 18:35:07 +03:00
|
|
|
_onFocus: function(ev) {
|
|
|
|
ev.target.select();
|
2019-09-10 11:57:25 +03:00
|
|
|
if (this.props.onFocus) {
|
|
|
|
this.props.onFocus(ev);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_onBlur: function(ev) {
|
|
|
|
if (this.props.onBlur) {
|
|
|
|
this.props.onBlur(ev);
|
|
|
|
}
|
2018-12-18 18:35:07 +03:00
|
|
|
},
|
|
|
|
|
2018-11-05 11:35:44 +03:00
|
|
|
_clearSearch: function(source) {
|
2018-04-12 01:58:04 +03:00
|
|
|
this.refs.search.value = "";
|
|
|
|
this.onChange();
|
2018-11-05 11:35:44 +03:00
|
|
|
if (this.props.onCleared) {
|
|
|
|
this.props.onCleared(source);
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2019-02-04 21:51:41 +03:00
|
|
|
// check for collapsed here and
|
|
|
|
// not at parent so we keep
|
|
|
|
// searchTerm in our state
|
|
|
|
// when collapsing and expanding
|
|
|
|
if (this.props.collapsed) {
|
|
|
|
return null;
|
|
|
|
}
|
2018-11-05 11:35:44 +03:00
|
|
|
const clearButton = this.state.searchTerm.length > 0 ?
|
|
|
|
(<AccessibleButton key="button"
|
2018-11-02 17:29:18 +03:00
|
|
|
className="mx_SearchBox_closeButton"
|
2019-02-24 07:42:04 +03:00
|
|
|
onClick={ () => {this._clearSearch("button"); } }>
|
|
|
|
</AccessibleButton>) : undefined;
|
2018-11-05 11:35:44 +03:00
|
|
|
|
2019-02-24 07:44:38 +03:00
|
|
|
const className = this.props.className || "";
|
2018-04-12 01:58:04 +03:00
|
|
|
return (
|
2018-11-05 11:35:44 +03:00
|
|
|
<div className="mx_SearchBox mx_textinput">
|
|
|
|
<input
|
|
|
|
key="searchfield"
|
|
|
|
type="text"
|
|
|
|
ref="search"
|
2019-02-24 07:44:38 +03:00
|
|
|
className={"mx_textinput_icon mx_textinput_search " + className}
|
2018-11-05 11:35:44 +03:00
|
|
|
value={ this.state.searchTerm }
|
2018-12-18 18:35:07 +03:00
|
|
|
onFocus={ this._onFocus }
|
2018-11-05 11:35:44 +03:00
|
|
|
onChange={ this.onChange }
|
|
|
|
onKeyDown={ this._onKeyDown }
|
2019-02-24 07:42:04 +03:00
|
|
|
placeholder={ this.props.placeholder }
|
2019-09-10 11:57:25 +03:00
|
|
|
onBlur={this._onBlur}
|
2018-11-05 11:35:44 +03:00
|
|
|
/>
|
|
|
|
{ clearButton }
|
2018-04-12 01:58:04 +03:00
|
|
|
</div>
|
|
|
|
);
|
2018-10-27 06:50:35 +03:00
|
|
|
},
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|