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');
|
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: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
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',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-04-14 21:23:12 -04:00
|
|
|
render: function() {
|
|
|
|
var TintableSvg = sdk.getComponent('elements.TintableSvg');
|
|
|
|
|
|
|
|
var toggleCollapse;
|
|
|
|
if (this.props.collapsed) {
|
2016-04-15 12:54:48 -04:00
|
|
|
toggleCollapse =
|
|
|
|
<div className="mx_SearchBox_maximise" onClick={ this.onToggleCollapse.bind(this, true) }>
|
|
|
|
<TintableSvg src="img/maximise.svg" width="10" height="16" alt="<"/>
|
|
|
|
</div>
|
2016-04-14 21:23:12 -04:00
|
|
|
}
|
|
|
|
else {
|
2016-04-15 12:54:48 -04:00
|
|
|
toggleCollapse =
|
|
|
|
<div className="mx_SearchBox_minimise" onClick={ this.onToggleCollapse.bind(this, false) }>
|
|
|
|
<TintableSvg src="img/minimise.svg" width="10" height="16" alt="<"/>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
var searchControls;
|
|
|
|
if (!this.props.collapsed) {
|
|
|
|
searchControls = [
|
2016-05-16 18:36:52 -04:00
|
|
|
this.state.searchTerm.length > 0 ?
|
|
|
|
<div key="button"
|
|
|
|
className="mx_SearchBox_closeButton"
|
|
|
|
onClick={ ()=>{ this.refs.search.value = ""; this.onChange(); } }>
|
|
|
|
<TintableSvg
|
|
|
|
className="mx_SearchBox_searchButton"
|
|
|
|
src="img/icons-close.svg" width="24" height="24"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
:
|
2016-04-15 12:54:48 -04:00
|
|
|
<TintableSvg
|
|
|
|
key="button"
|
|
|
|
className="mx_SearchBox_searchButton"
|
2016-04-15 13:05:57 -04:00
|
|
|
src="img/right_search.svg" width="24" height="24"
|
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 }
|
|
|
|
placeholder="Search room names"
|
|
|
|
/>
|
|
|
|
];
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|