* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
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";
|
|
import AccessibleButton from "../views/elements/AccessibleButton";
|
|
import { Action } from "../../dispatcher/actions";
|
|
|
|
interface IProps {
|
|
isMinimized: boolean;
|
|
}
|
|
|
|
export default class RoomSearch extends React.PureComponent<IProps> {
|
|
private readonly dispatcherRef: string;
|
|
|
|
public constructor(props: IProps) {
|
|
super(props);
|
|
|
|
this.dispatcherRef = defaultDispatcher.register(this.onAction);
|
|
}
|
|
|
|
public componentWillUnmount(): void {
|
|
defaultDispatcher.unregister(this.dispatcherRef);
|
|
}
|
|
|
|
private openSpotlight(): void {
|
|
defaultDispatcher.fire(Action.OpenSpotlight);
|
|
}
|
|
|
|
private onAction = (payload: ActionPayload): void => {
|
|
if (payload.action === "focus_room_filter") {
|
|
this.openSpotlight();
|
|
}
|
|
};
|
|
|
|
public render(): React.ReactNode {
|
|
const classes = classNames(
|
|
{
|
|
mx_RoomSearch: true,
|
|
mx_RoomSearch_minimized: this.props.isMinimized,
|
|
},
|
|
"mx_RoomSearch_spotlightTrigger",
|
|
);
|
|
|
|
const icon = <div className="mx_RoomSearch_icon" />;
|
|
|
|
const shortcutPrompt = (
|
|
<kbd className="mx_RoomSearch_shortcutPrompt">
|
|
{IS_MAC ? "⌘ K" : _t(ALTERNATE_KEY_NAME[Key.CONTROL]) + " K"}
|
|
</kbd>
|
|
);
|
|
|
|
return (
|
|
<AccessibleButton onClick={this.openSpotlight} className={classes}>
|
|
{icon}
|
|
{!this.props.isMinimized && (
|
|
<div className="mx_RoomSearch_spotlightTriggerText">{_t("action|search")}</div>
|
|
)}
|
|
{shortcutPrompt}
|
|
</AccessibleButton>
|
|
);
|
|
}
|
|
}
|