2016-04-14 21:23:12 -04: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';
|
|
|
|
|
|
|
|
var React = require('react');
|
|
|
|
var sdk = require('matrix-react-sdk')
|
|
|
|
var dis = require('matrix-react-sdk/lib/dispatcher');
|
2016-04-15 12:54:48 -04:00
|
|
|
var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc');
|
2017-01-05 18:37:12 -05:00
|
|
|
var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton');
|
2017-04-15 06:37:09 -04:00
|
|
|
var KeyCode = require('matrix-react-sdk/lib/KeyCode');
|
2016-04-14 21:23:12 -04:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'SearchBox',
|
|
|
|
|
2016-04-15 12:54:48 -04:00
|
|
|
propTypes: {
|
|
|
|
collapsed: React.PropTypes.bool,
|
|
|
|
onSearch: React.PropTypes.func,
|
|
|
|
},
|
|
|
|
|
2016-04-16 19:28:33 -04:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
searchTerm: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-01-05 18:37:12 -05:00
|
|
|
componentDidMount: function() {
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2017-04-15 06:37:09 -04:00
|
|
|
document.addEventListener('keydown', this._onKeyDown);
|
2017-01-05 18:37:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
dis.unregister(this.dispatcherRef);
|
2017-04-15 06:37:09 -04:00
|
|
|
document.removeEventListener('keydown', this._onKeyDown);
|
2017-01-05 18:37:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
onAction: function(payload) {
|
|
|
|
switch (payload.action) {
|
|
|
|
// Clear up the text field when a room is selected.
|
|
|
|
case 'view_room':
|
2017-04-20 09:21:36 -04:00
|
|
|
if (payload.clear_search && this.refs.search) {
|
2017-01-05 18:37:12 -05:00
|
|
|
this._clearSearch();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-16 19:28:33 -04:00
|
|
|
onChange: function() {
|
|
|
|
if (!this.refs.search) return;
|
|
|
|
this.setState({ searchTerm: this.refs.search.value });
|
|
|
|
this.onSearch();
|
|
|
|
},
|
|
|
|
|
|
|
|
onSearch: new rate_limited_func(
|
2016-04-15 12:54:48 -04:00
|
|
|
function() {
|
2016-04-16 19:28:33 -04:00
|
|
|
this.props.onSearch(this.refs.search.value);
|
2016-04-15 12:54:48 -04:00
|
|
|
},
|
|
|
|
100
|
|
|
|
),
|
|
|
|
|
|
|
|
onToggleCollapse: function(show) {
|
|
|
|
if (show) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'show_left_panel',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'hide_left_panel',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-01-05 18:37:12 -05:00
|
|
|
_clearSearch: function() {
|
|
|
|
this.refs.search.value = "";
|
|
|
|
this.onChange();
|
|
|
|
},
|
|
|
|
|
2017-04-15 06:37:09 -04:00
|
|
|
_onKeyDown: function(ev) {
|
|
|
|
let handled = false;
|
|
|
|
const isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
|
|
|
|
let ctrlCmdOnly;
|
|
|
|
if (isMac) {
|
|
|
|
ctrlCmdOnly = ev.metaKey && !ev.altKey && !ev.ctrlKey && !ev.shiftKey;
|
|
|
|
} else {
|
|
|
|
ctrlCmdOnly = ev.ctrlKey && !ev.altKey && !ev.metaKey && !ev.shiftKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev.keyCode) {
|
2017-04-20 20:21:25 -04:00
|
|
|
case KeyCode.ESCAPE:
|
|
|
|
this._clearSearch();
|
|
|
|
dis.dispatch({action: 'focus_composer'});
|
|
|
|
break;
|
2017-04-15 06:37:09 -04:00
|
|
|
case KeyCode.KEY_K:
|
|
|
|
if (ctrlCmdOnly) {
|
|
|
|
if (this.refs.search) {
|
|
|
|
this.refs.search.focus();
|
2017-04-19 19:04:08 -04:00
|
|
|
this.refs.search.select();
|
2017-04-15 06:37:09 -04:00
|
|
|
}
|
|
|
|
handled = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
|
|
|
ev.stopPropagation();
|
|
|
|
ev.preventDefault();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-14 21:23:12 -04:00
|
|
|
render: function() {
|
|
|
|
var TintableSvg = sdk.getComponent('elements.TintableSvg');
|
|
|
|
|
2017-01-05 18:37:12 -05:00
|
|
|
var collapseTabIndex = this.refs.search && this.refs.search.value !== "" ? "-1" : "0";
|
|
|
|
|
2016-04-14 21:23:12 -04:00
|
|
|
var toggleCollapse;
|
|
|
|
if (this.props.collapsed) {
|
2016-04-15 12:54:48 -04:00
|
|
|
toggleCollapse =
|
2017-01-05 18:37:12 -05:00
|
|
|
<AccessibleButton className="mx_SearchBox_maximise" tabIndex={collapseTabIndex} onClick={ this.onToggleCollapse.bind(this, true) }>
|
2017-02-02 13:42:03 -05:00
|
|
|
<TintableSvg src="img/maximise.svg" width="10" height="16" alt="Expand panel"/>
|
2017-01-05 18:37:12 -05:00
|
|
|
</AccessibleButton>
|
2016-04-14 21:23:12 -04:00
|
|
|
}
|
|
|
|
else {
|
2016-04-15 12:54:48 -04:00
|
|
|
toggleCollapse =
|
2017-01-05 18:37:12 -05:00
|
|
|
<AccessibleButton className="mx_SearchBox_minimise" tabIndex={collapseTabIndex} onClick={ this.onToggleCollapse.bind(this, false) }>
|
2017-02-02 13:42:03 -05:00
|
|
|
<TintableSvg src="img/minimise.svg" width="10" height="16" alt="Collapse panel"/>
|
2017-01-05 18:37:12 -05:00
|
|
|
</AccessibleButton>
|
2016-04-15 12:54:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var searchControls;
|
|
|
|
if (!this.props.collapsed) {
|
|
|
|
searchControls = [
|
2016-05-16 18:36:52 -04:00
|
|
|
this.state.searchTerm.length > 0 ?
|
2017-01-05 18:37:12 -05:00
|
|
|
<AccessibleButton key="button"
|
|
|
|
className="mx_SearchBox_closeButton"
|
|
|
|
onClick={ ()=>{ this._clearSearch(); } }>
|
2016-05-16 18:36:52 -04:00
|
|
|
<TintableSvg
|
|
|
|
className="mx_SearchBox_searchButton"
|
|
|
|
src="img/icons-close.svg" width="24" height="24"
|
|
|
|
/>
|
2017-01-05 18:37:12 -05:00
|
|
|
</AccessibleButton>
|
2016-05-16 18:36:52 -04:00
|
|
|
:
|
2016-04-15 12:54:48 -04:00
|
|
|
<TintableSvg
|
|
|
|
key="button"
|
|
|
|
className="mx_SearchBox_searchButton"
|
2016-07-13 09:23:46 -04:00
|
|
|
src="img/icons-search-copy.svg" width="13" height="13"
|
2016-04-15 12:54:48 -04:00
|
|
|
/>,
|
|
|
|
<input
|
|
|
|
key="searchfield"
|
|
|
|
type="text"
|
|
|
|
ref="search"
|
|
|
|
className="mx_SearchBox_search"
|
2016-04-16 19:28:33 -04:00
|
|
|
value={ this.state.searchTerm }
|
2016-04-15 12:54:48 -04:00
|
|
|
onChange={ this.onChange }
|
2016-06-18 16:12:32 -04:00
|
|
|
placeholder="Filter room names"
|
2016-04-15 12:54:48 -04:00
|
|
|
/>
|
|
|
|
];
|
2016-04-14 21:23:12 -04:00
|
|
|
}
|
|
|
|
|
2016-04-15 12:54:48 -04:00
|
|
|
var self = this;
|
2016-04-14 21:23:12 -04:00
|
|
|
return (
|
|
|
|
<div className="mx_SearchBox">
|
2016-04-15 12:54:48 -04:00
|
|
|
{ searchControls }
|
2016-04-14 21:23:12 -04:00
|
|
|
{ toggleCollapse }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|