mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
WIP omnipresent join button
This commit is contained in:
parent
6281d76ade
commit
b1e4c911eb
1 changed files with 18 additions and 0 deletions
|
@ -24,6 +24,7 @@ export default class DirectorySearchBox extends React.Component {
|
|||
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;
|
||||
}
|
||||
|
@ -59,12 +60,28 @@ export default class DirectorySearchBox extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
onJoinButtonClick() {
|
||||
}
|
||||
|
||||
_contentLooksLikeAlias() {
|
||||
return true;
|
||||
}
|
||||
|
||||
render() {
|
||||
const searchbox_classes = {
|
||||
mx_DirectorySearchBox: true,
|
||||
};
|
||||
searchbox_classes[this.props.className] = true;
|
||||
|
||||
let join_button;
|
||||
if (this._contentLooksLikeAlias()) {
|
||||
join_button = <span className="mx_DirectorySearchBox_joinButton"
|
||||
onClick={this.onJoinButtonClick}
|
||||
>
|
||||
Join
|
||||
</span>;
|
||||
}
|
||||
|
||||
return <span className={classnames(searchbox_classes)}>
|
||||
<input type="text" size="64"
|
||||
className="mx_DirectorySearchBox_input"
|
||||
|
@ -72,6 +89,7 @@ export default class DirectorySearchBox extends React.Component {
|
|||
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" onClick={this.onClearClick} />
|
||||
</span>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue