/* Copyright 2015, 2016 OpenMarket Ltd 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. */ var React = require('react'); var sdk = require('../../index'); var dis = require("../../dispatcher"); var WhoIsTyping = require("../../WhoIsTyping"); var MatrixClientPeg = require("../../MatrixClientPeg"); const MemberAvatar = require("../views/avatars/MemberAvatar"); const HIDE_DEBOUNCE_MS = 10000; const STATUS_BAR_HIDDEN = 0; const STATUS_BAR_EXPANDED = 1; const STATUS_BAR_EXPANDED_LARGE = 2; module.exports = React.createClass({ displayName: 'RoomStatusBar', propTypes: { // the room this statusbar is representing. room: React.PropTypes.object.isRequired, // a TabComplete object tabComplete: React.PropTypes.object.isRequired, // the number of messages which have arrived since we've been scrolled up numUnreadMessages: React.PropTypes.number, // string to display when there are messages in the room which had errors on send unsentMessageError: React.PropTypes.string, // this is true if we are fully scrolled-down, and are looking at // the end of the live timeline. atEndOfLiveTimeline: React.PropTypes.bool, // true if there is an active call in this room (means we show // the 'Active Call' text in the status bar if there is nothing // more interesting) hasActiveCall: React.PropTypes.bool, // Number of names to display in typing indication. E.g. set to 3, will // result in "X, Y, Z and 100 others are typing." whoIsTypingLimit: React.PropTypes.number, // callback for when the user clicks on the 'resend all' button in the // 'unsent messages' bar onResendAllClick: React.PropTypes.func, // callback for when the user clicks on the 'cancel all' button in the // 'unsent messages' bar onCancelAllClick: React.PropTypes.func, // callback for when the user clicks on the 'scroll to bottom' button onScrollToBottomClick: React.PropTypes.func, // callback for when we do something that changes the size of the // status bar. This is used to trigger a re-layout in the parent // component. onResize: React.PropTypes.func, // callback for when the status bar can be hidden from view, as it is // not displaying anything onHidden: React.PropTypes.func, // callback for when the status bar is displaying something and should // be visible onVisible: React.PropTypes.func, }, getDefaultProps: function() { return { whoIsTypingLimit: 2, }; }, getInitialState: function() { return { syncState: MatrixClientPeg.get().getSyncState(), whoisTypingString: WhoIsTyping.whoIsTypingString( this.props.room, this.props.whoIsTypingLimit ), }; }, componentWillMount: function() { MatrixClientPeg.get().on("sync", this.onSyncStateChange); MatrixClientPeg.get().on("RoomMember.typing", this.onRoomMemberTyping); }, componentDidUpdate: function(prevProps, prevState) { if(this.props.onResize && this._checkForResize(prevProps, prevState)) { this.props.onResize(); } const size = this._getSize(this.state, this.props); if (size > 0) { this.props.onVisible(); } else { if (this.hideDebouncer) { clearTimeout(this.hideDebouncer); } this.hideDebouncer = setTimeout(() => { // temporarily stop hiding the statusbar as per // https://github.com/vector-im/riot-web/issues/1991#issuecomment-276953915 // this.props.onHidden(); }, HIDE_DEBOUNCE_MS); } }, componentWillUnmount: function() { // we may have entirely lost our client as we're logging out before clicking login on the guest bar... var client = MatrixClientPeg.get(); if (client) { client.removeListener("sync", this.onSyncStateChange); client.removeListener("RoomMember.typing", this.onRoomMemberTyping); } }, onSyncStateChange: function(state, prevState) { if (state === "SYNCING" && prevState === "SYNCING") { return; } this.setState({ syncState: state }); }, onRoomMemberTyping: function(ev, member) { this.setState({ whoisTypingString: WhoIsTyping.whoIsTypingString( this.props.room, this.props.whoIsTypingLimit ), }); }, // We don't need the actual height - just whether it is likely to have // changed - so we use '0' to indicate normal size, and other values to // indicate other sizes. _getSize: function(state, props) { if (state.syncState === "ERROR" || state.whoisTypingString || props.numUnreadMessages || !props.atEndOfLiveTimeline || props.hasActiveCall) { return STATUS_BAR_EXPANDED; } else if (props.tabCompleteEntries) { return STATUS_BAR_HIDDEN; } else if (props.unsentMessageError) { return STATUS_BAR_EXPANDED_LARGE; } return STATUS_BAR_HIDDEN; }, // determine if we need to call onResize _checkForResize: function(prevProps, prevState) { // figure out the old height and the new height of the status bar. return this._getSize(prevProps, prevState) !== this._getSize(this.props, this.state); }, // return suitable content for the image on the left of the status bar. // // if wantPlaceholder is true, we include a "..." placeholder if // there is nothing better to put in. _getIndicator: function(wantPlaceholder) { if (this.props.numUnreadMessages) { return (