mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 02:35:48 +03:00
Tweak edge case behaviour
This commit is contained in:
parent
fa60b24a9f
commit
2eb64de508
1 changed files with 14 additions and 3 deletions
|
@ -121,14 +121,20 @@ const JoinRuleSettings = ({ room, promptUpgrade, onError, beforeChange }: IProps
|
||||||
const onRestrictedRoomIdsChange = (newAllowRoomIds: string[]) => {
|
const onRestrictedRoomIdsChange = (newAllowRoomIds: string[]) => {
|
||||||
if (!arrayHasDiff(restrictedAllowRoomIds || [], newAllowRoomIds)) return;
|
if (!arrayHasDiff(restrictedAllowRoomIds || [], newAllowRoomIds)) return;
|
||||||
|
|
||||||
const newContent: IJoinRuleEventContent = {
|
if (!newAllowRoomIds.length) {
|
||||||
|
setContent({
|
||||||
|
join_rule: JoinRule.Invite,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setContent({
|
||||||
join_rule: JoinRule.Restricted,
|
join_rule: JoinRule.Restricted,
|
||||||
allow: newAllowRoomIds.map(roomId => ({
|
allow: newAllowRoomIds.map(roomId => ({
|
||||||
"type": RestrictedAllowType.RoomMembership,
|
"type": RestrictedAllowType.RoomMembership,
|
||||||
"room_id": roomId,
|
"room_id": roomId,
|
||||||
})),
|
})),
|
||||||
};
|
});
|
||||||
setContent(newContent);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onEditRestrictedClick = async () => {
|
const onEditRestrictedClick = async () => {
|
||||||
|
@ -209,6 +215,11 @@ const JoinRuleSettings = ({ room, promptUpgrade, onError, beforeChange }: IProps
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// when setting to 0 allowed rooms/spaces set to invite only instead as per the note
|
||||||
|
if (!restrictedAllowRoomIds.length) {
|
||||||
|
joinRule = JoinRule.Invite;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (beforeJoinRule === joinRule && !restrictedAllowRoomIds) return;
|
if (beforeJoinRule === joinRule && !restrictedAllowRoomIds) return;
|
||||||
|
|
Loading…
Reference in a new issue