mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 15:42:17 +03:00
118 lines
3.4 KiB
JavaScript
118 lines
3.4 KiB
JavaScript
/*
|
|
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 PropTypes from 'prop-types';
|
|
import * as sdk from '../../../index';
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
export default class DirectorySearchBox extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this._collectInput = this._collectInput.bind(this);
|
|
this._onClearClick = this._onClearClick.bind(this);
|
|
this._onChange = this._onChange.bind(this);
|
|
this._onKeyUp = this._onKeyUp.bind(this);
|
|
this._onJoinButtonClick = this._onJoinButtonClick.bind(this);
|
|
|
|
this.input = null;
|
|
|
|
this.state = {
|
|
value: this.props.initialText || '',
|
|
};
|
|
}
|
|
|
|
_collectInput(e) {
|
|
this.input = e;
|
|
}
|
|
|
|
_onClearClick() {
|
|
this.setState({value: ''});
|
|
|
|
if (this.input) {
|
|
this.input.focus();
|
|
|
|
if (this.props.onClear) {
|
|
this.props.onClear();
|
|
}
|
|
}
|
|
}
|
|
|
|
_onChange(ev) {
|
|
if (!this.input) return;
|
|
this.setState({value: ev.target.value});
|
|
|
|
if (this.props.onChange) {
|
|
this.props.onChange(ev.target.value);
|
|
}
|
|
}
|
|
|
|
_onKeyUp(ev) {
|
|
if (ev.key == 'Enter' && this.props.showJoinButton) {
|
|
if (this.props.onJoinClick) {
|
|
this.props.onJoinClick(this.state.value);
|
|
}
|
|
}
|
|
}
|
|
|
|
_onJoinButtonClick() {
|
|
if (this.props.onJoinClick) {
|
|
this.props.onJoinClick(this.state.value);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
|
|
|
|
const searchboxClasses = {
|
|
mx_DirectorySearchBox: true,
|
|
};
|
|
searchboxClasses[this.props.className] = true;
|
|
|
|
let joinButton;
|
|
if (this.props.showJoinButton) {
|
|
joinButton = <AccessibleButton className="mx_DirectorySearchBox_joinButton"
|
|
onClick={this._onJoinButtonClick}
|
|
>{_t("Join")}</AccessibleButton>;
|
|
}
|
|
|
|
return <div className={`mx_DirectorySearchBox ${this.props.className} mx_textinput`}>
|
|
<input
|
|
type="text"
|
|
name="dirsearch"
|
|
value={this.state.value}
|
|
className="mx_textinput_icon mx_textinput_search"
|
|
ref={this._collectInput}
|
|
onChange={this._onChange}
|
|
onKeyUp={this._onKeyUp}
|
|
placeholder={this.props.placeholder}
|
|
autoFocus
|
|
/>
|
|
{ joinButton }
|
|
<AccessibleButton className="mx_DirectorySearchBox_clear" onClick={this._onClearClick} />
|
|
</div>;
|
|
}
|
|
}
|
|
|
|
DirectorySearchBox.propTypes = {
|
|
className: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
onClear: PropTypes.func,
|
|
onJoinClick: PropTypes.func,
|
|
placeholder: PropTypes.string,
|
|
showJoinButton: PropTypes.bool,
|
|
initialText: PropTypes.string,
|
|
};
|