/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd Copyright 2018, 2019 New Vector Ltd Copyright 2019 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. */ // TODO: This component is enormous! There's several things which could stand-alone: // - Search results component // - Drag and drop import shouldHideEvent from '../../shouldHideEvent'; import React, {createRef} from 'react'; import createReactClass from 'create-react-class'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { _t } from '../../languageHandler'; import {RoomPermalinkCreator} from '../../utils/permalinks/Permalinks'; import ContentMessages from '../../ContentMessages'; import Modal from '../../Modal'; import * as sdk from '../../index'; import CallHandler from '../../CallHandler'; import dis from '../../dispatcher/dispatcher'; import Tinter from '../../Tinter'; import rate_limited_func from '../../ratelimitedfunc'; import * as ObjectUtils from '../../ObjectUtils'; import * as Rooms from '../../Rooms'; import eventSearch, {searchPagination} from '../../Searching'; import {isOnlyCtrlOrCmdIgnoreShiftKeyEvent, isOnlyCtrlOrCmdKeyEvent, Key} from '../../Keyboard'; import MainSplit from './MainSplit'; import RightPanel from './RightPanel'; import RoomViewStore from '../../stores/RoomViewStore'; import RoomScrollStateStore from '../../stores/RoomScrollStateStore'; import WidgetEchoStore from '../../stores/WidgetEchoStore'; import SettingsStore from "../../settings/SettingsStore"; import AccessibleButton from "../views/elements/AccessibleButton"; import RightPanelStore from "../../stores/RightPanelStore"; import {haveTileForEvent} from "../views/rooms/EventTile"; import RoomContext from "../../contexts/RoomContext"; import MatrixClientContext from "../../contexts/MatrixClientContext"; import { shieldStatusForRoom } from '../../utils/ShieldUtils'; import {Action} from "../../dispatcher/actions"; import {SettingLevel} from "../../settings/SettingLevel"; const DEBUG = false; let debuglog = function() {}; const BROWSER_SUPPORTS_SANDBOX = 'sandbox' in document.createElement('iframe'); if (DEBUG) { // using bind means that we get to keep useful line numbers in the console debuglog = console.log.bind(console); } export default createReactClass({ displayName: 'RoomView', propTypes: { ConferenceHandler: PropTypes.any, // Called with the credentials of a registered user (if they were a ROU that // transitioned to PWLU) onRegistered: PropTypes.func, // An object representing a third party invite to join this room // Fields: // * inviteSignUrl (string) The URL used to join this room from an email invite // (given as part of the link in the invite email) // * invitedEmail (string) The email address that was invited to this room thirdPartyInvite: PropTypes.object, // Any data about the room that would normally come from the homeserver // but has been passed out-of-band, eg. the room name and avatar URL // from an email invite (a workaround for the fact that we can't // get this information from the HS using an email invite). // Fields: // * name (string) The room's name // * avatarUrl (string) The mxc:// avatar URL for the room // * inviterName (string) The display name of the person who // * invited us to the room oobData: PropTypes.object, // Servers the RoomView can use to try and assist joins viaServers: PropTypes.arrayOf(PropTypes.string), }, statics: { contextType: MatrixClientContext, }, getInitialState: function() { const llMembers = this.context.hasLazyLoadMembersEnabled(); return { room: null, roomId: null, roomLoading: true, peekLoading: false, shouldPeek: true, // Media limits for uploading. mediaConfig: undefined, // used to trigger a rerender in TimelinePanel once the members are loaded, // so RR are rendered again (now with the members available), ... membersLoaded: !llMembers, // The event to be scrolled to initially initialEventId: null, // The offset in pixels from the event with which to scroll vertically initialEventPixelOffset: null, // Whether to highlight the event scrolled to isInitialEventHighlighted: null, forwardingEvent: null, numUnreadMessages: 0, draggingFile: false, searching: false, searchResults: null, callState: null, guestsCanJoin: false, canPeek: false, showApps: false, isAlone: false, isPeeking: false, showingPinned: false, showReadReceipts: true, showRightPanel: RightPanelStore.getSharedInstance().isOpenForRoom, // error object, as from the matrix client/server API // If we failed to load information about the room, // store the error here. roomLoadError: null, // Have we sent a request to join the room that we're waiting to complete? joining: false, // this is true if we are fully scrolled-down, and are looking at // the end of the live timeline. It has the effect of hiding the // 'scroll to bottom' knob, among a couple of other things. atEndOfLiveTimeline: true, atEndOfLiveTimelineInit: false, // used by componentDidUpdate to avoid unnecessary checks showTopUnreadMessagesBar: false, auxPanelMaxHeight: undefined, statusBarVisible: false, // We load this later by asking the js-sdk to suggest a version for us. // This object is the result of Room#getRecommendedVersion() upgradeRecommendation: null, canReact: false, canReply: false, useIRCLayout: SettingsStore.getValue("useIRCLayout"), matrixClientIsReady: this.context && this.context.isInitialSyncComplete(), }; }, // TODO: [REACT-WARNING] Replace component with real class, use constructor for refs UNSAFE_componentWillMount: function() { this.dispatcherRef = dis.register(this.onAction); this.context.on("Room", this.onRoom); this.context.on("Room.timeline", this.onRoomTimeline); this.context.on("Room.name", this.onRoomName); this.context.on("Room.accountData", this.onRoomAccountData); this.context.on("RoomState.events", this.onRoomStateEvents); this.context.on("RoomState.members", this.onRoomStateMember); this.context.on("Room.myMembership", this.onMyMembership); this.context.on("accountData", this.onAccountData); this.context.on("crypto.keyBackupStatus", this.onKeyBackupStatus); this.context.on("deviceVerificationChanged", this.onDeviceVerificationChanged); this.context.on("userTrustStatusChanged", this.onUserVerificationChanged); this.context.on("crossSigning.keysChanged", this.onCrossSigningKeysChanged); // Start listening for RoomViewStore updates this._roomStoreToken = RoomViewStore.addListener(this._onRoomViewStoreUpdate); this._rightPanelStoreToken = RightPanelStore.getSharedInstance().addListener(this._onRightPanelStoreUpdate); this._onRoomViewStoreUpdate(true); WidgetEchoStore.on('update', this._onWidgetEchoStoreUpdate); this._showReadReceiptsWatchRef = SettingsStore.watchSetting("showReadReceipts", null, this._onReadReceiptsChange); this._roomView = createRef(); this._searchResultsPanel = createRef(); this._layoutWatcherRef = SettingsStore.watchSetting("useIRCLayout", null, this.onLayoutChange); }, _onReadReceiptsChange: function() { this.setState({ showReadReceipts: SettingsStore.getValue("showReadReceipts", this.state.roomId), }); }, _onRoomViewStoreUpdate: function(initial) { if (this.unmounted) { return; } if (!initial && this.state.roomId !== RoomViewStore.getRoomId()) { // RoomView explicitly does not support changing what room // is being viewed: instead it should just be re-mounted when // switching rooms. Therefore, if the room ID changes, we // ignore this. We either need to do this or add code to handle // saving the scroll position (otherwise we end up saving the // scroll position against the wrong room). // Given that doing the setState here would cause a bunch of // unnecessary work, we just ignore the change since we know // that if the current room ID has changed from what we thought // it was, it means we're about to be unmounted. return; } const roomId = RoomViewStore.getRoomId(); const newState = { roomId, roomAlias: RoomViewStore.getRoomAlias(), roomLoading: RoomViewStore.isRoomLoading(), roomLoadError: RoomViewStore.getRoomLoadError(), joining: RoomViewStore.isJoining(), initialEventId: RoomViewStore.getInitialEventId(), isInitialEventHighlighted: RoomViewStore.isInitialEventHighlighted(), forwardingEvent: RoomViewStore.getForwardingEvent(), // we should only peek once we have a ready client shouldPeek: this.state.matrixClientIsReady && RoomViewStore.shouldPeek(), showingPinned: SettingsStore.getValue("PinnedEvents.isOpen", roomId), showReadReceipts: SettingsStore.getValue("showReadReceipts", roomId), }; if (!initial && this.state.shouldPeek && !newState.shouldPeek) { // Stop peeking because we have joined this room now this.context.stopPeeking(); } // Temporary logging to diagnose https://github.com/vector-im/element-web/issues/4307 console.log( 'RVS update:', newState.roomId, newState.roomAlias, 'loading?', newState.roomLoading, 'joining?', newState.joining, 'initial?', initial, 'shouldPeek?', newState.shouldPeek, ); // NB: This does assume that the roomID will not change for the lifetime of // the RoomView instance if (initial) { newState.room = this.context.getRoom(newState.roomId); if (newState.room) { newState.showApps = this._shouldShowApps(newState.room); this._onRoomLoaded(newState.room); } } if (this.state.roomId === null && newState.roomId !== null) { // Get the scroll state for the new room // If an event ID wasn't specified, default to the one saved for this room // in the scroll state store. Assume initialEventPixelOffset should be set. if (!newState.initialEventId) { const roomScrollState = RoomScrollStateStore.getScrollState(newState.roomId); if (roomScrollState) { newState.initialEventId = roomScrollState.focussedEvent; newState.initialEventPixelOffset = roomScrollState.pixelOffset; } } } // Clear the search results when clicking a search result (which changes the // currently scrolled to event, this.state.initialEventId). if (this.state.initialEventId !== newState.initialEventId) { newState.searchResults = null; } this.setState(newState); // At this point, newState.roomId could be null (e.g. the alias might not // have been resolved yet) so anything called here must handle this case. // We pass the new state into this function for it to read: it needs to // observe the new state but we don't want to put it in the setState // callback because this would prevent the setStates from being batched, // ie. cause it to render RoomView twice rather than the once that is necessary. if (initial) { this._setupRoom(newState.room, newState.roomId, newState.joining, newState.shouldPeek); } }, _getRoomId() { // According to `_onRoomViewStoreUpdate`, `state.roomId` can be null // if we have a room alias we haven't resolved yet. To work around this, // first we'll try the room object if it's there, and then fallback to // the bare room ID. (We may want to update `state.roomId` after // resolving aliases, so we could always trust it.) return this.state.room ? this.state.room.roomId : this.state.roomId; }, _getPermalinkCreatorForRoom: function(room) { if (!this._permalinkCreators) this._permalinkCreators = {}; if (this._permalinkCreators[room.roomId]) return this._permalinkCreators[room.roomId]; this._permalinkCreators[room.roomId] = new RoomPermalinkCreator(room); if (this.state.room && room.roomId === this.state.room.roomId) { // We want to watch for changes in the creator for the primary room in the view, but // don't need to do so for search results. this._permalinkCreators[room.roomId].start(); } else { this._permalinkCreators[room.roomId].load(); } return this._permalinkCreators[room.roomId]; }, _stopAllPermalinkCreators: function() { if (!this._permalinkCreators) return; for (const roomId of Object.keys(this._permalinkCreators)) { this._permalinkCreators[roomId].stop(); } }, _onWidgetEchoStoreUpdate: function() { this.setState({ showApps: this._shouldShowApps(this.state.room), }); }, _setupRoom: function(room, roomId, joining, shouldPeek) { // if this is an unknown room then we're in one of three states: // - This is a room we can peek into (search engine) (we can /peek) // - This is a room we can publicly join or were invited to. (we can /join) // - This is a room we cannot join at all. (no action can help us) // We can't try to /join because this may implicitly accept invites (!) // We can /peek though. If it fails then we present the join UI. If it // succeeds then great, show the preview (but we still may be able to /join!). // Note that peeking works by room ID and room ID only, as opposed to joining // which must be by alias or invite wherever possible (peeking currently does // not work over federation). // NB. We peek if we have never seen the room before (i.e. js-sdk does not know // about it). We don't peek in the historical case where we were joined but are // now not joined because the js-sdk peeking API will clobber our historical room, // making it impossible to indicate a newly joined room. if (!joining && roomId) { if (this.props.autoJoin) { this.onJoinButtonClicked(); } else if (!room && shouldPeek) { console.info("Attempting to peek into room %s", roomId); this.setState({ peekLoading: true, isPeeking: true, // this will change to false if peeking fails }); this.context.peekInRoom(roomId).then((room) => { if (this.unmounted) { return; } this.setState({ room: room, peekLoading: false, }); this._onRoomLoaded(room); }).catch((err) => { if (this.unmounted) { return; } // Stop peeking if anything went wrong this.setState({ isPeeking: false, }); // This won't necessarily be a MatrixError, but we duck-type // here and say if it's got an 'errcode' key with the right value, // it means we can't peek. if (err.errcode === "M_GUEST_ACCESS_FORBIDDEN" || err.errcode === 'M_FORBIDDEN') { // This is fine: the room just isn't peekable (we assume). this.setState({ peekLoading: false, }); } else { throw err; } }); } else if (room) { // Stop peeking because we have joined this room previously this.context.stopPeeking(); this.setState({isPeeking: false}); } } }, _shouldShowApps: function(room) { if (!BROWSER_SUPPORTS_SANDBOX) return false; // Check if user has previously chosen to hide the app drawer for this // room. If so, do not show apps const hideWidgetDrawer = localStorage.getItem( room.roomId + "_hide_widget_drawer"); // This is confusing, but it means to say that we default to the tray being // hidden unless the user clicked to open it. return hideWidgetDrawer === "false"; }, componentDidMount: function() { const call = this._getCallForRoom(); const callState = call ? call.call_state : "ended"; this.setState({ callState: callState, }); this._updateConfCallNotification(); window.addEventListener('beforeunload', this.onPageUnload); if (this.props.resizeNotifier) { this.props.resizeNotifier.on("middlePanelResized", this.onResize); } this.onResize(); document.addEventListener("keydown", this.onNativeKeyDown); }, shouldComponentUpdate: function(nextProps, nextState) { return (!ObjectUtils.shallowEqual(this.props, nextProps) || !ObjectUtils.shallowEqual(this.state, nextState)); }, componentDidUpdate: function() { if (this._roomView.current) { const roomView = this._roomView.current; if (!roomView.ondrop) { roomView.addEventListener('drop', this.onDrop); roomView.addEventListener('dragover', this.onDragOver); roomView.addEventListener('dragleave', this.onDragLeaveOrEnd); roomView.addEventListener('dragend', this.onDragLeaveOrEnd); } } // Note: We check the ref here with a flag because componentDidMount, despite // documentation, does not define our messagePanel ref. It looks like our spinner // in render() prevents the ref from being set on first mount, so we try and // catch the messagePanel when it does mount. Because we only want the ref once, // we use a boolean flag to avoid duplicate work. if (this._messagePanel && !this.state.atEndOfLiveTimelineInit) { this.setState({ atEndOfLiveTimelineInit: true, atEndOfLiveTimeline: this._messagePanel.isAtEndOfLiveTimeline(), }); } }, componentWillUnmount: function() { // set a boolean to say we've been unmounted, which any pending // promises can use to throw away their results. // // (We could use isMounted, but facebook have deprecated that.) this.unmounted = true; // update the scroll map before we get unmounted if (this.state.roomId) { RoomScrollStateStore.setScrollState(this.state.roomId, this._getScrollState()); } if (this.state.shouldPeek) { this.context.stopPeeking(); } // stop tracking room changes to format permalinks this._stopAllPermalinkCreators(); if (this._roomView.current) { // disconnect the D&D event listeners from the room view. This // is really just for hygiene - we're going to be // deleted anyway, so it doesn't matter if the event listeners // don't get cleaned up. const roomView = this._roomView.current; roomView.removeEventListener('drop', this.onDrop); roomView.removeEventListener('dragover', this.onDragOver); roomView.removeEventListener('dragleave', this.onDragLeaveOrEnd); roomView.removeEventListener('dragend', this.onDragLeaveOrEnd); } dis.unregister(this.dispatcherRef); if (this.context) { this.context.removeListener("Room", this.onRoom); this.context.removeListener("Room.timeline", this.onRoomTimeline); this.context.removeListener("Room.name", this.onRoomName); this.context.removeListener("Room.accountData", this.onRoomAccountData); this.context.removeListener("RoomState.events", this.onRoomStateEvents); this.context.removeListener("Room.myMembership", this.onMyMembership); this.context.removeListener("RoomState.members", this.onRoomStateMember); this.context.removeListener("accountData", this.onAccountData); this.context.removeListener("crypto.keyBackupStatus", this.onKeyBackupStatus); this.context.removeListener("deviceVerificationChanged", this.onDeviceVerificationChanged); this.context.removeListener("userTrustStatusChanged", this.onUserVerificationChanged); this.context.removeListener("crossSigning.keysChanged", this.onCrossSigningKeysChanged); } window.removeEventListener('beforeunload', this.onPageUnload); if (this.props.resizeNotifier) { this.props.resizeNotifier.removeListener("middlePanelResized", this.onResize); } document.removeEventListener("keydown", this.onNativeKeyDown); // Remove RoomStore listener if (this._roomStoreToken) { this._roomStoreToken.remove(); } // Remove RightPanelStore listener if (this._rightPanelStoreToken) { this._rightPanelStoreToken.remove(); } WidgetEchoStore.removeListener('update', this._onWidgetEchoStoreUpdate); if (this._showReadReceiptsWatchRef) { SettingsStore.unwatchSetting(this._showReadReceiptsWatchRef); this._showReadReceiptsWatchRef = null; } // cancel any pending calls to the rate_limited_funcs this._updateRoomMembers.cancelPendingCall(); // no need to do this as Dir & Settings are now overlays. It just burnt CPU. // console.log("Tinter.tint from RoomView.unmount"); // Tinter.tint(); // reset colourscheme SettingsStore.unwatchSetting(this._layoutWatcherRef); }, onLayoutChange: function() { this.setState({ useIRCLayout: SettingsStore.getValue("useIRCLayout"), }); }, _onRightPanelStoreUpdate: function() { this.setState({ showRightPanel: RightPanelStore.getSharedInstance().isOpenForRoom, }); }, onPageUnload(event) { if (ContentMessages.sharedInstance().getCurrentUploads().length > 0) { return event.returnValue = _t("You seem to be uploading files, are you sure you want to quit?"); } else if (this._getCallForRoom() && this.state.callState !== 'ended') { return event.returnValue = _t("You seem to be in a call, are you sure you want to quit?"); } }, // we register global shortcuts here, they *must not conflict* with local shortcuts elsewhere or both will fire onNativeKeyDown: function(ev) { let handled = false; const ctrlCmdOnly = isOnlyCtrlOrCmdKeyEvent(ev); switch (ev.key) { case Key.D: if (ctrlCmdOnly) { this.onMuteAudioClick(); handled = true; } break; case Key.E: if (ctrlCmdOnly) { this.onMuteVideoClick(); handled = true; } break; } if (handled) { ev.stopPropagation(); ev.preventDefault(); } }, onReactKeyDown: function(ev) { let handled = false; switch (ev.key) { case Key.ESCAPE: if (!ev.altKey && !ev.ctrlKey && !ev.shiftKey && !ev.metaKey) { this._messagePanel.forgetReadMarker(); this.jumpToLiveTimeline(); handled = true; } break; case Key.PAGE_UP: if (!ev.altKey && !ev.ctrlKey && ev.shiftKey && !ev.metaKey) { this.jumpToReadMarker(); handled = true; } break; case Key.U.toUpperCase(): if (isOnlyCtrlOrCmdIgnoreShiftKeyEvent(ev) && ev.shiftKey) { dis.dispatch({ action: "upload_file" }) handled = true; } break; } if (handled) { ev.stopPropagation(); ev.preventDefault(); } }, onAction: function(payload) { switch (payload.action) { case 'message_send_failed': case 'message_sent': this._checkIfAlone(this.state.room); break; case 'post_sticker_message': this.injectSticker( payload.data.content.url, payload.data.content.info, payload.data.description || payload.data.name); break; case 'picture_snapshot': ContentMessages.sharedInstance().sendContentListToRoom([payload.file], this.state.room.roomId, this.context); break; case 'notifier_enabled': case 'upload_started': case 'upload_finished': case 'upload_canceled': this.forceUpdate(); break; case 'call_state': // don't filter out payloads for room IDs other than props.room because // we may be interested in the conf 1:1 room if (!payload.room_id) { return; } var call = this._getCallForRoom(); var callState; if (call) { callState = call.call_state; } else { callState = "ended"; } // possibly remove the conf call notification if we're now in // the conf this._updateConfCallNotification(); this.setState({ callState: callState, }); break; case 'appsDrawer': this.setState({ showApps: payload.show, }); break; case 'reply_to_event': if (this.state.searchResults && payload.event.getRoomId() === this.state.roomId && !this.unmounted) { this.onCancelSearchClick(); } break; case 'quote': if (this.state.searchResults) { const roomId = payload.event.getRoomId(); if (roomId === this.state.roomId) { this.onCancelSearchClick(); } setImmediate(() => { dis.dispatch({ action: 'view_room', room_id: roomId, deferred_action: payload, }); }); } break; case 'sync_state': if (!this.state.matrixClientIsReady) { this.setState({ matrixClientIsReady: this.context && this.context.isInitialSyncComplete(), }, () => { // send another "initial" RVS update to trigger peeking if needed this._onRoomViewStoreUpdate(true); }); } break; } }, onRoomTimeline: function(ev, room, toStartOfTimeline, removed, data) { if (this.unmounted) return; // ignore events for other rooms if (!room) return; if (!this.state.room || room.roomId != this.state.room.roomId) return; // ignore events from filtered timelines if (data.timeline.getTimelineSet() !== room.getUnfilteredTimelineSet()) return; if (ev.getType() === "org.matrix.room.preview_urls") { this._updatePreviewUrlVisibility(room); } if (ev.getType() === "m.room.encryption") { this._updateE2EStatus(room); } // ignore anything but real-time updates at the end of the room: // updates from pagination will happen when the paginate completes. if (toStartOfTimeline || !data || !data.liveEvent) return; // no point handling anything while we're waiting for the join to finish: // we'll only be showing a spinner. if (this.state.joining) return; if (ev.getSender() !== this.context.credentials.userId) { // update unread count when scrolled up if (!this.state.searchResults && this.state.atEndOfLiveTimeline) { // no change } else if (!shouldHideEvent(ev)) { this.setState((state, props) => { return {numUnreadMessages: state.numUnreadMessages + 1}; }); } } }, onRoomName: function(room) { if (this.state.room && room.roomId == this.state.room.roomId) { this.forceUpdate(); } }, onRoomRecoveryReminderDontAskAgain: function() { // Called when the option to not ask again is set: // force an update to hide the recovery reminder this.forceUpdate(); }, onKeyBackupStatus() { // Key backup status changes affect whether the in-room recovery // reminder is displayed. this.forceUpdate(); }, canResetTimeline: function() { if (!this._messagePanel) { return true; } return this._messagePanel.canResetTimeline(); }, // called when state.room is first initialised (either at initial load, // after a successful peek, or after we join the room). _onRoomLoaded: function(room) { this._calculatePeekRules(room); this._updatePreviewUrlVisibility(room); this._loadMembersIfJoined(room); this._calculateRecommendedVersion(room); this._updateE2EStatus(room); this._updatePermissions(room); }, _calculateRecommendedVersion: async function(room) { this.setState({ upgradeRecommendation: await room.getRecommendedVersion(), }); }, _loadMembersIfJoined: async function(room) { // lazy load members if enabled if (this.context.hasLazyLoadMembersEnabled()) { if (room && room.getMyMembership() === 'join') { try { await room.loadMembersIfNeeded(); if (!this.unmounted) { this.setState({membersLoaded: true}); } } catch (err) { const errorMessage = `Fetching room members for ${room.roomId} failed.` + " Room members will appear incomplete."; console.error(errorMessage); console.error(err); } } } }, _calculatePeekRules: function(room) { const guestAccessEvent = room.currentState.getStateEvents("m.room.guest_access", ""); if (guestAccessEvent && guestAccessEvent.getContent().guest_access === "can_join") { this.setState({ guestsCanJoin: true, }); } const historyVisibility = room.currentState.getStateEvents("m.room.history_visibility", ""); if (historyVisibility && historyVisibility.getContent().history_visibility === "world_readable") { this.setState({ canPeek: true, }); } }, _updatePreviewUrlVisibility: function({roomId}) { // URL Previews in E2EE rooms can be a privacy leak so use a different setting which is per-room explicit const key = this.context.isRoomEncrypted(roomId) ? 'urlPreviewsEnabled_e2ee' : 'urlPreviewsEnabled'; this.setState({ showUrlPreview: SettingsStore.getValue(key, roomId), }); }, onRoom: function(room) { if (!room || room.roomId !== this.state.roomId) { return; } this.setState({ room: room, }, () => { this._onRoomLoaded(room); }); }, onDeviceVerificationChanged: function(userId, device) { const room = this.state.room; if (!room.currentState.getMember(userId)) { return; } this._updateE2EStatus(room); }, onUserVerificationChanged: function(userId, _trustStatus) { const room = this.state.room; if (!room || !room.currentState.getMember(userId)) { return; } this._updateE2EStatus(room); }, onCrossSigningKeysChanged: function() { const room = this.state.room; if (room) { this._updateE2EStatus(room); } }, _updateE2EStatus: async function(room) { if (!this.context.isRoomEncrypted(room.roomId)) { return; } if (!this.context.isCryptoEnabled()) { // If crypto is not currently enabled, we aren't tracking devices at all, // so we don't know what the answer is. Let's error on the safe side and show // a warning for this case. this.setState({ e2eStatus: "warning", }); return; } /* At this point, the user has encryption on and cross-signing on */ this.setState({ e2eStatus: await shieldStatusForRoom(this.context, room), }); }, updateTint: function() { const room = this.state.room; if (!room) return; console.log("Tinter.tint from updateTint"); const colorScheme = SettingsStore.getValue("roomColor", room.roomId); Tinter.tint(colorScheme.primary_color, colorScheme.secondary_color); }, onAccountData: function(event) { const type = event.getType(); if ((type === "org.matrix.preview_urls" || type === "im.vector.web.settings") && this.state.room) { // non-e2ee url previews are stored in legacy event type `org.matrix.room.preview_urls` this._updatePreviewUrlVisibility(this.state.room); } }, onRoomAccountData: function(event, room) { if (room.roomId == this.state.roomId) { const type = event.getType(); if (type === "org.matrix.room.color_scheme") { const colorScheme = event.getContent(); // XXX: we should validate the event console.log("Tinter.tint from onRoomAccountData"); Tinter.tint(colorScheme.primary_color, colorScheme.secondary_color); } else if (type === "org.matrix.room.preview_urls" || type === "im.vector.web.settings") { // non-e2ee url previews are stored in legacy event type `org.matrix.room.preview_urls` this._updatePreviewUrlVisibility(room); } } }, onRoomStateEvents: function(ev, state) { // ignore if we don't have a room yet if (!this.state.room || this.state.room.roomId !== state.roomId) { return; } this._updatePermissions(this.state.room); }, onRoomStateMember: function(ev, state, member) { // ignore if we don't have a room yet if (!this.state.room) { return; } // ignore members in other rooms if (member.roomId !== this.state.room.roomId) { return; } this._updateRoomMembers(member); }, onMyMembership: function(room, membership, oldMembership) { if (room.roomId === this.state.roomId) { this.forceUpdate(); this._loadMembersIfJoined(room); this._updatePermissions(room); } }, _updatePermissions: function(room) { if (room) { const me = this.context.getUserId(); const canReact = room.getMyMembership() === "join" && room.currentState.maySendEvent("m.reaction", me); const canReply = room.maySendMessage(); this.setState({canReact, canReply}); } }, // rate limited because a power level change will emit an event for every // member in the room. _updateRoomMembers: rate_limited_func(function(dueToMember) { // a member state changed in this room // refresh the conf call notification state this._updateConfCallNotification(); this._updateDMState(); let memberCountInfluence = 0; if (dueToMember && dueToMember.membership === "invite" && this.state.room.getInvitedMemberCount() === 0) { // A member got invited, but the room hasn't detected that change yet. Influence the member // count by 1 to counteract this. memberCountInfluence = 1; } this._checkIfAlone(this.state.room, memberCountInfluence); this._updateE2EStatus(this.state.room); }, 500), _checkIfAlone: function(room, countInfluence) { let warnedAboutLonelyRoom = false; if (localStorage) { warnedAboutLonelyRoom = localStorage.getItem('mx_user_alone_warned_' + this.state.room.roomId); } if (warnedAboutLonelyRoom) { if (this.state.isAlone) this.setState({isAlone: false}); return; } let joinedOrInvitedMemberCount = room.getJoinedMemberCount() + room.getInvitedMemberCount(); if (countInfluence) joinedOrInvitedMemberCount += countInfluence; this.setState({isAlone: joinedOrInvitedMemberCount === 1}); }, _updateConfCallNotification: function() { const room = this.state.room; if (!room || !this.props.ConferenceHandler) { return; } const confMember = room.getMember( this.props.ConferenceHandler.getConferenceUserIdForRoom(room.roomId), ); if (!confMember) { return; } const confCall = this.props.ConferenceHandler.getConferenceCallForRoom(confMember.roomId); // A conf call notification should be displayed if there is an ongoing // conf call but this cilent isn't a part of it. this.setState({ displayConfCallNotification: ( (!confCall || confCall.call_state === "ended") && confMember.membership === "join" ), }); }, _updateDMState() { const room = this.state.room; if (room.getMyMembership() != "join") { return; } const dmInviter = room.getDMInviter(); if (dmInviter) { Rooms.setDMRoom(room.roomId, dmInviter); } }, onSearchResultsFillRequest: function(backwards) { if (!backwards) { return Promise.resolve(false); } if (this.state.searchResults.next_batch) { debuglog("requesting more search results"); const searchPromise = searchPagination(this.state.searchResults); return this._handleSearchResult(searchPromise); } else { debuglog("no more search results"); return Promise.resolve(false); } }, onInviteButtonClick: function() { // call AddressPickerDialog dis.dispatch({ action: 'view_invite', roomId: this.state.room.roomId, }); this.setState({isAlone: false}); // there's a good chance they'll invite someone }, onStopAloneWarningClick: function() { if (localStorage) { localStorage.setItem('mx_user_alone_warned_' + this.state.room.roomId, true); } this.setState({isAlone: false}); }, onJoinButtonClicked: function(ev) { // If the user is a ROU, allow them to transition to a PWLU if (this.context && this.context.isGuest()) { // Join this room once the user has registered and logged in // (If we failed to peek, we may not have a valid room object.) dis.dispatch({ action: 'do_after_sync_prepared', deferred_action: { action: 'view_room', room_id: this._getRoomId(), }, }); // Don't peek whilst registering otherwise getPendingEventList complains // Do this by indicating our intention to join // XXX: ILAG is disabled for now, // see https://github.com/vector-im/element-web/issues/8222 dis.dispatch({action: 'require_registration'}); // dis.dispatch({ // action: 'will_join', // }); // const SetMxIdDialog = sdk.getComponent('views.dialogs.SetMxIdDialog'); // const close = Modal.createTrackedDialog('Set MXID', '', SetMxIdDialog, { // homeserverUrl: cli.getHomeserverUrl(), // onFinished: (submitted, credentials) => { // if (submitted) { // this.props.onRegistered(credentials); // } else { // dis.dispatch({ // action: 'cancel_after_sync_prepared', // }); // dis.dispatch({ // action: 'cancel_join', // }); // } // }, // onDifferentServerClicked: (ev) => { // dis.dispatch({action: 'start_registration'}); // close(); // }, // onLoginClick: (ev) => { // dis.dispatch({action: 'start_login'}); // close(); // }, // }).close; // return; } else { Promise.resolve().then(() => { const signUrl = this.props.thirdPartyInvite ? this.props.thirdPartyInvite.inviteSignUrl : undefined; dis.dispatch({ action: 'join_room', opts: { inviteSignUrl: signUrl, viaServers: this.props.viaServers }, }); return Promise.resolve(); }); } }, onMessageListScroll: function(ev) { if (this._messagePanel.isAtEndOfLiveTimeline()) { this.setState({ numUnreadMessages: 0, atEndOfLiveTimeline: true, }); } else { this.setState({ atEndOfLiveTimeline: false, }); } this._updateTopUnreadMessagesBar(); }, onDragOver: function(ev) { ev.stopPropagation(); ev.preventDefault(); ev.dataTransfer.dropEffect = 'none'; const items = [...ev.dataTransfer.items]; if (items.length >= 1) { const isDraggingFiles = items.every(function(item) { return item.kind == 'file'; }); if (isDraggingFiles) { this.setState({ draggingFile: true }); ev.dataTransfer.dropEffect = 'copy'; } } }, onDrop: function(ev) { ev.stopPropagation(); ev.preventDefault(); ContentMessages.sharedInstance().sendContentListToRoom( ev.dataTransfer.files, this.state.room.roomId, this.context, ); this.setState({ draggingFile: false }); dis.fire(Action.FocusComposer); }, onDragLeaveOrEnd: function(ev) { ev.stopPropagation(); ev.preventDefault(); this.setState({ draggingFile: false }); }, injectSticker: function(url, info, text) { if (this.context.isGuest()) { dis.dispatch({action: 'require_registration'}); return; } ContentMessages.sharedInstance().sendStickerContentToRoom(url, this.state.room.roomId, info, text, this.context) .then(undefined, (error) => { if (error.name === "UnknownDeviceError") { // Let the staus bar handle this return; } }); }, onSearch: function(term, scope) { this.setState({ searchTerm: term, searchScope: scope, searchResults: {}, searchHighlights: [], }); // if we already have a search panel, we need to tell it to forget // about its scroll state. if (this._searchResultsPanel.current) { this._searchResultsPanel.current.resetScrollState(); } // make sure that we don't end up showing results from // an aborted search by keeping a unique id. // // todo: should cancel any previous search requests. this.searchId = new Date().getTime(); let roomId; if (scope === "Room") roomId = this.state.room.roomId; debuglog("sending search request"); const searchPromise = eventSearch(term, roomId); this._handleSearchResult(searchPromise); }, _handleSearchResult: function(searchPromise) { const self = this; // keep a record of the current search id, so that if the search terms // change before we get a response, we can ignore the results. const localSearchId = this.searchId; this.setState({ searchInProgress: true, }); return searchPromise.then(function(results) { debuglog("search complete"); if (self.unmounted || !self.state.searching || self.searchId != localSearchId) { console.error("Discarding stale search results"); return; } // postgres on synapse returns us precise details of the strings // which actually got matched for highlighting. // // In either case, we want to highlight the literal search term // whether it was used by the search engine or not. let highlights = results.highlights; if (highlights.indexOf(self.state.searchTerm) < 0) { highlights = highlights.concat(self.state.searchTerm); } // For overlapping highlights, // favour longer (more specific) terms first highlights = highlights.sort(function(a, b) { return b.length - a.length; }); self.setState({ searchHighlights: highlights, searchResults: results, }); }, function(error) { const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); console.error("Search failed", error); Modal.createTrackedDialog('Search failed', '', ErrorDialog, { title: _t("Search failed"), description: ((error && error.message) ? error.message : _t("Server may be unavailable, overloaded, or search timed out :(")), }); }).finally(function() { self.setState({ searchInProgress: false, }); }); }, getSearchResultTiles: function() { const SearchResultTile = sdk.getComponent('rooms.SearchResultTile'); const Spinner = sdk.getComponent("elements.Spinner"); // XXX: todo: merge overlapping results somehow? // XXX: why doesn't searching on name work? const ret = []; if (this.state.searchInProgress) { ret.push(
  • ); } if (!this.state.searchResults.next_batch) { if (this.state.searchResults.results.length == 0) { ret.push(
  • { _t("No results") }

  • , ); } else { ret.push(
  • { _t("No more results") }

  • , ); } } // once dynamic content in the search results load, make the scrollPanel check // the scroll offsets. const onHeightChanged = () => { const scrollPanel = this._searchResultsPanel.current; if (scrollPanel) { scrollPanel.checkScroll(); } }; let lastRoomId; for (let i = this.state.searchResults.results.length - 1; i >= 0; i--) { const result = this.state.searchResults.results[i]; const mxEv = result.context.getEvent(); const roomId = mxEv.getRoomId(); const room = this.context.getRoom(roomId); if (!room) { // if we do not have the room in js-sdk stores then hide it as we cannot easily show it // As per the spec, an all rooms search can create this condition, // it happens with Seshat but not Synapse. // It will make the result count not match the displayed count. console.log("Hiding search result from an unknown room", roomId); continue; } if (!haveTileForEvent(mxEv)) { // XXX: can this ever happen? It will make the result count // not match the displayed count. continue; } if (this.state.searchScope === 'All') { if (roomId !== lastRoomId) { ret.push(
  • { _t("Room") }: { room.name }

  • ); lastRoomId = roomId; } } const resultLink = "#/room/"+roomId+"/"+mxEv.getId(); ret.push(); } return ret; }, onPinnedClick: function() { const nowShowingPinned = !this.state.showingPinned; const roomId = this.state.room.roomId; this.setState({showingPinned: nowShowingPinned, searching: false}); SettingsStore.setValue("PinnedEvents.isOpen", roomId, SettingLevel.ROOM_DEVICE, nowShowingPinned); }, onSettingsClick: function() { dis.dispatch({ action: 'open_room_settings' }); }, onCancelClick: function() { console.log("updateTint from onCancelClick"); this.updateTint(); if (this.state.forwardingEvent) { dis.dispatch({ action: 'forward_event', event: null, }); } dis.fire(Action.FocusComposer); }, onLeaveClick: function() { dis.dispatch({ action: 'leave_room', room_id: this.state.room.roomId, }); }, onForgetClick: function() { dis.dispatch({ action: 'forget_room', room_id: this.state.room.roomId, }); }, onRejectButtonClicked: function(ev) { const self = this; this.setState({ rejecting: true, }); this.context.leave(this.state.roomId).then(function() { dis.dispatch({ action: 'view_next_room' }); self.setState({ rejecting: false, }); }, function(error) { console.error("Failed to reject invite: %s", error); const msg = error.message ? error.message : JSON.stringify(error); const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createTrackedDialog('Failed to reject invite', '', ErrorDialog, { title: _t("Failed to reject invite"), description: msg, }); self.setState({ rejecting: false, rejectError: error, }); }); }, onRejectAndIgnoreClick: async function() { this.setState({ rejecting: true, }); try { const myMember = this.state.room.getMember(this.context.getUserId()); const inviteEvent = myMember.events.member; const ignoredUsers = this.context.getIgnoredUsers(); ignoredUsers.push(inviteEvent.getSender()); // de-duped internally in the js-sdk await this.context.setIgnoredUsers(ignoredUsers); await this.context.leave(this.state.roomId); dis.dispatch({ action: 'view_next_room' }); this.setState({ rejecting: false, }); } catch (error) { console.error("Failed to reject invite: %s", error); const msg = error.message ? error.message : JSON.stringify(error); const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog"); Modal.createTrackedDialog('Failed to reject invite', '', ErrorDialog, { title: _t("Failed to reject invite"), description: msg, }); self.setState({ rejecting: false, rejectError: error, }); } }, onRejectThreepidInviteButtonClicked: function(ev) { // We can reject 3pid invites in the same way that we accept them, // using /leave rather than /join. In the short term though, we // just ignore them. // https://github.com/vector-im/vector-web/issues/1134 dis.fire(Action.ViewRoomDirectory); }, onSearchClick: function() { this.setState({ searching: !this.state.searching, showingPinned: false, }); }, onCancelSearchClick: function() { this.setState({ searching: false, searchResults: null, }); }, // jump down to the bottom of this room, where new events are arriving jumpToLiveTimeline: function() { this._messagePanel.jumpToLiveTimeline(); dis.fire(Action.FocusComposer); }, // jump up to wherever our read marker is jumpToReadMarker: function() { this._messagePanel.jumpToReadMarker(); }, // update the read marker to match the read-receipt forgetReadMarker: function(ev) { ev.stopPropagation(); this._messagePanel.forgetReadMarker(); }, // decide whether or not the top 'unread messages' bar should be shown _updateTopUnreadMessagesBar: function() { if (!this._messagePanel) { return; } const showBar = this._messagePanel.canJumpToReadMarker(); if (this.state.showTopUnreadMessagesBar != showBar) { this.setState({showTopUnreadMessagesBar: showBar}); } }, // get the current scroll position of the room, so that it can be // restored when we switch back to it. // _getScrollState: function() { const messagePanel = this._messagePanel; if (!messagePanel) return null; // if we're following the live timeline, we want to return null; that // means that, if we switch back, we will jump to the read-up-to mark. // // That should be more intuitive than slavishly preserving the current // scroll state, in the case where the room advances in the meantime // (particularly in the case that the user reads some stuff on another // device). // if (this.state.atEndOfLiveTimeline) { return null; } const scrollState = messagePanel.getScrollState(); // getScrollState on TimelinePanel *may* return null, so guard against that if (!scrollState || scrollState.stuckAtBottom) { // we don't really expect to be in this state, but it will // occasionally happen when no scroll state has been set on the // messagePanel (ie, we didn't have an initial event (so it's // probably a new room), there has been no user-initiated scroll, and // no read-receipts have arrived to update the scroll position). // // Return null, which will cause us to scroll to last unread on // reload. return null; } return { focussedEvent: scrollState.trackedScrollToken, pixelOffset: scrollState.pixelOffset, }; }, onResize: function() { // It seems flexbox doesn't give us a way to constrain the auxPanel height to have // a minimum of the height of the video element, whilst also capping it from pushing out the page // so we have to do it via JS instead. In this implementation we cap the height by putting // a maxHeight on the underlying remote video tag. // header + footer + status + give us at least 120px of scrollback at all times. let auxPanelMaxHeight = window.innerHeight - (83 + // height of RoomHeader 36 + // height of the status area 72 + // minimum height of the message compmoser 120); // amount of desired scrollback // XXX: this is a bit of a hack and might possibly cause the video to push out the page anyway // but it's better than the video going missing entirely if (auxPanelMaxHeight < 50) auxPanelMaxHeight = 50; this.setState({auxPanelMaxHeight: auxPanelMaxHeight}); }, onFullscreenClick: function() { dis.dispatch({ action: 'video_fullscreen', fullscreen: true, }, true); }, onMuteAudioClick: function() { const call = this._getCallForRoom(); if (!call) { return; } const newState = !call.isMicrophoneMuted(); call.setMicrophoneMuted(newState); this.forceUpdate(); // TODO: just update the voip buttons }, onMuteVideoClick: function() { const call = this._getCallForRoom(); if (!call) { return; } const newState = !call.isLocalVideoMuted(); call.setLocalVideoMuted(newState); this.forceUpdate(); // TODO: just update the voip buttons }, onStatusBarVisible: function() { if (this.unmounted) return; this.setState({ statusBarVisible: true, }); }, onStatusBarHidden: function() { // This is currently not desired as it is annoying if it keeps expanding and collapsing if (this.unmounted) return; this.setState({ statusBarVisible: false, }); }, /** * called by the parent component when PageUp/Down/etc is pressed. * * We pass it down to the scroll panel. */ handleScrollKey: function(ev) { let panel; if (this._searchResultsPanel.current) { panel = this._searchResultsPanel.current; } else if (this._messagePanel) { panel = this._messagePanel; } if (panel) { panel.handleScrollKey(ev); } }, /** * get any current call for this room */ _getCallForRoom: function() { if (!this.state.room) { return null; } return CallHandler.getCallForRoom(this.state.room.roomId); }, // this has to be a proper method rather than an unnamed function, // otherwise react calls it with null on each update. _gatherTimelinePanelRef: function(r) { this._messagePanel = r; if (r) { console.log("updateTint from RoomView._gatherTimelinePanelRef"); this.updateTint(); } }, _getOldRoom: function() { const createEvent = this.state.room.currentState.getStateEvents("m.room.create", ""); if (!createEvent || !createEvent.getContent()['predecessor']) return null; return this.context.getRoom(createEvent.getContent()['predecessor']['room_id']); }, _getHiddenHighlightCount: function() { const oldRoom = this._getOldRoom(); if (!oldRoom) return 0; return oldRoom.getUnreadNotificationCount('highlight'); }, _onHiddenHighlightsClick: function() { const oldRoom = this._getOldRoom(); if (!oldRoom) return; dis.dispatch({action: "view_room", room_id: oldRoom.roomId}); }, render: function() { const RoomHeader = sdk.getComponent('rooms.RoomHeader'); const ForwardMessage = sdk.getComponent("rooms.ForwardMessage"); const AuxPanel = sdk.getComponent("rooms.AuxPanel"); const SearchBar = sdk.getComponent("rooms.SearchBar"); const PinnedEventsPanel = sdk.getComponent("rooms.PinnedEventsPanel"); const ScrollPanel = sdk.getComponent("structures.ScrollPanel"); const TintableSvg = sdk.getComponent("elements.TintableSvg"); const RoomPreviewBar = sdk.getComponent("rooms.RoomPreviewBar"); const TimelinePanel = sdk.getComponent("structures.TimelinePanel"); const RoomUpgradeWarningBar = sdk.getComponent("rooms.RoomUpgradeWarningBar"); const RoomRecoveryReminder = sdk.getComponent("rooms.RoomRecoveryReminder"); const ErrorBoundary = sdk.getComponent("elements.ErrorBoundary"); if (!this.state.room) { const loading = !this.state.matrixClientIsReady || this.state.roomLoading || this.state.peekLoading; if (loading) { // Assume preview loading if we don't have a ready client or a room ID (still resolving the alias) const previewLoading = !this.state.matrixClientIsReady || !this.state.roomId || this.state.peekLoading; return (
    ); } else { var inviterName = undefined; if (this.props.oobData) { inviterName = this.props.oobData.inviterName; } var invitedEmail = undefined; if (this.props.thirdPartyInvite) { invitedEmail = this.props.thirdPartyInvite.invitedEmail; } // We have no room object for this room, only the ID. // We've got to this room by following a link, possibly a third party invite. const roomAlias = this.state.roomAlias; return (
    ); } } const myMembership = this.state.room.getMyMembership(); if (myMembership == 'invite') { if (this.state.joining || this.state.rejecting) { return ( ); } else { const myUserId = this.context.credentials.userId; const myMember = this.state.room.getMember(myUserId); const inviteEvent = myMember ? myMember.events.member : null; let inviterName = _t("Unknown"); if (inviteEvent) { inviterName = inviteEvent.sender ? inviteEvent.sender.name : inviteEvent.getSender(); } // We deliberately don't try to peek into invites, even if we have permission to peek // as they could be a spam vector. // XXX: in future we could give the option of a 'Preview' button which lets them view anyway. // We have a regular invite for this room. return (
    ); } } // We have successfully loaded this room, and are not previewing. // Display the "normal" room view. const call = this._getCallForRoom(); let inCall = false; if (call && (this.state.callState !== 'ended' && this.state.callState !== 'ringing')) { inCall = true; } const scrollheader_classes = classNames({ mx_RoomView_scrollheader: true, }); let statusBar; let isStatusAreaExpanded = true; if (ContentMessages.sharedInstance().getCurrentUploads().length > 0) { const UploadBar = sdk.getComponent('structures.UploadBar'); statusBar = ; } else if (!this.state.searchResults) { const RoomStatusBar = sdk.getComponent('structures.RoomStatusBar'); isStatusAreaExpanded = this.state.statusBarVisible; statusBar = ; } const roomVersionRecommendation = this.state.upgradeRecommendation; const showRoomUpgradeBar = ( roomVersionRecommendation && roomVersionRecommendation.needsUpgrade && this.state.room.userMayUpgradeRoom(this.context.credentials.userId) ); const showRoomRecoveryReminder = ( this.context.isCryptoEnabled() && SettingsStore.getValue("showRoomRecoveryReminder") && this.context.isRoomEncrypted(this.state.room.roomId) && this.context.getKeyBackupEnabled() === false ); const hiddenHighlightCount = this._getHiddenHighlightCount(); let aux = null; let previewBar; let hideCancel = false; let forceHideRightPanel = false; if (this.state.forwardingEvent !== null) { aux = ; } else if (this.state.searching) { hideCancel = true; // has own cancel aux = ; } else if (showRoomUpgradeBar) { aux = ; hideCancel = true; } else if (showRoomRecoveryReminder) { aux = ; hideCancel = true; } else if (this.state.showingPinned) { hideCancel = true; // has own cancel aux = ; } else if (myMembership !== "join") { // We do have a room object for this room, but we're not currently in it. // We may have a 3rd party invite to it. var inviterName = undefined; if (this.props.oobData) { inviterName = this.props.oobData.inviterName; } var invitedEmail = undefined; if (this.props.thirdPartyInvite) { invitedEmail = this.props.thirdPartyInvite.invitedEmail; } hideCancel = true; previewBar = ( ); if (!this.state.canPeek) { return (
    { previewBar }
    ); } else { forceHideRightPanel = true; } } else if (hiddenHighlightCount > 0) { aux = ( {_t( "You have %(count)s unread notifications in a prior version of this room.", {count: hiddenHighlightCount}, )} ); } const auxPanel = ( { aux } ); let messageComposer; let searchInfo; const canSpeak = ( // joined and not showing search results myMembership === 'join' && !this.state.searchResults ); if (canSpeak) { const MessageComposer = sdk.getComponent('rooms.MessageComposer'); messageComposer = ; } // TODO: Why aren't we storing the term/scope/count in this format // in this.state if this is what RoomHeader desires? if (this.state.searchResults) { searchInfo = { searchTerm: this.state.searchTerm, searchScope: this.state.searchScope, searchCount: this.state.searchResults.count, }; } if (inCall) { let zoomButton; let videoMuteButton; if (call.type === "video") { zoomButton = (
    ); videoMuteButton =
    ; } const voiceMuteButton =
    ; // wrap the existing status bar into a 'callStatusBar' which adds more knobs. statusBar =
    { voiceMuteButton } { videoMuteButton } { zoomButton } { statusBar }
    ; } // if we have search results, we keep the messagepanel (so that it preserves its // scroll state), but hide it. let searchResultsPanel; let hideMessagePanel = false; if (this.state.searchResults) { // show searching spinner if (this.state.searchResults.results === undefined) { searchResultsPanel = (
    ); } else { searchResultsPanel = (
  • { this.getSearchResultTiles() }
    ); } hideMessagePanel = true; } const shouldHighlight = this.state.isInitialEventHighlighted; let highlightedEventId = null; if (this.state.forwardingEvent) { highlightedEventId = this.state.forwardingEvent.getId(); } else if (shouldHighlight) { highlightedEventId = this.state.initialEventId; } const messagePanelClassNames = classNames( "mx_RoomView_messagePanel", { "mx_IRCLayout": this.state.useIRCLayout, "mx_GroupLayout": !this.state.useIRCLayout, }); // console.info("ShowUrlPreview for %s is %s", this.state.room.roomId, this.state.showUrlPreview); const messagePanel = (