mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Make space members and user info behave more expectedly
This commit is contained in:
parent
0d0eea392c
commit
d4bac4752d
4 changed files with 11 additions and 8 deletions
|
@ -269,7 +269,7 @@ export default class RightPanel extends React.Component<IProps, IState> {
|
||||||
case RightPanelPhases.EncryptionPanel:
|
case RightPanelPhases.EncryptionPanel:
|
||||||
panel = <UserInfo
|
panel = <UserInfo
|
||||||
user={this.state.member}
|
user={this.state.member}
|
||||||
room={this.state.phase === RightPanelPhases.SpaceMemberInfo ? this.state.space : this.props.room}
|
room={this.context.getRoom(this.state.member.roomId) ?? this.props.room}
|
||||||
key={roomId || this.state.member.userId}
|
key={roomId || this.state.member.userId}
|
||||||
onClose={this.onClose}
|
onClose={this.onClose}
|
||||||
phase={this.state.phase}
|
phase={this.state.phase}
|
||||||
|
|
|
@ -168,7 +168,7 @@ const SpaceContextMenu = ({ space, onFinished, ...props }: IProps) => {
|
||||||
defaultDispatcher.dispatch<SetRightPanelPhasePayload>({
|
defaultDispatcher.dispatch<SetRightPanelPhasePayload>({
|
||||||
action: Action.SetRightPanelPhase,
|
action: Action.SetRightPanelPhase,
|
||||||
phase: RightPanelPhases.SpaceMemberList,
|
phase: RightPanelPhases.SpaceMemberList,
|
||||||
refireParams: { space: space },
|
refireParams: { space },
|
||||||
});
|
});
|
||||||
onFinished();
|
onFinished();
|
||||||
};
|
};
|
||||||
|
|
|
@ -1278,7 +1278,9 @@ const BasicUserInfo: React.FC<{
|
||||||
// hide the Roles section for DMs as it doesn't make sense there
|
// hide the Roles section for DMs as it doesn't make sense there
|
||||||
if (!DMRoomMap.shared().getUserIdForRoomId((member as RoomMember).roomId)) {
|
if (!DMRoomMap.shared().getUserIdForRoomId((member as RoomMember).roomId)) {
|
||||||
memberDetails = <div className="mx_UserInfo_container">
|
memberDetails = <div className="mx_UserInfo_container">
|
||||||
<h3>{ _t("Role") }</h3>
|
<h3>{ _t("Role in <RoomName/>", {}, {
|
||||||
|
RoomName: () => <b>{ room.name }</b>,
|
||||||
|
}) }</h3>
|
||||||
<PowerLevelSection
|
<PowerLevelSection
|
||||||
powerLevels={powerLevels}
|
powerLevels={powerLevels}
|
||||||
user={member as RoomMember}
|
user={member as RoomMember}
|
||||||
|
@ -1573,11 +1575,12 @@ const UserInfo: React.FC<IProps> = ({
|
||||||
// We have no previousPhase for when viewing a UserInfo from a Group or without a Room at this time
|
// We have no previousPhase for when viewing a UserInfo from a Group or without a Room at this time
|
||||||
if (room && phase === RightPanelPhases.EncryptionPanel) {
|
if (room && phase === RightPanelPhases.EncryptionPanel) {
|
||||||
previousPhase = RightPanelPhases.RoomMemberInfo;
|
previousPhase = RightPanelPhases.RoomMemberInfo;
|
||||||
refireParams = { member: member };
|
refireParams = { member };
|
||||||
|
} else if (room?.isSpaceRoom() && SpaceStore.spacesEnabled) {
|
||||||
|
previousPhase = previousPhase = RightPanelPhases.SpaceMemberList;
|
||||||
|
refireParams = { space: room };
|
||||||
} else if (room) {
|
} else if (room) {
|
||||||
previousPhase = previousPhase = SpaceStore.spacesEnabled && room.isSpaceRoom()
|
previousPhase = RightPanelPhases.RoomMemberList;
|
||||||
? RightPanelPhases.SpaceMemberList
|
|
||||||
: RightPanelPhases.RoomMemberList;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const onEncryptionPanelClose = () => {
|
const onEncryptionPanelClose = () => {
|
||||||
|
|
|
@ -1866,7 +1866,7 @@
|
||||||
"Deactivating this user will log them out and prevent them from logging back in. Additionally, they will leave all the rooms they are in. This action cannot be reversed. Are you sure you want to deactivate this user?": "Deactivating this user will log them out and prevent them from logging back in. Additionally, they will leave all the rooms they are in. This action cannot be reversed. Are you sure you want to deactivate this user?",
|
"Deactivating this user will log them out and prevent them from logging back in. Additionally, they will leave all the rooms they are in. This action cannot be reversed. Are you sure you want to deactivate this user?": "Deactivating this user will log them out and prevent them from logging back in. Additionally, they will leave all the rooms they are in. This action cannot be reversed. Are you sure you want to deactivate this user?",
|
||||||
"Deactivate user": "Deactivate user",
|
"Deactivate user": "Deactivate user",
|
||||||
"Failed to deactivate user": "Failed to deactivate user",
|
"Failed to deactivate user": "Failed to deactivate user",
|
||||||
"Role": "Role",
|
"Role in <RoomName/>": "Role in <RoomName/>",
|
||||||
"This client does not support end-to-end encryption.": "This client does not support end-to-end encryption.",
|
"This client does not support end-to-end encryption.": "This client does not support end-to-end encryption.",
|
||||||
"Edit devices": "Edit devices",
|
"Edit devices": "Edit devices",
|
||||||
"Security": "Security",
|
"Security": "Security",
|
||||||
|
|
Loading…
Reference in a new issue