/* Copyright 2019 Michael Telatynski <7t3chguy@gmail.com> Copyright 2015 - 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 React from 'react'; import { Room } from "matrix-js-sdk/src/models/room"; import { RoomState } from "matrix-js-sdk/src/models/room-state"; import { RoomMember } from "matrix-js-sdk/src/models/room-member"; import { MatrixEvent } from "matrix-js-sdk/src/models/event"; import { throttle } from 'lodash'; import dis from '../../dispatcher/dispatcher'; import GroupStore from '../../stores/GroupStore'; import { RightPanelPhases } from '../../stores/right-panel/RightPanelStorePhases'; import RightPanelStore from "../../stores/right-panel/RightPanelStore"; import MatrixClientContext from "../../contexts/MatrixClientContext"; import RoomSummaryCard from "../views/right_panel/RoomSummaryCard"; import WidgetCard from "../views/right_panel/WidgetCard"; import { replaceableComponent } from "../../utils/replaceableComponent"; import SettingsStore from "../../settings/SettingsStore"; import MemberList from "../views/rooms/MemberList"; import GroupMemberList from "../views/groups/GroupMemberList"; import GroupRoomList from "../views/groups/GroupRoomList"; import GroupRoomInfo from "../views/groups/GroupRoomInfo"; import UserInfo from "../views/right_panel/UserInfo"; import ThirdPartyMemberInfo from "../views/rooms/ThirdPartyMemberInfo"; import FilePanel from "./FilePanel"; import ThreadView from "./ThreadView"; import ThreadPanel from "./ThreadPanel"; import NotificationPanel from "./NotificationPanel"; import ResizeNotifier from "../../utils/ResizeNotifier"; import PinnedMessagesCard from "../views/right_panel/PinnedMessagesCard"; import { RoomPermalinkCreator } from '../../utils/permalinks/Permalinks'; import { E2EStatus } from '../../utils/ShieldUtils'; import TimelineCard from '../views/right_panel/TimelineCard'; import { UPDATE_EVENT } from '../../stores/AsyncStore'; import { IRightPanelCard, IRightPanelCardState } from '../../stores/right-panel/RightPanelStoreIPanelState'; interface IProps { room?: Room; // if showing panels for a given room, this is set groupId?: string; // if showing panels for a given group, this is set overwriteCard?: IRightPanelCard; // used to display a custom card and ignoring the RightPanelStore (used for UserView) resizeNotifier: ResizeNotifier; permalinkCreator?: RoomPermalinkCreator; e2eStatus?: E2EStatus; } interface IState { phase: RightPanelPhases; isUserPrivilegedInGroup?: boolean; searchQuery: string; cardState?: IRightPanelCardState; } @replaceableComponent("structures.RightPanel") export default class RightPanel extends React.Component { static contextType = MatrixClientContext; constructor(props, context) { super(props, context); this.state = { cardState: RightPanelStore.instance.currentCard?.state, phase: RightPanelStore.instance.currentCard?.phase, isUserPrivilegedInGroup: null, searchQuery: "", }; } private readonly delayedUpdate = throttle((): void => { this.forceUpdate(); }, 500, { leading: true, trailing: true }); public componentDidMount(): void { const cli = this.context; cli.on("RoomState.members", this.onRoomStateMember); RightPanelStore.instance.on(UPDATE_EVENT, this.onRightPanelStoreUpdate); this.initGroupStore(this.props.groupId); } public componentWillUnmount(): void { if (this.context) { this.context.removeListener("RoomState.members", this.onRoomStateMember); } RightPanelStore.instance.off(UPDATE_EVENT, this.onRightPanelStoreUpdate); this.unregisterGroupStore(); } // TODO: [REACT-WARNING] Replace with appropriate lifecycle event public UNSAFE_componentWillReceiveProps(newProps: IProps): void { // eslint-disable-line if (newProps.groupId !== this.props.groupId) { this.unregisterGroupStore(); this.initGroupStore(newProps.groupId); } } private initGroupStore(groupId: string) { if (!groupId) return; GroupStore.registerListener(groupId, this.onGroupStoreUpdated); } private unregisterGroupStore() { GroupStore.unregisterListener(this.onGroupStoreUpdated); } private onGroupStoreUpdated = () => { this.setState({ isUserPrivilegedInGroup: GroupStore.isUserPrivileged(this.props.groupId), }); }; private onRoomStateMember = (ev: MatrixEvent, state: RoomState, member: RoomMember) => { if (!this.props.room || member.roomId !== this.props.room.roomId) { return; } // redraw the badge on the membership list if (this.state.phase === RightPanelPhases.RoomMemberList && member.roomId === this.props.room.roomId) { this.delayedUpdate(); } else if ( this.state.phase === RightPanelPhases.RoomMemberInfo && member.roomId === this.props.room.roomId && member.userId === this.state.cardState.member.userId ) { // refresh the member info (e.g. new power level) this.delayedUpdate(); } }; private onRightPanelStoreUpdate = () => { const currentPanel = RightPanelStore.instance.currentCard; this.setState({ cardState: currentPanel.state, phase: currentPanel.phase, }); }; private onClose = () => { // XXX: There are three different ways of 'closing' this panel depending on what state // things are in... this knows far more than it should do about the state of the rest // of the app and is generally a bit silly. if (this.props.overwriteCard?.state?.member) { // If we have a user prop then we're displaying a user from the 'user' page type // in LoggedInView, so need to change the page type to close the panel (we switch // to the home page which is not obviously the correct thing to do, but I'm not sure // anything else is - we could hide the close button altogether?) dis.dispatch({ action: "view_home_page", }); } else if ( this.state.phase === RightPanelPhases.EncryptionPanel && this.state.cardState.verificationRequest && this.state.cardState.verificationRequest.pending ) { // When the user clicks close on the encryption panel cancel the pending request first if any this.state.cardState.verificationRequest.cancel(); } else { RightPanelStore.instance.togglePanel(); } }; private onSearchQueryChanged = (searchQuery: string): void => { this.setState({ searchQuery }); }; public render(): JSX.Element { let card =
; const roomId = this.props.room ? this.props.room.roomId : undefined; const phase = this.props.overwriteCard?.phase ?? this.state.phase; const cardState = this.props.overwriteCard?.state ?? this.state.cardState; switch (phase) { case RightPanelPhases.RoomMemberList: if (roomId) { card = ; } break; case RightPanelPhases.SpaceMemberList: card = ; break; case RightPanelPhases.GroupMemberList: if (this.props.groupId) { card = ; } break; case RightPanelPhases.GroupRoomList: card = ; break; case RightPanelPhases.RoomMemberInfo: case RightPanelPhases.SpaceMemberInfo: case RightPanelPhases.EncryptionPanel: { const roomMember = cardState.member instanceof RoomMember ? cardState.member : undefined; card = ; break; } case RightPanelPhases.Room3pidMemberInfo: case RightPanelPhases.Space3pidMemberInfo: card = ; break; case RightPanelPhases.GroupMemberInfo: card = ; break; case RightPanelPhases.GroupRoomInfo: card = ; break; case RightPanelPhases.NotificationPanel: card = ; break; case RightPanelPhases.PinnedMessages: if (SettingsStore.getValue("feature_pinning")) { card = ; } break; case RightPanelPhases.Timeline: card = ; break; case RightPanelPhases.FilePanel: card = ; break; case RightPanelPhases.ThreadView: card = ; break; case RightPanelPhases.ThreadPanel: card = ; break; case RightPanelPhases.RoomSummary: card = ; break; case RightPanelPhases.Widget: card = ; break; } return ( ); } }