2015-07-13 03:51:24 +03:00
|
|
|
/*
|
2016-01-07 07:17:56 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-13 03:51:24 +03:00
|
|
|
|
|
|
|
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');
|
2016-08-28 16:04:25 +03:00
|
|
|
var sdk = require('matrix-react-sdk');
|
|
|
|
var Matrix = require("matrix-js-sdk");
|
2015-10-11 18:09:46 +03:00
|
|
|
var dis = require('matrix-react-sdk/lib/dispatcher');
|
2015-10-24 22:47:48 +03:00
|
|
|
var MatrixClientPeg = require("matrix-react-sdk/lib/MatrixClientPeg");
|
2016-02-04 21:09:24 +03:00
|
|
|
var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc');
|
2016-09-17 04:05:01 +03:00
|
|
|
var Modal = require('matrix-react-sdk/lib/Modal');
|
2017-01-06 02:37:12 +03:00
|
|
|
var AccessibleButton = require('matrix-react-sdk/lib/components/views/elements/AccessibleButton');
|
2015-07-13 03:51:24 +03:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'RightPanel',
|
|
|
|
|
2016-09-07 17:43:29 +03:00
|
|
|
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
|
2016-09-13 14:18:09 +03:00
|
|
|
collapsed: React.PropTypes.bool, // currently unused property to request for a minimized view of the panel
|
2016-09-07 17:43:29 +03:00
|
|
|
},
|
|
|
|
|
2015-07-21 06:11:24 +03:00
|
|
|
Phase : {
|
|
|
|
MemberList: 'MemberList',
|
2016-08-31 13:57:45 +03:00
|
|
|
FilePanel: 'FilePanel',
|
2016-08-23 16:27:58 +03:00
|
|
|
NotificationPanel: 'NotificationPanel',
|
2015-10-25 22:09:38 +03:00
|
|
|
MemberInfo: 'MemberInfo',
|
2015-07-21 06:11:24 +03:00
|
|
|
},
|
|
|
|
|
2015-10-25 04:16:41 +03:00
|
|
|
componentWillMount: function() {
|
2015-10-25 22:09:38 +03:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2015-10-25 04:16:41 +03:00
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
cli.on("RoomState.members", this.onRoomStateMember);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
2016-03-15 21:38:24 +03:00
|
|
|
dis.unregister(this.dispatcherRef);
|
2015-10-25 04:16:41 +03:00
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener("RoomState.members", this.onRoomStateMember);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-07-21 06:11:24 +03:00
|
|
|
getInitialState: function() {
|
2016-08-28 16:04:25 +03:00
|
|
|
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
|
|
|
|
}
|
2015-07-21 06:11:24 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onMemberListButtonClick: function() {
|
2017-02-02 21:42:03 +03:00
|
|
|
this.setState({ phase: this.Phase.MemberList });
|
2015-07-21 06:11:24 +03:00
|
|
|
},
|
|
|
|
|
2016-09-06 03:45:12 +03:00
|
|
|
onFileListButtonClick: function() {
|
2017-02-02 21:42:03 +03:00
|
|
|
this.setState({ phase: this.Phase.FilePanel });
|
2016-09-06 03:45:12 +03:00
|
|
|
},
|
|
|
|
|
2016-09-08 05:02:50 +03:00
|
|
|
onNotificationListButtonClick: function() {
|
2017-02-02 21:42:03 +03:00
|
|
|
this.setState({ phase: this.Phase.NotificationPanel });
|
|
|
|
},
|
|
|
|
|
|
|
|
onCollapseClick: function() {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'hide_right_panel',
|
|
|
|
});
|
2016-09-08 05:02:50 +03:00
|
|
|
},
|
|
|
|
|
2016-09-13 16:27:23 +03:00
|
|
|
onInviteButtonClick: function() {
|
2016-09-17 04:05:01 +03:00
|
|
|
if (MatrixClientPeg.get().isGuest()) {
|
|
|
|
var NeedToRegisterDialog = sdk.getComponent("dialogs.NeedToRegisterDialog");
|
|
|
|
Modal.createDialog(NeedToRegisterDialog, {
|
|
|
|
title: "Please Register",
|
|
|
|
description: "Guest users can't invite users. Please register to invite."
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-13 16:27:23 +03:00
|
|
|
// call ChatInviteDialog
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_invite',
|
|
|
|
roomId: this.props.roomId,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-10-25 04:16:41 +03:00
|
|
|
onRoomStateMember: function(ev, state, member) {
|
|
|
|
// redraw the badge on the membership list
|
|
|
|
if (this.state.phase == this.Phase.MemberList && member.roomId === this.props.roomId) {
|
2016-02-04 21:09:24 +03:00
|
|
|
this._delayedUpdate();
|
2015-10-25 04:16:41 +03:00
|
|
|
}
|
2015-12-04 19:16:41 +03:00
|
|
|
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)
|
2016-02-04 21:09:24 +03:00
|
|
|
this._delayedUpdate();
|
2015-12-04 19:16:41 +03:00
|
|
|
}
|
2015-10-25 04:16:41 +03:00
|
|
|
},
|
|
|
|
|
2016-02-04 21:09:24 +03:00
|
|
|
_delayedUpdate: new rate_limited_func(function() {
|
2016-02-05 13:57:49 +03:00
|
|
|
this.forceUpdate();
|
2016-02-04 21:09:24 +03:00
|
|
|
}, 500),
|
|
|
|
|
2015-10-25 22:09:38 +03:00
|
|
|
onAction: function(payload) {
|
|
|
|
if (payload.action === "view_user") {
|
2016-03-18 19:09:00 +03:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'show_right_panel',
|
|
|
|
});
|
2015-10-25 22:09:38 +03:00
|
|
|
if (payload.member) {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberInfo,
|
|
|
|
member: payload.member,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberList
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2016-08-28 16:04:25 +03:00
|
|
|
else if (payload.action === "view_room") {
|
2015-10-28 02:28:34 +03:00
|
|
|
if (this.state.phase === this.Phase.MemberInfo) {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberList
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2015-10-25 22:09:38 +03:00
|
|
|
},
|
|
|
|
|
2015-07-13 03:51:24 +03:00
|
|
|
render: function() {
|
2015-11-30 18:14:04 +03:00
|
|
|
var MemberList = sdk.getComponent('rooms.MemberList');
|
2016-08-23 16:27:58 +03:00
|
|
|
var NotificationPanel = sdk.getComponent('structures.NotificationPanel');
|
2016-09-06 03:45:12 +03:00
|
|
|
var FilePanel = sdk.getComponent('structures.FilePanel');
|
2016-01-06 05:11:34 +03:00
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2015-07-21 06:11:24 +03:00
|
|
|
var buttonGroup;
|
2016-09-14 19:13:06 +03:00
|
|
|
var inviteGroup;
|
2015-07-21 06:11:24 +03:00
|
|
|
var panel;
|
2015-10-11 18:09:46 +03:00
|
|
|
|
2015-10-24 22:19:54 +03:00
|
|
|
var filesHighlight;
|
|
|
|
var membersHighlight;
|
2016-08-23 16:27:58 +03:00
|
|
|
var notificationsHighlight;
|
2015-10-24 22:19:54 +03:00
|
|
|
if (!this.props.collapsed) {
|
2015-10-25 22:09:38 +03:00
|
|
|
if (this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) {
|
2015-10-24 22:19:54 +03:00
|
|
|
membersHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
|
|
}
|
2016-08-31 13:57:45 +03:00
|
|
|
else if (this.state.phase == this.Phase.FilePanel) {
|
2015-10-24 22:19:54 +03:00
|
|
|
filesHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
|
|
}
|
2016-08-23 16:27:58 +03:00
|
|
|
else if (this.state.phase == this.Phase.NotificationPanel) {
|
|
|
|
notificationsHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
|
|
}
|
2015-10-24 22:19:54 +03:00
|
|
|
}
|
|
|
|
|
2015-10-24 22:47:48 +03:00
|
|
|
var membersBadge;
|
2015-10-25 22:09:38 +03:00
|
|
|
if ((this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) && this.props.roomId) {
|
2015-10-24 22:47:48 +03:00
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
var room = cli.getRoom(this.props.roomId);
|
2016-09-17 05:02:14 +03:00
|
|
|
var user_is_in_room;
|
2015-10-24 22:57:05 +03:00
|
|
|
if (room) {
|
2016-09-06 03:45:12 +03:00
|
|
|
membersBadge = room.getJoinedMembers().length;
|
2016-09-17 05:02:14 +03:00
|
|
|
user_is_in_room = room.hasMembershipState(
|
|
|
|
MatrixClientPeg.get().credentials.userId, 'join'
|
|
|
|
);
|
2015-10-24 22:57:05 +03:00
|
|
|
}
|
2016-09-17 05:02:14 +03:00
|
|
|
|
|
|
|
if (user_is_in_room) {
|
|
|
|
inviteGroup =
|
2017-01-06 02:37:12 +03:00
|
|
|
<AccessibleButton className="mx_RightPanel_invite" onClick={ this.onInviteButtonClick } >
|
2016-09-17 05:02:14 +03:00
|
|
|
<div className="mx_RightPanel_icon" >
|
|
|
|
<TintableSvg src="img/icon-invite-people.svg" width="35" height="35" />
|
|
|
|
</div>
|
|
|
|
<div className="mx_RightPanel_message">Invite to this room</div>
|
2017-01-06 02:37:12 +03:00
|
|
|
</AccessibleButton>;
|
2016-09-17 05:02:14 +03:00
|
|
|
}
|
|
|
|
|
2015-10-24 22:47:48 +03:00
|
|
|
}
|
|
|
|
|
2015-07-21 06:11:24 +03:00
|
|
|
if (this.props.roomId) {
|
|
|
|
buttonGroup =
|
2015-07-15 06:16:38 +03:00
|
|
|
<div className="mx_RightPanel_headerButtonGroup">
|
2017-01-06 02:37:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton">
|
|
|
|
<AccessibleButton title="Members" onClick={ this.onMemberListButtonClick }>
|
2016-09-06 03:45:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton_badge">{ membersBadge ? membersBadge : <span> </span>}</div>
|
2016-07-13 15:56:59 +03:00
|
|
|
<TintableSvg src="img/icons-people.svg" width="25" height="25"/>
|
2015-10-24 22:19:54 +03:00
|
|
|
{ membersHighlight }
|
2017-01-06 02:37:12 +03:00
|
|
|
</AccessibleButton>
|
2015-07-15 06:16:38 +03:00
|
|
|
</div>
|
2017-01-06 02:37:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton mx_RightPanel_filebutton">
|
|
|
|
<AccessibleButton title="Files" onClick={ this.onFileListButtonClick }>
|
2016-09-06 03:45:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton_badge"> </div>
|
|
|
|
<TintableSvg src="img/icons-files.svg" width="25" height="25"/>
|
2015-10-24 22:47:48 +03:00
|
|
|
{ filesHighlight }
|
2017-01-06 02:37:12 +03:00
|
|
|
</AccessibleButton>
|
2015-10-24 22:47:48 +03:00
|
|
|
</div>
|
2017-01-06 02:37:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton mx_RightPanel_notificationbutton">
|
|
|
|
<AccessibleButton title="Notifications" onClick={ this.onNotificationListButtonClick }>
|
2016-09-06 03:45:12 +03:00
|
|
|
<div className="mx_RightPanel_headerButton_badge"> </div>
|
2016-08-23 16:27:58 +03:00
|
|
|
<TintableSvg src="img/icons-notifications.svg" width="25" height="25"/>
|
|
|
|
{ notificationsHighlight }
|
2017-01-06 02:37:12 +03:00
|
|
|
</AccessibleButton>
|
2016-08-23 16:27:58 +03:00
|
|
|
</div>
|
2017-02-02 21:42:03 +03:00
|
|
|
<div className="mx_RightPanel_headerButton mx_RightPanel_collapsebutton" title="Hide panel" onClick={ this.onCollapseClick }>
|
|
|
|
<TintableSvg src="img/minimise.svg" width="10" height="16"/>
|
|
|
|
</div>
|
2015-07-21 06:11:24 +03:00
|
|
|
</div>;
|
2016-08-28 16:04:25 +03:00
|
|
|
}
|
2015-07-21 06:11:24 +03:00
|
|
|
|
2016-08-28 16:04:25 +03:00
|
|
|
if (!this.props.collapsed) {
|
|
|
|
if(this.props.roomId && this.state.phase == this.Phase.MemberList) {
|
|
|
|
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />
|
|
|
|
}
|
|
|
|
else if(this.state.phase == this.Phase.MemberInfo) {
|
|
|
|
var MemberInfo = sdk.getComponent('rooms.MemberInfo');
|
|
|
|
panel = <MemberInfo member={this.state.member} key={this.props.roomId || this.props.userId} />
|
2015-07-21 06:11:24 +03:00
|
|
|
}
|
2016-08-28 20:49:49 +03:00
|
|
|
else if (this.state.phase == this.Phase.NotificationPanel) {
|
|
|
|
panel = <NotificationPanel />
|
2015-07-21 06:11:24 +03:00
|
|
|
}
|
2016-08-31 13:57:45 +03:00
|
|
|
else if (this.state.phase == this.Phase.FilePanel) {
|
2016-09-06 03:45:12 +03:00
|
|
|
panel = <FilePanel roomId={this.props.roomId} />
|
2016-08-31 13:57:45 +03:00
|
|
|
}
|
2016-04-15 20:23:47 +03:00
|
|
|
}
|
2015-10-25 22:09:38 +03:00
|
|
|
|
2016-04-15 20:23:47 +03:00
|
|
|
if (!panel) {
|
|
|
|
panel = <div className="mx_RightPanel_blank"></div>;
|
2015-07-21 06:11:24 +03:00
|
|
|
}
|
|
|
|
|
2016-04-12 19:17:08 +03:00
|
|
|
var classes = "mx_RightPanel mx_fadable";
|
2015-10-11 18:09:46 +03:00
|
|
|
if (this.props.collapsed) {
|
2015-10-11 04:25:26 +03:00
|
|
|
classes += " collapsed";
|
|
|
|
}
|
|
|
|
|
2015-07-21 06:11:24 +03:00
|
|
|
return (
|
2016-04-12 19:17:08 +03:00
|
|
|
<aside className={classes} style={{ opacity: this.props.opacity }}>
|
2015-07-21 06:11:24 +03:00
|
|
|
<div className="mx_RightPanel_header">
|
|
|
|
{ buttonGroup }
|
2015-07-13 03:51:24 +03:00
|
|
|
</div>
|
2015-07-21 06:11:24 +03:00
|
|
|
{ panel }
|
2016-04-15 17:53:27 +03:00
|
|
|
<div className="mx_RightPanel_footer">
|
2016-09-14 19:13:06 +03:00
|
|
|
{ inviteGroup }
|
2016-04-15 17:53:27 +03:00
|
|
|
</div>
|
2015-08-10 17:17:15 +03:00
|
|
|
</aside>
|
2015-07-13 03:51:24 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|