2015-07-12 20:51:24 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-12 20:51:24 -04: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');
|
2015-09-22 13:49:04 -04:00
|
|
|
var sdk = require('matrix-react-sdk')
|
2015-10-11 11:09:46 -04:00
|
|
|
var dis = require('matrix-react-sdk/lib/dispatcher');
|
2015-10-24 15:47:48 -04:00
|
|
|
var MatrixClientPeg = require("matrix-react-sdk/lib/MatrixClientPeg");
|
2016-02-04 13:09:24 -05:00
|
|
|
var rate_limited_func = require('matrix-react-sdk/lib/ratelimitedfunc');
|
2015-07-12 20:51:24 -04:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
|
|
|
displayName: 'RightPanel',
|
|
|
|
|
2015-07-20 23:11:24 -04:00
|
|
|
Phase : {
|
|
|
|
MemberList: 'MemberList',
|
|
|
|
FileList: 'FileList',
|
2015-10-25 15:09:38 -04:00
|
|
|
MemberInfo: 'MemberInfo',
|
2015-07-20 23:11:24 -04:00
|
|
|
},
|
|
|
|
|
2015-10-24 21:16:41 -04:00
|
|
|
componentWillMount: function() {
|
2015-10-25 15:09:38 -04:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
2015-10-24 21:16:41 -04:00
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
cli.on("RoomState.members", this.onRoomStateMember);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
2016-03-15 14:38:24 -04:00
|
|
|
dis.unregister(this.dispatcherRef);
|
2015-10-24 21:16:41 -04:00
|
|
|
if (MatrixClientPeg.get()) {
|
|
|
|
MatrixClientPeg.get().removeListener("RoomState.members", this.onRoomStateMember);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-07-20 23:11:24 -04:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2015-07-21 14:03:01 -04:00
|
|
|
phase : this.Phase.MemberList
|
2015-07-20 23:11:24 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onMemberListButtonClick: function() {
|
2015-10-11 11:09:46 -04:00
|
|
|
if (this.props.collapsed) {
|
|
|
|
this.setState({ phase: this.Phase.MemberList });
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'show_right_panel',
|
|
|
|
});
|
2015-07-20 23:11:24 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-10-11 11:09:46 -04:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'hide_right_panel',
|
|
|
|
});
|
2015-07-20 23:11:24 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-24 21:16:41 -04: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 13:09:24 -05:00
|
|
|
this._delayedUpdate();
|
2015-10-24 21:16:41 -04:00
|
|
|
}
|
2015-12-04 11:16:41 -05: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 13:09:24 -05:00
|
|
|
this._delayedUpdate();
|
2015-12-04 11:16:41 -05:00
|
|
|
}
|
2015-10-24 21:16:41 -04:00
|
|
|
},
|
|
|
|
|
2016-02-04 13:09:24 -05:00
|
|
|
_delayedUpdate: new rate_limited_func(function() {
|
2016-02-05 05:57:49 -05:00
|
|
|
this.forceUpdate();
|
2016-02-04 13:09:24 -05:00
|
|
|
}, 500),
|
|
|
|
|
2015-10-25 15:09:38 -04:00
|
|
|
onAction: function(payload) {
|
|
|
|
if (payload.action === "view_user") {
|
2016-03-18 12:09:00 -04:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'show_right_panel',
|
|
|
|
});
|
2015-10-25 15:09:38 -04:00
|
|
|
if (payload.member) {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberInfo,
|
|
|
|
member: payload.member,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberList
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2015-10-27 19:28:34 -04:00
|
|
|
if (payload.action === "view_room") {
|
|
|
|
if (this.state.phase === this.Phase.MemberInfo) {
|
|
|
|
this.setState({
|
|
|
|
phase: this.Phase.MemberList
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2015-10-25 15:09:38 -04:00
|
|
|
},
|
|
|
|
|
2015-07-12 20:51:24 -04:00
|
|
|
render: function() {
|
2015-11-30 10:14:04 -05:00
|
|
|
var MemberList = sdk.getComponent('rooms.MemberList');
|
2016-01-05 21:11:34 -05:00
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2015-07-20 23:11:24 -04:00
|
|
|
var buttonGroup;
|
|
|
|
var panel;
|
2015-10-11 11:09:46 -04:00
|
|
|
|
2015-10-24 15:19:54 -04:00
|
|
|
var filesHighlight;
|
|
|
|
var membersHighlight;
|
|
|
|
if (!this.props.collapsed) {
|
2015-10-25 15:09:38 -04:00
|
|
|
if (this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) {
|
2015-10-24 15:19:54 -04:00
|
|
|
membersHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
|
|
}
|
|
|
|
else if (this.state.phase == this.Phase.FileList) {
|
|
|
|
filesHighlight = <div className="mx_RightPanel_headerButton_highlight"></div>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-24 15:47:48 -04:00
|
|
|
var membersBadge;
|
2015-10-25 15:09:38 -04:00
|
|
|
if ((this.state.phase == this.Phase.MemberList || this.state.phase === this.Phase.MemberInfo) && this.props.roomId) {
|
2015-10-24 15:47:48 -04:00
|
|
|
var cli = MatrixClientPeg.get();
|
|
|
|
var room = cli.getRoom(this.props.roomId);
|
2015-10-24 15:57:05 -04:00
|
|
|
if (room) {
|
|
|
|
membersBadge = <div className="mx_RightPanel_headerButton_badge">{ room.getJoinedMembers().length }</div>;
|
|
|
|
}
|
2015-10-24 15:47:48 -04:00
|
|
|
}
|
|
|
|
|
2015-07-20 23:11:24 -04:00
|
|
|
if (this.props.roomId) {
|
|
|
|
buttonGroup =
|
2015-07-14 23:16:38 -04:00
|
|
|
<div className="mx_RightPanel_headerButtonGroup">
|
2016-01-03 17:35:07 -05:00
|
|
|
<div className="mx_RightPanel_headerButton" title="Members" onClick={ this.onMemberListButtonClick }>
|
2015-10-24 15:47:48 -04:00
|
|
|
{ membersBadge }
|
2016-07-13 08:56:59 -04:00
|
|
|
<TintableSvg src="img/icons-people.svg" width="25" height="25"/>
|
2015-10-24 15:19:54 -04:00
|
|
|
{ membersHighlight }
|
2015-07-14 23:16:38 -04:00
|
|
|
</div>
|
2016-01-03 17:35:07 -05:00
|
|
|
<div className="mx_RightPanel_headerButton mx_RightPanel_filebutton" title="Files">
|
2016-01-05 21:11:34 -05:00
|
|
|
<TintableSvg src="img/files.svg" width="17" height="22"/>
|
2015-10-24 15:47:48 -04:00
|
|
|
{ filesHighlight }
|
|
|
|
</div>
|
2015-07-20 23:11:24 -04:00
|
|
|
</div>;
|
|
|
|
|
2015-10-25 15:09:38 -04:00
|
|
|
if (!this.props.collapsed) {
|
|
|
|
if(this.state.phase == this.Phase.MemberList) {
|
|
|
|
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />
|
|
|
|
}
|
|
|
|
else if(this.state.phase == this.Phase.MemberInfo) {
|
2015-11-26 12:49:55 -05:00
|
|
|
var MemberInfo = sdk.getComponent('rooms.MemberInfo');
|
2015-10-25 15:09:38 -04:00
|
|
|
panel = <MemberInfo roomId={this.props.roomId} member={this.state.member} key={this.props.roomId} />
|
|
|
|
}
|
2015-07-20 23:11:24 -04:00
|
|
|
}
|
2016-04-15 13:23:47 -04:00
|
|
|
}
|
2015-10-25 15:09:38 -04:00
|
|
|
|
2016-04-15 13:23:47 -04:00
|
|
|
if (!panel) {
|
|
|
|
panel = <div className="mx_RightPanel_blank"></div>;
|
2015-07-20 23:11:24 -04:00
|
|
|
}
|
|
|
|
|
2016-04-12 12:17:08 -04:00
|
|
|
var classes = "mx_RightPanel mx_fadable";
|
2015-10-11 11:09:46 -04:00
|
|
|
if (this.props.collapsed) {
|
2015-10-10 21:25:26 -04:00
|
|
|
classes += " collapsed";
|
|
|
|
}
|
|
|
|
|
2015-07-20 23:11:24 -04:00
|
|
|
return (
|
2016-04-12 12:17:08 -04:00
|
|
|
<aside className={classes} style={{ opacity: this.props.opacity }}>
|
2015-07-20 23:11:24 -04:00
|
|
|
<div className="mx_RightPanel_header">
|
|
|
|
{ buttonGroup }
|
2015-07-12 20:51:24 -04:00
|
|
|
</div>
|
2015-07-20 23:11:24 -04:00
|
|
|
{ panel }
|
2016-04-15 10:53:27 -04:00
|
|
|
<div className="mx_RightPanel_footer">
|
|
|
|
</div>
|
2015-08-10 10:17:15 -04:00
|
|
|
</aside>
|
2015-07-12 20:51:24 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|