Files
ThreadNet-Web/src/components/structures/RoomSearch.tsx
T

83 lines
2.7 KiB
TypeScript
Raw Normal View History

/*
2021-03-25 13:29:17 +00:00
Copyright 2020, 2021 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.
*/
import classNames from "classnames";
import * as React from "react";
import { ALTERNATE_KEY_NAME } from "../../accessibility/KeyboardShortcuts";
import defaultDispatcher from "../../dispatcher/dispatcher";
import { ActionPayload } from "../../dispatcher/payloads";
import { IS_MAC, Key } from "../../Keyboard";
import { _t } from "../../languageHandler";
2021-12-10 11:50:01 +00:00
import Modal from "../../Modal";
import SpotlightDialog from "../views/dialogs/spotlight/SpotlightDialog";
import AccessibleButton from "../views/elements/AccessibleButton";
interface IProps {
2020-06-11 14:39:28 -06:00
isMinimized: boolean;
/**
* @returns true if a room has been selected and the search field should be cleared
*/
onSelectRoom(): boolean;
}
export default class RoomSearch extends React.PureComponent<IProps> {
private readonly dispatcherRef: string;
constructor(props: IProps) {
super(props);
this.dispatcherRef = defaultDispatcher.register(this.onAction);
}
public componentWillUnmount() {
defaultDispatcher.unregister(this.dispatcherRef);
}
2021-12-10 11:50:01 +00:00
private openSpotlight() {
2022-06-14 17:51:51 +01:00
Modal.createDialog(SpotlightDialog, {}, "mx_SpotlightDialog_wrapper", false, true);
2021-12-10 11:50:01 +00:00
}
private onAction = (payload: ActionPayload) => {
if (payload.action === 'focus_room_filter') {
this.openSpotlight();
}
2020-06-11 14:39:28 -06:00
};
public render(): React.ReactNode {
const classes = classNames({
'mx_RoomSearch': true,
2020-06-11 14:39:28 -06:00
'mx_RoomSearch_minimized': this.props.isMinimized,
}, 'mx_RoomSearch_spotlightTrigger');
const icon = (
<div className="mx_RoomSearch_icon" />
2020-06-11 14:39:28 -06:00
);
const shortcutPrompt = <div className="mx_RoomSearch_shortcutPrompt">
{ IS_MAC ? "⌘ K" : _t(ALTERNATE_KEY_NAME[Key.CONTROL]) + " K" }
</div>;
2020-06-11 14:39:28 -06:00
return <AccessibleButton onClick={this.openSpotlight} className={classes}>
{ icon }
{ (!this.props.isMinimized) && <div className="mx_RoomSearch_spotlightTriggerText">
{ _t("Search") }
</div> }
{ shortcutPrompt }
</AccessibleButton>;
}
}