/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2019, 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 classNames from 'classnames'; import { throttle } from 'lodash'; import { MatrixEvent, Room, RoomStateEvent } from 'matrix-js-sdk/src/matrix'; import { CallType } from "matrix-js-sdk/src/webrtc/call"; import { _t } from '../../../languageHandler'; import { MatrixClientPeg } from '../../../MatrixClientPeg'; import defaultDispatcher from "../../../dispatcher/dispatcher"; import { Action } from "../../../dispatcher/actions"; import { UserTab } from "../dialogs/UserTab"; import SettingsStore from "../../../settings/SettingsStore"; import RoomHeaderButtons from '../right_panel/RoomHeaderButtons'; import E2EIcon from './E2EIcon'; import DecoratedRoomAvatar from "../avatars/DecoratedRoomAvatar"; import AccessibleTooltipButton from "../elements/AccessibleTooltipButton"; import RoomTopic from "../elements/RoomTopic"; import RoomName from "../elements/RoomName"; import { E2EStatus } from '../../../utils/ShieldUtils'; import { IOOBData } from '../../../stores/ThreepidInviteStore'; import { SearchScope } from './SearchBar'; import { ContextMenuTooltipButton } from '../../structures/ContextMenu'; import RoomContextMenu from "../context_menus/RoomContextMenu"; import { contextMenuBelow } from './RoomTile'; import { RoomNotificationStateStore } from '../../../stores/notifications/RoomNotificationStateStore'; import { RightPanelPhases } from '../../../stores/right-panel/RightPanelStorePhases'; import { NotificationStateEvents } from '../../../stores/notifications/NotificationState'; import RoomContext from "../../../contexts/RoomContext"; import RoomLiveShareWarning from '../beacon/RoomLiveShareWarning'; import { BetaPill } from "../beta/BetaCard"; export interface ISearchInfo { searchTerm: string; searchScope: SearchScope; searchCount: number; } interface IProps { room: Room; oobData?: IOOBData; inRoom: boolean; onSearchClick: () => void; onInviteClick: () => void; onForgetClick: () => void; onCallPlaced: (type: CallType) => void; onAppsClick: () => void; e2eStatus: E2EStatus; appsShown: boolean; searchInfo: ISearchInfo; excludedRightPanelPhaseButtons?: Array; } interface IState { contextMenuPosition?: DOMRect; } export default class RoomHeader extends React.Component { static defaultProps = { editing: false, inRoom: false, excludedRightPanelPhaseButtons: [], }; static contextType = RoomContext; public context!: React.ContextType; constructor(props, context) { super(props, context); const notiStore = RoomNotificationStateStore.instance.getRoomState(props.room); notiStore.on(NotificationStateEvents.Update, this.onNotificationUpdate); this.state = {}; } public componentDidMount() { const cli = MatrixClientPeg.get(); cli.on(RoomStateEvent.Events, this.onRoomStateEvents); } public componentWillUnmount() { const cli = MatrixClientPeg.get(); if (cli) { cli.removeListener(RoomStateEvent.Events, this.onRoomStateEvents); } const notiStore = RoomNotificationStateStore.instance.getRoomState(this.props.room); notiStore.removeListener(NotificationStateEvents.Update, this.onNotificationUpdate); } private onRoomStateEvents = (event: MatrixEvent) => { if (!this.props.room || event.getRoomId() !== this.props.room.roomId) { return; } // redisplay the room name, topic, etc. this.rateLimitedUpdate(); }; private onNotificationUpdate = () => { this.forceUpdate(); }; private rateLimitedUpdate = throttle(() => { this.forceUpdate(); }, 500, { leading: true, trailing: true }); private onContextMenuOpenClick = (ev: React.MouseEvent) => { ev.preventDefault(); ev.stopPropagation(); const target = ev.target as HTMLButtonElement; this.setState({ contextMenuPosition: target.getBoundingClientRect() }); }; private onContextMenuCloseClick = () => { this.setState({ contextMenuPosition: null }); }; public render() { let searchStatus = null; // don't display the search count until the search completes and // gives us a valid (possibly zero) searchCount. if (this.props.searchInfo && this.props.searchInfo.searchCount !== undefined && this.props.searchInfo.searchCount !== null) { searchStatus =
  { _t("(~%(count)s results)", { count: this.props.searchInfo.searchCount }) }
; } // XXX: this is a bit inefficient - we could just compare room.name for 'Empty room'... let settingsHint = false; const members = this.props.room ? this.props.room.getJoinedMembers() : undefined; if (members) { if (members.length === 1 && members[0].userId === MatrixClientPeg.get().credentials.userId) { const nameEvent = this.props.room.currentState.getStateEvents('m.room.name', ''); if (!nameEvent || !nameEvent.getContent().name) { settingsHint = true; } } } let oobName = _t("Join Room"); if (this.props.oobData && this.props.oobData.name) { oobName = this.props.oobData.name; } let contextMenu: JSX.Element; if (this.state.contextMenuPosition && this.props.room) { contextMenu = ( ); } const textClasses = classNames('mx_RoomHeader_nametext', { mx_RoomHeader_settingsHint: settingsHint }); const name = ( { (name) => { const roomName = name || oobName; return
{ roomName }
; } }
{ this.props.room &&
} { contextMenu } ); const topicElement = ; let roomAvatar; if (this.props.room) { roomAvatar = ; } const buttons: JSX.Element[] = []; if (this.props.inRoom && this.props.onCallPlaced && !this.context.tombstone && SettingsStore.getValue("showCallButtonsInComposer") ) { const voiceCallButton = this.props.onCallPlaced(CallType.Voice)} title={_t("Voice call")} key="voice" />; const videoCallButton = this.props.onCallPlaced(CallType.Video)} title={_t("Video call")} key="video" />; buttons.push(voiceCallButton, videoCallButton); } if (this.props.onForgetClick) { const forgetButton = ; buttons.push(forgetButton); } if (this.props.onAppsClick) { const appsButton = ; buttons.push(appsButton); } if (this.props.onSearchClick && this.props.inRoom) { const searchButton = ; buttons.push(searchButton); } if (this.props.onInviteClick && this.props.inRoom) { const inviteButton = ; buttons.push(inviteButton); } const rightRow =
{ buttons }
; const e2eIcon = this.props.e2eStatus ? : undefined; const isVideoRoom = SettingsStore.getValue("feature_video_rooms") && this.props.room.isElementVideoRoom(); const viewLabs = () => defaultDispatcher.dispatch({ action: Action.ViewUserSettings, initialTabId: UserTab.Labs, }); const betaPill = isVideoRoom ? ( ) : null; return (
{ roomAvatar }
{ e2eIcon }
{ name } { searchStatus } { topicElement } { betaPill } { rightRow }
); } }