SHC: Permissions viewer integration (#475)

main
Nuckyz 1 year ago committed by GitHub
parent 235000cf41
commit 3f2bcd2cab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,15 +16,17 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import { Settings } from "@api/Settings";
import ErrorBoundary from "@components/ErrorBoundary"; import ErrorBoundary from "@components/ErrorBoundary";
import { LazyComponent } from "@utils/react"; import { LazyComponent } from "@utils/react";
import { formatDuration } from "@utils/text"; import { formatDuration } from "@utils/text";
import { find, findByPropsLazy, findStoreLazy } from "@webpack"; import { find, findByPropsLazy, findStoreLazy } from "@webpack";
import { FluxDispatcher, GuildMemberStore, GuildStore, moment, Parser, PermissionStore, SnowflakeUtils, Text, Timestamp, Tooltip } from "@webpack/common"; import { FluxDispatcher, GuildMemberStore, GuildStore, moment, Parser, PermissionStore, SnowflakeUtils, Text, Timestamp, Tooltip, useEffect, useState } from "@webpack/common";
import type { Channel } from "discord-types/general"; import type { Channel } from "discord-types/general";
import type { ComponentType } from "react"; import type { ComponentType } from "react";
import { VIEW_CHANNEL } from ".."; import openRolesAndUsersPermissionsModal, { PermissionType, RoleOrUserPermission } from "../../permissionsViewer/components/RolesAndUsersPermissions";
import { settings, VIEW_CHANNEL } from "..";
enum SortOrderTypes { enum SortOrderTypes {
LATEST_ACTIVITY = 0, LATEST_ACTIVITY = 0,
@ -124,6 +126,9 @@ const VideoQualityModesToNames = {
const HiddenChannelLogo = "/assets/433e3ec4319a9d11b0cbe39342614982.svg"; const HiddenChannelLogo = "/assets/433e3ec4319a9d11b0cbe39342614982.svg";
function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) { function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
const [viewAllowedUsersAndRoles, setViewAllowedUsersAndRoles] = useState(settings.store.defaultAllowedUsersAndRolesDropdownState);
const [permissions, setPermissions] = useState<RoleOrUserPermission[]>([]);
const { const {
type, type,
topic, topic,
@ -140,28 +145,40 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
bitrate, bitrate,
rtcRegion, rtcRegion,
videoQualityMode, videoQualityMode,
permissionOverwrites permissionOverwrites,
guild_id
} = channel; } = channel;
useEffect(() => {
const membersToFetch: Array<string> = []; const membersToFetch: Array<string> = [];
const guildOwnerId = GuildStore.getGuild(channel.guild_id).ownerId; const guildOwnerId = GuildStore.getGuild(guild_id).ownerId;
if (!GuildMemberStore.getMember(channel.guild_id, guildOwnerId)) membersToFetch.push(guildOwnerId); if (!GuildMemberStore.getMember(guild_id, guildOwnerId)) membersToFetch.push(guildOwnerId);
Object.values(permissionOverwrites).forEach(({ type, id: userId }) => { Object.values(permissionOverwrites).forEach(({ type, id: userId }) => {
if (type === 1) { if (type === 1 && !GuildMemberStore.getMember(guild_id, userId)) {
if (!GuildMemberStore.getMember(channel.guild_id, userId)) membersToFetch.push(userId); membersToFetch.push(userId);
} }
}); });
if (membersToFetch.length > 0) { if (membersToFetch.length > 0) {
FluxDispatcher.dispatch({ FluxDispatcher.dispatch({
type: "GUILD_MEMBERS_REQUEST", type: "GUILD_MEMBERS_REQUEST",
guildIds: [channel.guild_id], guildIds: [guild_id],
userIds: membersToFetch userIds: membersToFetch
}); });
} }
if (Settings.plugins.PermissionsViewer.enabled) {
setPermissions(Object.values(permissionOverwrites).map(overwrite => ({
type: overwrite.type as PermissionType,
id: overwrite.id,
overwriteAllow: overwrite.allow,
overwriteDeny: overwrite.deny
})));
}
}, [channelId]);
return ( return (
<div className={ChatScrollClasses.auto + " " + ChatScrollClasses.customTheme + " " + ChatClasses.chatContent + " " + "shc-lock-screen-outer-container"}> <div className={ChatScrollClasses.auto + " " + ChatScrollClasses.customTheme + " " + ChatClasses.chatContent + " " + "shc-lock-screen-outer-container"}>
<div className="shc-lock-screen-container"> <div className="shc-lock-screen-container">
@ -182,7 +199,7 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
aria-hidden={true} aria-hidden={true}
role="img" role="img"
> >
<path d="M.7 43.05 24 2.85l23.3 40.2Zm23.55-6.25q.75 0 1.275-.525.525-.525.525-1.275 0-.75-.525-1.3t-1.275-.55q-.8 0-1.325.55-.525.55-.525 1.3t.55 1.275q.55.525 1.3.525Zm-1.85-6.1h3.65V19.4H22.4Z" /> <path fill="currentColor" d="M.7 43.05 24 2.85l23.3 40.2Zm23.55-6.25q.75 0 1.275-.525.525-.525.525-1.275 0-.75-.525-1.3t-1.275-.55q-.8 0-1.325.55-.525.55-.525 1.3t.55 1.275q.55.525 1.3.525Zm-1.85-6.1h3.65V19.4H22.4Z" />
</svg> </svg>
)} )}
</Tooltip> </Tooltip>
@ -268,8 +285,49 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
</div> </div>
} }
<div className="shc-lock-screen-allowed-users-and-roles-container"> <div className="shc-lock-screen-allowed-users-and-roles-container">
<div className="shc-lock-screen-allowed-users-and-roles-container-title">
{Settings.plugins.PermissionsViewer.enabled && (
<Tooltip text="Permission Details">
{({ onMouseLeave, onMouseEnter }) => (
<button
onMouseLeave={onMouseLeave}
onMouseEnter={onMouseEnter}
className="shc-lock-screen-allowed-users-and-roles-container-permdetails-btn"
onClick={() => openRolesAndUsersPermissionsModal(permissions, GuildStore.getGuild(channel.guild_id), channel.name)}
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
>
<path fill="currentColor" d="M7 12.001C7 10.8964 6.10457 10.001 5 10.001C3.89543 10.001 3 10.8964 3 12.001C3 13.1055 3.89543 14.001 5 14.001C6.10457 14.001 7 13.1055 7 12.001ZM14 12.001C14 10.8964 13.1046 10.001 12 10.001C10.8954 10.001 10 10.8964 10 12.001C10 13.1055 10.8954 14.001 12 14.001C13.1046 14.001 14 13.1055 14 12.001ZM19 10.001C20.1046 10.001 21 10.8964 21 12.001C21 13.1055 20.1046 14.001 19 14.001C17.8954 14.001 17 13.1055 17 12.001C17 10.8964 17.8954 10.001 19 10.001Z" />
</svg>
</button>
)}
</Tooltip>
)}
<Text variant="text-lg/bold">Allowed users and roles:</Text> <Text variant="text-lg/bold">Allowed users and roles:</Text>
<ChannelBeginHeader channel={channel} /> <Tooltip text={viewAllowedUsersAndRoles ? "Hide Allowed Users and Roles" : "View Allowed Users and Roles"}>
{({ onMouseLeave, onMouseEnter }) => (
<button
onMouseLeave={onMouseLeave}
onMouseEnter={onMouseEnter}
className="shc-lock-screen-allowed-users-and-roles-container-toggle-btn"
onClick={() => setViewAllowedUsersAndRoles(v => !v)}
>
<svg
width="24"
height="24"
viewBox="0 0 24 24"
transform={viewAllowedUsersAndRoles ? "scale(1 -1)" : "scale(1 1)"}
>
<path fill="currentColor" d="M16.59 8.59003L12 13.17L7.41 8.59003L6 10L12 16L18 10L16.59 8.59003Z" />
</svg>
</button>
)}
</Tooltip>
</div>
{viewAllowedUsersAndRoles && <ChannelBeginHeader channel={channel} />}
</div> </div>
</div> </div>
</div> </div>

