This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 822
Allow managing room knocks #11404
Merged
t3chguy
merged 3 commits into
matrix-org:develop
from
nordeck:charlynguyen/allow-managing-room-knocks
Aug 16, 2023
Merged
Allow managing room knocks #11404
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
res/css/views/settings/tabs/room/_PeopleRoomSettingsTab.pcss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
Copyright 2023 Nordeck IT + Consulting GmbH | ||
|
||
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. | ||
*/ | ||
|
||
.mx_PeopleRoomSettingsTab_knock { | ||
display: flex; | ||
margin-top: var(--cpd-space-2x); | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_content { | ||
flex-grow: 1; | ||
margin: 0 var(--cpd-space-4x); | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_name { | ||
font-weight: var(--cpd-font-weight-semibold); | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_timestamp { | ||
color: $secondary-content; | ||
margin-left: var(--cpd-space-1x); | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_userId { | ||
color: $secondary-content; | ||
display: block; | ||
font-size: var(--cpd-font-size-body-sm); | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_seeMoreOrLess { | ||
margin: var(--cpd-space-3x) 0 0; | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_action { | ||
flex-shrink: 0; | ||
|
||
+ .mx_PeopleRoomSettingsTab_action { | ||
margin-left: var(--cpd-space-3x); | ||
} | ||
} | ||
|
||
.mx_PeopleRoomSettingsTab_paragraph { | ||
margin: 0; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
173 changes: 173 additions & 0 deletions
173
src/components/views/settings/tabs/room/PeopleRoomSettingsTab.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
/* | ||
Copyright 2023 Nordeck IT + Consulting GmbH | ||
|
||
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 { EventTimeline, MatrixError, Room, RoomMember, RoomStateEvent } from "matrix-js-sdk/src/matrix"; | ||
import React, { useCallback, useState, VFC } from "react"; | ||
|
||
import { Icon as CheckIcon } from "../../../../../../res/img/feather-customised/check.svg"; | ||
import { Icon as XIcon } from "../../../../../../res/img/feather-customised/x.svg"; | ||
import { formatRelativeTime } from "../../../../../DateUtils"; | ||
import { useTypedEventEmitterState } from "../../../../../hooks/useEventEmitter"; | ||
import { _t } from "../../../../../languageHandler"; | ||
import Modal, { IHandle } from "../../../../../Modal"; | ||
import MemberAvatar from "../../../avatars/MemberAvatar"; | ||
import ErrorDialog from "../../../dialogs/ErrorDialog"; | ||
import AccessibleButton from "../../../elements/AccessibleButton"; | ||
import SettingsFieldset from "../../SettingsFieldset"; | ||
import { SettingsSection } from "../../shared/SettingsSection"; | ||
import SettingsTab from "../SettingsTab"; | ||
|
||
const Timestamp: VFC<{ roomMember: RoomMember }> = ({ roomMember }) => { | ||
const timestamp = roomMember.events.member?.event.origin_server_ts; | ||
if (!timestamp) return null; | ||
return <time className="mx_PeopleRoomSettingsTab_timestamp">{formatRelativeTime(new Date(timestamp))}</time>; | ||
}; | ||
|
||
const SeeMoreOrLess: VFC<{ roomMember: RoomMember }> = ({ roomMember }) => { | ||
const [seeMore, setSeeMore] = useState(false); | ||
const reason = roomMember.events.member?.getContent().reason; | ||
|
||
if (!reason) return null; | ||
|
||
const truncateAt = 120; | ||
const shouldTruncate = reason.length > truncateAt; | ||
|
||
return ( | ||
<> | ||
<p className="mx_PeopleRoomSettingsTab_seeMoreOrLess"> | ||
{seeMore || !shouldTruncate ? reason : `${reason.substring(0, truncateAt)}…`} | ||
</p> | ||
{shouldTruncate && ( | ||
<AccessibleButton kind="link" onClick={() => setSeeMore(!seeMore)}> | ||
{seeMore ? _t("See less") : _t("See more")} | ||
</AccessibleButton> | ||
)} | ||
</> | ||
); | ||
}; | ||
|
||
const Knock: VFC<{ | ||
canInvite: boolean; | ||
canKick: boolean; | ||
onApprove: (userId: string) => Promise<void>; | ||
onDeny: (userId: string) => Promise<void>; | ||
roomMember: RoomMember; | ||
}> = ({ canKick, canInvite, onApprove, onDeny, roomMember }) => { | ||
const [disabled, setDisabled] = useState(false); | ||
|
||
const handleApprove = (userId: string): void => { | ||
setDisabled(true); | ||
onApprove(userId).catch(onError); | ||
}; | ||
|
||
const handleDeny = (userId: string): void => { | ||
setDisabled(true); | ||
onDeny(userId).catch(onError); | ||
}; | ||
|
||
const onError = (): void => setDisabled(false); | ||
|
||
return ( | ||
<div className="mx_PeopleRoomSettingsTab_knock"> | ||
<MemberAvatar height={42} member={roomMember} width={42} /> | ||
<div className="mx_PeopleRoomSettingsTab_content"> | ||
<span className="mx_PeopleRoomSettingsTab_name">{roomMember.name}</span> | ||
<Timestamp roomMember={roomMember} /> | ||
<span className="mx_PeopleRoomSettingsTab_userId">{roomMember.userId}</span> | ||
<SeeMoreOrLess roomMember={roomMember} /> | ||
</div> | ||
<AccessibleButton | ||
className="mx_PeopleRoomSettingsTab_action" | ||
disabled={!canKick || disabled} | ||
kind="icon_primary_outline" | ||
onClick={() => handleDeny(roomMember.userId)} | ||
title={_t("Deny")} | ||
> | ||
<XIcon width={18} height={18} /> | ||
</AccessibleButton> | ||
<AccessibleButton | ||
className="mx_PeopleRoomSettingsTab_action" | ||
disabled={!canInvite || disabled} | ||
kind="icon_primary" | ||
onClick={() => handleApprove(roomMember.userId)} | ||
title={_t("Approve")} | ||
> | ||
<CheckIcon width={18} height={18} /> | ||
</AccessibleButton> | ||
</div> | ||
); | ||
}; | ||
|
||
export const PeopleRoomSettingsTab: VFC<{ room: Room }> = ({ room }) => { | ||
const client = room.client; | ||
const userId = client.getUserId() || ""; | ||
const canInvite = room.canInvite(userId); | ||
const member = room.getMember(userId); | ||
const state = room.getLiveTimeline().getState(EventTimeline.FORWARDS); | ||
const canKick = member && state ? state.hasSufficientPowerLevelFor("kick", member.powerLevel) : false; | ||
const roomId = room.roomId; | ||
|
||
const handleApprove = (userId: string): Promise<void> => | ||
new Promise((_, reject) => | ||
client.invite(roomId, userId).catch((error) => { | ||
onError(error); | ||
reject(error); | ||
}), | ||
); | ||
|
||
const handleDeny = (userId: string): Promise<void> => | ||
new Promise((_, reject) => | ||
client.kick(roomId, userId).catch((error) => { | ||
onError(error); | ||
reject(error); | ||
}), | ||
); | ||
|
||
const onError = (error: MatrixError): IHandle<typeof ErrorDialog> => | ||
Modal.createDialog(ErrorDialog, { | ||
title: error.name, | ||
description: error.message, | ||
}); | ||
|
||
const knockMembers = useTypedEventEmitterState( | ||
room, | ||
RoomStateEvent.Members, | ||
useCallback(() => room.getMembersWithMembership("knock"), [room]), | ||
); | ||
|
||
return ( | ||
<SettingsTab> | ||
<SettingsSection heading={_t("People")}> | ||
<SettingsFieldset legend={_t("Asking to join")}> | ||
{knockMembers.length ? ( | ||
knockMembers.map((knockMember) => ( | ||
<Knock | ||
canInvite={canInvite} | ||
canKick={canKick} | ||
key={knockMember.userId} | ||
onApprove={handleApprove} | ||
onDeny={handleDeny} | ||
roomMember={knockMember} | ||
/> | ||
)) | ||
) : ( | ||
<p className="mx_PeopleRoomSettingsTab_paragraph">{_t("No requests")}</p> | ||
)} | ||
</SettingsFieldset> | ||
</SettingsSection> | ||
</SettingsTab> | ||
); | ||
}; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.