element-web/src/components/views/rooms/SearchBar.tsx

131 lines
4.5 KiB
TypeScript
Raw Normal View History

/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2020 The Matrix.org Foundation C.I.C.
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.
*/
2021-06-21 16:50:21 +03:00
import React, {createRef, RefObject} from 'react';
import AccessibleButton from "../elements/AccessibleButton";
import classNames from "classnames";
2018-04-13 02:43:44 +03:00
import { _t } from '../../../languageHandler';
import {Key} from "../../../Keyboard";
import DesktopBuildsNotice, {WarningKind} from "../elements/DesktopBuildsNotice";
import {replaceableComponent} from "../../../utils/replaceableComponent";
2021-06-21 16:50:21 +03:00
interface IProps {
onCancelClick: () => void;
onSearch: (query: string, scope: string) => void;
searchInProgress?: boolean;
isRoomEncrypted?: boolean;
}
2021-06-21 16:50:21 +03:00
interface IState {
scope: SearchScope;
}
2021-06-21 16:50:21 +03:00
export enum SearchScope {
Room = "Room",
All = "All",
}
@replaceableComponent("views.rooms.SearchBar")
export default class SearchBar extends React.Component<IProps, IState> {
private searchTerm: RefObject<HTMLInputElement> = createRef();
constructor(props: IProps) {
super(props);
2020-08-29 14:14:16 +03:00
this.state = {
2021-06-21 16:50:21 +03:00
scope: SearchScope.Room,
2020-08-29 14:14:16 +03:00
};
}
2021-06-21 16:50:21 +03:00
public onThisRoomClick = () => {
this.setState({ scope: SearchScope.Room }, () => this._searchIfQuery());
2020-08-29 14:14:16 +03:00
};
2021-06-21 16:50:21 +03:00
public onAllRoomsClick = () => {
this.setState({ scope: SearchScope.All }, () => this._searchIfQuery());
2020-08-29 14:14:16 +03:00
};
2021-06-21 16:50:21 +03:00
public onSearchChange = (e: React.KeyboardEvent) => {
switch (e.key) {
case Key.ENTER:
this.onSearch();
break;
case Key.ESCAPE:
this.props.onCancelClick();
break;
}
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
_searchIfQuery() {
2021-06-21 16:50:21 +03:00
if (this.searchTerm.current.value) {
this.onSearch();
}
2020-08-29 14:14:16 +03:00
}
2020-08-29 14:14:16 +03:00
onSearch = () => {
2021-06-21 16:50:21 +03:00
this.props.onSearch(this.searchTerm.current.value, this.state.scope);
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
render() {
const searchButtonClasses = classNames("mx_SearchBar_searchButton", {
mx_SearchBar_searching: this.props.searchInProgress,
});
const thisRoomClasses = classNames("mx_SearchBar_button", {
2021-06-21 16:50:21 +03:00
mx_SearchBar_unselected: this.state.scope !== SearchScope.Room,
});
const allRoomsClasses = classNames("mx_SearchBar_button", {
2021-06-21 16:50:21 +03:00
mx_SearchBar_unselected: this.state.scope !== SearchScope.All,
});
return (
<>
<div className="mx_SearchBar">
<div className="mx_SearchBar_buttons" role="radiogroup">
2021-06-21 16:50:21 +03:00
<AccessibleButton
className={ thisRoomClasses }
onClick={this.onThisRoomClick}
aria-checked={this.state.scope === SearchScope.Room}
role="radio"
>
{_t("This Room")}
</AccessibleButton>
2021-06-21 16:50:21 +03:00
<AccessibleButton
className={ allRoomsClasses }
onClick={this.onAllRoomsClick}
aria-checked={this.state.scope === SearchScope.All}
role="radio"
>
{_t("All Rooms")}
</AccessibleButton>
</div>
<div className="mx_SearchBar_input mx_textinput">
2021-06-21 16:50:21 +03:00
<input
ref={this.searchTerm}
type="text"
autoFocus={true}
placeholder={_t("Search…")}
onKeyDown={this.onSearchChange}
/>
<AccessibleButton className={ searchButtonClasses } onClick={this.onSearch} />
</div>
<AccessibleButton className="mx_SearchBar_cancel" onClick={this.props.onCancelClick} />
</div>
<DesktopBuildsNotice isRoomEncrypted={this.props.isRoomEncrypted} kind={WarningKind.Search} />
</>
);
2020-08-29 14:14:16 +03:00
}
}