2016-09-23 15:48:24 +03:00
|
|
|
/*
|
|
|
|
Copyright 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
|
|
|
|
export default class DirectorySearchBox extends React.Component {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.collectInput = this.collectInput.bind(this);
|
|
|
|
this.onClearClick = this.onClearClick.bind(this);
|
|
|
|
this.onChange = this.onChange.bind(this);
|
|
|
|
this.onKeyUp = this.onKeyUp.bind(this);
|
2016-09-23 17:25:38 +03:00
|
|
|
this.onJoinButtonClick = this.onJoinButtonClick.bind(this);
|
2016-09-23 15:48:24 +03:00
|
|
|
|
|
|
|
this.input = null;
|
2016-09-23 18:34:47 +03:00
|
|
|
|
|
|
|
this.state = {
|
|
|
|
value: '',
|
|
|
|
};
|
2016-09-23 15:48:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
collectInput(e) {
|
|
|
|
this.input = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
onClearClick() {
|
2016-09-23 18:34:47 +03:00
|
|
|
this.setState({value: ''});
|
|
|
|
|
2016-09-23 15:48:24 +03:00
|
|
|
if (this.input) {
|
|
|
|
this.input.focus();
|
|
|
|
|
|
|
|
if (this.props.onClear) {
|
|
|
|
this.props.onClear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-23 18:34:47 +03:00
|
|
|
onChange(ev) {
|
2016-09-23 15:48:24 +03:00
|
|
|
if (!this.input) return;
|
2016-09-23 18:34:47 +03:00
|
|
|
this.setState({value: ev.target.value});
|
2016-09-23 15:48:24 +03:00
|
|
|
|
|
|
|
if (this.props.onChange) {
|
2016-09-23 18:34:47 +03:00
|
|
|
this.props.onChange(this.state.value);
|
2016-09-23 15:48:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onKeyUp(ev) {
|
|
|
|
if (ev.key == 'Enter') {
|
|
|
|
if (this.props.onJoinClick) {
|
2016-09-23 18:34:47 +03:00
|
|
|
this.props.onJoinClick(this.state.value);
|
2016-09-23 15:48:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-23 17:25:38 +03:00
|
|
|
onJoinButtonClick() {
|
2016-09-23 18:34:47 +03:00
|
|
|
if (this.props.onJoinClick) {
|
|
|
|
this.props.onJoinClick(this.state.value);
|
|
|
|
}
|
2016-09-23 17:25:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_contentLooksLikeAlias() {
|
2016-09-23 18:34:47 +03:00
|
|
|
if (!this.input) return false;
|
|
|
|
|
|
|
|
// liberal test for things that look like room aliases
|
2016-09-26 16:24:35 +03:00
|
|
|
return /^#.+:.+/.test(this.state.value);
|
2016-09-23 17:25:38 +03:00
|
|
|
}
|
|
|
|
|
2016-09-23 15:48:24 +03:00
|
|
|
render() {
|
|
|
|
const searchbox_classes = {
|
|
|
|
mx_DirectorySearchBox: true,
|
|
|
|
};
|
|
|
|
searchbox_classes[this.props.className] = true;
|
|
|
|
|
2016-09-23 17:25:38 +03:00
|
|
|
let join_button;
|
|
|
|
if (this._contentLooksLikeAlias()) {
|
|
|
|
join_button = <span className="mx_DirectorySearchBox_joinButton"
|
|
|
|
onClick={this.onJoinButtonClick}
|
|
|
|
>
|
|
|
|
Join
|
|
|
|
</span>;
|
|
|
|
}
|
|
|
|
|
2016-09-23 15:48:24 +03:00
|
|
|
return <span className={classnames(searchbox_classes)}>
|
2016-09-23 17:58:11 +03:00
|
|
|
<div className="mx_DirectorySearchBox_container">
|
2016-09-23 18:34:47 +03:00
|
|
|
<input type="text" value={this.state.value}
|
2016-09-23 17:58:11 +03:00
|
|
|
className="mx_DirectorySearchBox_input"
|
|
|
|
ref={this.collectInput}
|
|
|
|
onChange={this.onChange} onKeyUp={this.onKeyUp}
|
|
|
|
placeholder="Find a room by keyword or room ID (#matrix:matrix.org)"
|
|
|
|
/>
|
|
|
|
{join_button}
|
|
|
|
<span className="mx_DirectorySearchBox_clear_wrapper">
|
|
|
|
<span className="mx_DirectorySearchBox_clear" onClick={this.onClearClick} />
|
|
|
|
</span>
|
|
|
|
</div>
|
2016-09-23 15:48:24 +03:00
|
|
|
</span>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DirectorySearchBox.propTypes = {
|
|
|
|
className: React.PropTypes.string,
|
|
|
|
onChange: React.PropTypes.func,
|
|
|
|
onClear: React.PropTypes.func,
|
|
|
|
onJoinClick: React.PropTypes.func,
|
|
|
|
};
|