/* 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. */ 'use strict'; var React = require('react'); var sdk = require('matrix-react-sdk'); var Matrix = require("matrix-js-sdk"); var dis = require('matrix-react-sdk/lib/dispatcher'); var MatrixClientPeg = require("matrix-react-sdk/lib/MatrixClientPeg"); var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc'); module.exports = React.createClass({ displayName: 'RightPanel', propTypes: { userId: React.PropTypes.string, // if showing an orphaned MemberInfo page, this is set roomId: React.PropTypes.string, // if showing panels for a given room, this is set collapsed: React.PropTypes.bool, // currently unused property to request for a minimized view of the panel }, Phase : { MemberList: 'MemberList', FilePanel: 'FilePanel', NotificationPanel: 'NotificationPanel', MemberInfo: 'MemberInfo', }, componentWillMount: function() { this.dispatcherRef = dis.register(this.onAction); var cli = MatrixClientPeg.get(); cli.on("RoomState.members", this.onRoomStateMember); }, componentWillUnmount: function() { dis.unregister(this.dispatcherRef); if (MatrixClientPeg.get()) { MatrixClientPeg.get().removeListener("RoomState.members", this.onRoomStateMember); } }, getInitialState: function() { if (this.props.userId) { var member = new Matrix.RoomMember(null, this.props.userId); return { phase: this.Phase.MemberInfo, member: member, } } else { return { phase: this.Phase.MemberList } } }, onMemberListButtonClick: function() { if (this.props.collapsed || this.state.phase !== this.Phase.MemberList) { this.setState({ phase: this.Phase.MemberList }); dis.dispatch({ action: 'show_right_panel', }); } else { dis.dispatch({ action: 'hide_right_panel', }); } }, onFileListButtonClick: function() { if (this.props.collapsed || this.state.phase !== this.Phase.FilePanel) { this.setState({ phase: this.Phase.FilePanel }); dis.dispatch({ action: 'show_right_panel', }); } else { dis.dispatch({ action: 'hide_right_panel', }); } }, onNotificationListButtonClick: function() { if (this.props.collapsed || this.state.phase !== this.Phase.NotificationPanel) { this.setState({ phase: this.Phase.NotificationPanel }); dis.dispatch({ action: 'show_right_panel', }); } else { dis.dispatch({ action: 'hide_right_panel', }); } }, onInviteButtonClick: function() { // call ChatInviteDialog dis.dispatch({ action: 'view_invite', roomId: this.props.roomId, }); }, onRoomStateMember: function(ev, state, member) { // redraw the badge on the membership list if (this.state.phase == this.Phase.MemberList && member.roomId === this.props.roomId) { this._delayedUpdate(); } else if (this.state.phase === this.Phase.MemberInfo && member.roomId === this.props.roomId && member.userId === this.state.member.userId) { // refresh the member info (e.g. new power level) this._delayedUpdate(); } }, _delayedUpdate: new rate_limited_func(function() { this.forceUpdate(); }, 500), onAction: function(payload) { if (payload.action === "view_user") { dis.dispatch({ action: 'show_right_panel', }); if (payload.member) { this.setState({ phase: this.Phase.MemberInfo, member: payload.member, }); } else { this.setState({ phase: this.Phase.MemberList }); } } else if (payload.action === "view_room") { if (this.state.phase === this.Phase.MemberInfo) { this.setState({ phase: this.Phase.MemberList }); } } }, render: function() { var MemberList = sdk.getComponent('rooms.MemberList'); var NotificationPanel = sdk.getComponent('structures.NotificationPanel'); var FilePanel = sdk.getComponent('structures.FilePanel'); var TintableSvg = sdk.getComponent("elements.TintableSvg"); var buttonGroup; var inviteGroup; var panel; var filesHighlight; var membersHighlight; var notificationsHighlight; if (!this.props.collapsed) { if (this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) { membersHighlight =
; } else if (this.state.phase == this.Phase.FilePanel) { filesHighlight =
; } else if (this.state.phase == this.Phase.NotificationPanel) { notificationsHighlight =
; } } var membersBadge; if ((this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) && this.props.roomId) { var cli = MatrixClientPeg.get(); var room = cli.getRoom(this.props.roomId); if (room) { membersBadge = room.getJoinedMembers().length; } } if (this.props.roomId) { buttonGroup =
{ membersBadge ? membersBadge :  }
{ membersHighlight }
 
{ filesHighlight }
 
{ notificationsHighlight }
; inviteGroup =
Invite to this room
; } if (!this.props.collapsed) { if(this.props.roomId && this.state.phase == this.Phase.MemberList) { panel = } else if(this.state.phase == this.Phase.MemberInfo) { var MemberInfo = sdk.getComponent('rooms.MemberInfo'); panel = } else if (this.state.phase == this.Phase.NotificationPanel) { panel = } else if (this.state.phase == this.Phase.FilePanel) { panel = } } if (!panel) { panel =
; } var classes = "mx_RightPanel mx_fadable"; if (this.props.collapsed) { classes += " collapsed"; } return ( ); } });