@ -39,7 +39,7 @@ enum ShowMode {
HiddenIconWithMutedStyle HiddenIconWithMutedStyle
} }
const settings = definePluginSettings({ export const settings = definePluginSettings({
hideUnreads: { hideUnreads: {
description: "Hide Unreads", description: "Hide Unreads",
type: OptionType.BOOLEAN, type: OptionType.BOOLEAN,
@ -54,6 +54,11 @@ const settings = definePluginSettings({
{ label: "Muted style with hidden eye icon on the right", value: ShowMode.HiddenIconWithMutedStyle }, { label: "Muted style with hidden eye icon on the right", value: ShowMode.HiddenIconWithMutedStyle },
], ],
restartNeeded: true restartNeeded: true
},
defaultAllowedUsersAndRolesDropdownState: {
description: "Whether the allowed users and roles dropdown on hidden channels should be open by default",
type: OptionType.BOOLEAN,
default: true
} }
}); });

@ -33,9 +33,8 @@
margin: inherit; margin: inherit;
} }
.shc-lock-screen-heading-nsfw-icon > path { .shc-lock-screen-heading-nsfw-icon {
fill: var(--text-normal); color: var(--text-normal);
fill-rule: evenodd;
} }
.shc-lock-screen-topic-container { .shc-lock-screen-topic-container {
@ -99,6 +98,36 @@
max-width: 70vw; max-width: 70vw;
} }
.shc-lock-screen-allowed-users-and-roles-container-title {
display: flex;
flex-direction: row;
align-items: center;
}
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn {
all: unset;
margin-left: 5px;
cursor: pointer;
display: flex;
align-items: center;
}
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn > svg {
color: var(--text-normal);
}
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn {
all: unset;
margin-right: 5px;
cursor: pointer;
display: flex;
align-items: center;
}
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn > svg {
color: var(--text-normal);
}
.shc-lock-screen-allowed-users-and-roles-container > [class^="members"] { .shc-lock-screen-allowed-users-and-roles-container > [class^="members"] {
margin-left: 10px; margin-left: 10px;
flex-wrap: wrap; flex-wrap: wrap;

Loading…
Cancel
Save