/* 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. */ import * as React from "react"; import {User} from "matrix-js-sdk/src/models/user"; import { MatrixClientPeg } from "../../MatrixClientPeg"; import defaultDispatcher from "../../dispatcher/dispatcher"; import { ActionPayload } from "../../dispatcher/payloads"; import { Action } from "../../dispatcher/actions"; import { createRef } from "react"; import { _t } from "../../languageHandler"; import {ContextMenu, ContextMenuButton} from "./ContextMenu"; import {USER_NOTIFICATIONS_TAB, USER_SECURITY_TAB} from "../views/dialogs/UserSettingsDialog"; import { OpenToTabPayload } from "../../dispatcher/payloads/OpenToTabPayload"; import RedesignFeedbackDialog from "../views/dialogs/RedesignFeedbackDialog"; import Modal from "../../Modal"; import LogoutDialog from "../views/dialogs/LogoutDialog"; interface IProps { } interface IState { user: User; menuDisplayed: boolean; } export default class UserMenuButton extends React.Component { private dispatcherRef: string; private buttonRef: React.RefObject = createRef(); constructor(props: IProps) { super(props); this.state = { menuDisplayed: false, user: MatrixClientPeg.get().getUser(MatrixClientPeg.get().getUserId()), }; } private get displayName(): string { if (MatrixClientPeg.get().isGuest()) { return _t("Guest"); } else if (this.state.user) { return this.state.user.displayName; } else { return MatrixClientPeg.get().getUserId(); } } public componentDidMount() { this.dispatcherRef = defaultDispatcher.register(this.onAction); } private onAction = (ev: ActionPayload) => { if (ev.action !== Action.ToggleUserMenu) return; // not interested // For accessibility if (this.buttonRef.current) this.buttonRef.current.click(); }; private onOpenMenuClick = (ev: InputEvent) => { ev.preventDefault(); ev.stopPropagation(); this.setState({menuDisplayed: true}); }; private onCloseMenu = () => { this.setState({menuDisplayed: false}); }; private onSwitchThemeClick = () => { console.log("TODO: Switch theme"); }; private onSettingsOpen = (ev: React.MouseEvent, tabId: string) => { ev.preventDefault(); ev.stopPropagation(); const payload: OpenToTabPayload = {action: Action.ViewUserSettings, initialTabId: tabId}; defaultDispatcher.dispatch(payload); this.setState({menuDisplayed: false}); // also close the menu }; private onShowArchived = (ev: React.MouseEvent) => { ev.preventDefault(); ev.stopPropagation(); // TODO: Archived room view (deferred) console.log("TODO: Show archived rooms"); }; private onProvideFeedback = (ev: React.MouseEvent) => { ev.preventDefault(); ev.stopPropagation(); Modal.createTrackedDialog('Report bugs & give feedback', '', RedesignFeedbackDialog); this.setState({menuDisplayed: false}); // also close the menu }; private onSignOutClick = (ev: React.MouseEvent) => { ev.preventDefault(); ev.stopPropagation(); Modal.createTrackedDialog('Logout from LeftPanel', '', LogoutDialog); this.setState({menuDisplayed: false}); // also close the menu }; public render() { let contextMenu; if (this.state.menuDisplayed) { const elementRect = this.buttonRef.current.getBoundingClientRect(); contextMenu = (
{this.displayName} {MatrixClientPeg.get().getUserId()}
{_t("Switch
TODO: Upgrade prompt
); } return ( ... {contextMenu} ) } }