2018-04-12 01:58:04 +03:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Copyright 2017 New Vector Ltd
|
2018-10-30 19:15:19 +03:00
|
|
|
Copyright 2018 New Vector Ltd
|
2018-04-12 01:58:04 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classNames from 'classnames';
|
2018-04-13 02:43:44 +03:00
|
|
|
import sdk from '../../index';
|
|
|
|
import dis from '../../dispatcher';
|
2018-04-12 01:58:04 +03:00
|
|
|
import { MatrixClient } from 'matrix-js-sdk';
|
2018-04-13 02:43:44 +03:00
|
|
|
import RateLimitedFunc from '../../ratelimitedfunc';
|
|
|
|
import { showGroupInviteDialog, showGroupAddRoomDialog } from '../../GroupAddressPicker';
|
2018-05-01 13:18:45 +03:00
|
|
|
import GroupStore from '../../stores/GroupStore';
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
export default class RightPanel extends React.Component {
|
|
|
|
static get propTypes() {
|
|
|
|
return {
|
|
|
|
roomId: React.PropTypes.string, // if showing panels for a given room, this is set
|
|
|
|
groupId: React.PropTypes.string, // if showing panels for a given group, this is set
|
2019-02-20 14:45:55 +03:00
|
|
|
user: React.PropTypes.object,
|
2018-10-30 19:15:19 +03:00
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
static get contextTypes() {
|
|
|
|
return {
|
|
|
|
matrixClient: PropTypes.instanceOf(MatrixClient),
|
|
|
|
};
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
static Phase = Object.freeze({
|
2018-04-12 01:58:04 +03:00
|
|
|
RoomMemberList: 'RoomMemberList',
|
|
|
|
GroupMemberList: 'GroupMemberList',
|
|
|
|
GroupRoomList: 'GroupRoomList',
|
|
|
|
GroupRoomInfo: 'GroupRoomInfo',
|
|
|
|
FilePanel: 'FilePanel',
|
|
|
|
NotificationPanel: 'NotificationPanel',
|
|
|
|
RoomMemberInfo: 'RoomMemberInfo',
|
2019-03-29 05:38:15 +03:00
|
|
|
Room3pidMemberInfo: 'Room3pidMemberInfo',
|
2018-04-12 01:58:04 +03:00
|
|
|
GroupMemberInfo: 'GroupMemberInfo',
|
2018-10-30 19:15:19 +03:00
|
|
|
});
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = {
|
2019-02-20 14:45:55 +03:00
|
|
|
phase: this._getPhaseFromProps(),
|
2018-10-30 19:15:19 +03:00
|
|
|
isUserPrivilegedInGroup: null,
|
|
|
|
};
|
|
|
|
this.onAction = this.onAction.bind(this);
|
|
|
|
this.onRoomStateMember = this.onRoomStateMember.bind(this);
|
|
|
|
this.onGroupStoreUpdated = this.onGroupStoreUpdated.bind(this);
|
|
|
|
this.onInviteToGroupButtonClick = this.onInviteToGroupButtonClick.bind(this);
|
|
|
|
this.onAddRoomToGroupButtonClick = this.onAddRoomToGroupButtonClick.bind(this);
|
|
|
|
|
|
|
|
this._delayedUpdate = new RateLimitedFunc(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
}, 500);
|
|
|
|
}
|
|
|
|
|
2019-02-20 14:45:55 +03:00
|
|
|
_getPhaseFromProps() {
|
|
|
|
if (this.props.groupId) {
|
|
|
|
return RightPanel.Phase.GroupMemberList;
|
|
|
|
} else if (this.props.user) {
|
|
|
|
return RightPanel.Phase.RoomMemberInfo;
|
|
|
|
} else {
|
|
|
|
return RightPanel.Phase.RoomMemberList;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
componentWillMount() {
|
2018-04-12 01:58:04 +03:00
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
|
|
const cli = this.context.matrixClient;
|
|
|
|
cli.on("RoomState.members", this.onRoomStateMember);
|
|
|
|
this._initGroupStore(this.props.groupId);
|
2019-02-20 14:45:55 +03:00
|
|
|
if (this.props.user) {
|
|
|
|
this.setState({member: this.props.user});
|
|
|
|
}
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
componentWillUnmount() {
|
2018-04-12 01:58:04 +03:00
|
|
|
dis.unregister(this.dispatcherRef);
|
|
|
|
if (this.context.matrixClient) {
|
|
|
|
this.context.matrixClient.removeListener("RoomState.members", this.onRoomStateMember);
|
|
|
|
}
|
2018-05-01 13:18:45 +03:00
|
|
|
this._unregisterGroupStore(this.props.groupId);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
componentWillReceiveProps(newProps) {
|
|
|
|
if (newProps.groupId !== this.props.groupId) {
|
2018-05-01 13:18:45 +03:00
|
|
|
this._unregisterGroupStore(this.props.groupId);
|
2018-04-12 01:58:04 +03:00
|
|
|
this._initGroupStore(newProps.groupId);
|
|
|
|
}
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
_initGroupStore(groupId) {
|
|
|
|
if (!groupId) return;
|
2018-05-01 13:18:45 +03:00
|
|
|
GroupStore.registerListener(groupId, this.onGroupStoreUpdated);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
|
|
|
_unregisterGroupStore() {
|
2018-05-01 13:18:45 +03:00
|
|
|
GroupStore.unregisterListener(this.onGroupStoreUpdated);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
onGroupStoreUpdated() {
|
2018-04-12 01:58:04 +03:00
|
|
|
this.setState({
|
2018-05-01 13:18:45 +03:00
|
|
|
isUserPrivilegedInGroup: GroupStore.isUserPrivileged(this.props.groupId),
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
onInviteToGroupButtonClick() {
|
2018-04-12 01:58:04 +03:00
|
|
|
showGroupInviteDialog(this.props.groupId).then(() => {
|
|
|
|
this.setState({
|
2018-10-30 19:15:19 +03:00
|
|
|
phase: RightPanel.Phase.GroupMemberList,
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
onAddRoomToGroupButtonClick() {
|
2018-04-12 01:58:04 +03:00
|
|
|
showGroupAddRoomDialog(this.props.groupId).then(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
});
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
onRoomStateMember(ev, state, member) {
|
2018-09-07 15:16:26 +03:00
|
|
|
if (member.roomId !== this.props.roomId) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
// redraw the badge on the membership list
|
2018-10-30 19:15:19 +03:00
|
|
|
if (this.state.phase === RightPanel.Phase.RoomMemberList && member.roomId === this.props.roomId) {
|
2018-04-12 01:58:04 +03:00
|
|
|
this._delayedUpdate();
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (this.state.phase === RightPanel.Phase.RoomMemberInfo && member.roomId === this.props.roomId &&
|
2018-04-12 01:58:04 +03:00
|
|
|
member.userId === this.state.member.userId) {
|
|
|
|
// refresh the member info (e.g. new power level)
|
|
|
|
this._delayedUpdate();
|
|
|
|
}
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
onAction(payload) {
|
|
|
|
if (payload.action === "view_right_panel_phase") {
|
2018-04-12 01:58:04 +03:00
|
|
|
this.setState({
|
|
|
|
phase: payload.phase,
|
2018-12-10 18:52:45 +03:00
|
|
|
groupRoomId: payload.groupRoomId,
|
|
|
|
groupId: payload.groupId,
|
2018-10-30 19:15:19 +03:00
|
|
|
member: payload.member,
|
2019-03-29 05:38:15 +03:00
|
|
|
event: payload.event,
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
}
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
2018-04-12 01:58:04 +03:00
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
render() {
|
2018-04-12 01:58:04 +03:00
|
|
|
const MemberList = sdk.getComponent('rooms.MemberList');
|
|
|
|
const MemberInfo = sdk.getComponent('rooms.MemberInfo');
|
2019-03-29 05:38:15 +03:00
|
|
|
const ThirdPartyMemberInfo = sdk.getComponent('rooms.ThirdPartyMemberInfo');
|
2018-04-12 01:58:04 +03:00
|
|
|
const NotificationPanel = sdk.getComponent('structures.NotificationPanel');
|
|
|
|
const FilePanel = sdk.getComponent('structures.FilePanel');
|
|
|
|
|
|
|
|
const GroupMemberList = sdk.getComponent('groups.GroupMemberList');
|
|
|
|
const GroupMemberInfo = sdk.getComponent('groups.GroupMemberInfo');
|
|
|
|
const GroupRoomList = sdk.getComponent('groups.GroupRoomList');
|
|
|
|
const GroupRoomInfo = sdk.getComponent('groups.GroupRoomInfo');
|
|
|
|
|
|
|
|
let panel = <div />;
|
|
|
|
|
2018-10-30 19:15:19 +03:00
|
|
|
if (this.props.roomId && this.state.phase === RightPanel.Phase.RoomMemberList) {
|
|
|
|
panel = <MemberList roomId={this.props.roomId} key={this.props.roomId} />;
|
|
|
|
} else if (this.props.groupId && this.state.phase === RightPanel.Phase.GroupMemberList) {
|
|
|
|
panel = <GroupMemberList groupId={this.props.groupId} key={this.props.groupId} />;
|
|
|
|
} else if (this.state.phase === RightPanel.Phase.GroupRoomList) {
|
|
|
|
panel = <GroupRoomList groupId={this.props.groupId} key={this.props.groupId} />;
|
|
|
|
} else if (this.state.phase === RightPanel.Phase.RoomMemberInfo) {
|
2019-01-17 12:29:37 +03:00
|
|
|
panel = <MemberInfo member={this.state.member} key={this.props.roomId || this.state.member.userId} />;
|
2019-03-29 05:38:15 +03:00
|
|
|
} else if (this.state.phase === RightPanel.Phase.Room3pidMemberInfo) {
|
|
|
|
panel = <ThirdPartyMemberInfo event={this.state.event} key={this.props.roomId} />;
|
2018-10-30 19:15:19 +03:00
|
|
|
} else if (this.state.phase === RightPanel.Phase.GroupMemberInfo) {
|
|
|
|
panel = <GroupMemberInfo
|
|
|
|
groupMember={this.state.member}
|
|
|
|
groupId={this.props.groupId}
|
|
|
|
key={this.state.member.user_id} />;
|
|
|
|
} else if (this.state.phase === RightPanel.Phase.GroupRoomInfo) {
|
|
|
|
panel = <GroupRoomInfo
|
|
|
|
groupRoomId={this.state.groupRoomId}
|
|
|
|
groupId={this.props.groupId}
|
|
|
|
key={this.state.groupRoomId} />;
|
|
|
|
} else if (this.state.phase === RightPanel.Phase.NotificationPanel) {
|
|
|
|
panel = <NotificationPanel />;
|
|
|
|
} else if (this.state.phase === RightPanel.Phase.FilePanel) {
|
2019-03-12 18:36:12 +03:00
|
|
|
panel = <FilePanel roomId={this.props.roomId} resizeNotifier={this.props.resizeNotifier} />;
|
2018-04-12 01:58:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const classes = classNames("mx_RightPanel", "mx_fadable", {
|
|
|
|
"collapsed": this.props.collapsed,
|
|
|
|
"mx_fadable_faded": this.props.disabled,
|
2018-11-06 17:29:47 +03:00
|
|
|
"dark-panel": true,
|
2018-04-12 01:58:04 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
return (
|
|
|
|
<aside className={classes}>
|
|
|
|
{ panel }
|
|
|
|
</aside>
|
|
|
|
);
|
2018-10-30 19:15:19 +03:00
|
|
|
}
|
|
|
|
}
|