2023-05-15 00:33:04 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
2023-05-28 20:03:06 +00:00
|
|
|
import ExpandableHeader from "@components/ExpandableHeader";
|
2023-05-15 00:33:04 +00:00
|
|
|
import { proxyLazy } from "@utils/lazy";
|
|
|
|
import { classes } from "@utils/misc";
|
|
|
|
import { filters, findBulk } from "@webpack";
|
2023-05-28 20:03:06 +00:00
|
|
|
import { i18n, PermissionsBits, Text, Tooltip, useMemo, UserStore } from "@webpack/common";
|
2023-05-15 00:33:04 +00:00
|
|
|
import type { Guild, GuildMember } from "discord-types/general";
|
|
|
|
|
2023-05-23 00:22:25 +00:00
|
|
|
import { PermissionsSortOrder, settings } from "..";
|
2023-05-15 00:33:04 +00:00
|
|
|
import { cl, getPermissionString, getSortedRoles, sortUserRoles } from "../utils";
|
|
|
|
import openRolesAndUsersPermissionsModal, { PermissionType, type RoleOrUserPermission } from "./RolesAndUsersPermissions";
|
|
|
|
|
|
|
|
interface UserPermission {
|
|
|
|
permission: string;
|
|
|
|
roleColor: string;
|
|
|
|
rolePosition: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserPermissions = Array<UserPermission>;
|
|
|
|
|
|
|
|
const Classes = proxyLazy(() => {
|
|
|
|
const modules = findBulk(
|
|
|
|
filters.byProps("roles", "rolePill", "rolePillBorder"),
|
|
|
|
filters.byProps("roleCircle", "dotBorderBase", "dotBorderColor"),
|
|
|
|
filters.byProps("roleNameOverflow", "root", "roleName", "roleRemoveButton")
|
|
|
|
);
|
|
|
|
|
|
|
|
return Object.assign({}, ...modules);
|
|
|
|
}) as Record<"roles" | "rolePill" | "rolePillBorder" | "desaturateUserColors" | "flex" | "alignCenter" | "justifyCenter" | "svg" | "background" | "dot" | "dotBorderColor" | "roleCircle" | "dotBorderBase" | "flex" | "alignCenter" | "justifyCenter" | "wrap" | "root" | "role" | "roleRemoveButton" | "roleDot" | "roleFlowerStar" | "roleRemoveIcon" | "roleRemoveIconFocused" | "roleVerifiedIcon" | "roleName" | "roleNameOverflow" | "actionButton" | "overflowButton" | "addButton" | "addButtonIcon" | "overflowRolesPopout" | "overflowRolesPopoutArrowWrapper" | "overflowRolesPopoutArrow" | "popoutBottom" | "popoutTop" | "overflowRolesPopoutHeader" | "overflowRolesPopoutHeaderIcon" | "overflowRolesPopoutHeaderText" | "roleIcon", string>;
|
|
|
|
|
|
|
|
function UserPermissionsComponent({ guild, guildMember }: { guild: Guild; guildMember: GuildMember; }) {
|
2023-05-23 00:22:25 +00:00
|
|
|
const stns = settings.use(["permissionsSortOrder"]);
|
2023-05-15 00:33:04 +00:00
|
|
|
|
|
|
|
const [rolePermissions, userPermissions] = useMemo(() => {
|
|
|
|
const userPermissions: UserPermissions = [];
|
|
|
|
|
|
|
|
const userRoles = getSortedRoles(guild, guildMember);
|
|
|
|
|
|
|
|
const rolePermissions: Array<RoleOrUserPermission> = userRoles.map(role => ({
|
|
|
|
type: PermissionType.Role,
|
|
|
|
...role
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (guild.ownerId === guildMember.userId) {
|
|
|
|
rolePermissions.push({
|
|
|
|
type: PermissionType.Owner,
|
|
|
|
permissions: Object.values(PermissionsBits).reduce((prev, curr) => prev | curr, 0n)
|
|
|
|
});
|
|
|
|
|
|
|
|
const OWNER = i18n.Messages.GUILD_OWNER || "Server Owner";
|
|
|
|
userPermissions.push({
|
|
|
|
permission: OWNER,
|
|
|
|
roleColor: "var(--primary-300)",
|
|
|
|
rolePosition: Infinity
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
sortUserRoles(userRoles);
|
|
|
|
|
|
|
|
for (const [permission, bit] of Object.entries(PermissionsBits)) {
|
|
|
|
for (const { permissions, colorString, position, name } of userRoles) {
|
|
|
|
if ((permissions & bit) === bit) {
|
|
|
|
userPermissions.push({
|
|
|
|
permission: getPermissionString(permission),
|
|
|
|
roleColor: colorString || "var(--primary-300)",
|
|
|
|
rolePosition: position
|
|
|
|
});
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
userPermissions.sort((a, b) => b.rolePosition - a.rolePosition);
|
|
|
|
|
|
|
|
return [rolePermissions, userPermissions];
|
2023-05-23 00:22:25 +00:00
|
|
|
}, [stns.permissionsSortOrder]);
|
2023-05-15 00:33:04 +00:00
|
|
|
|
|
|
|
const { root, role, roleRemoveButton, roleNameOverflow, roles, rolePill, rolePillBorder, roleCircle, roleName } = Classes;
|
|
|
|
|
|
|
|
return (
|
2023-05-28 20:03:06 +00:00
|
|
|
<ExpandableHeader
|
|
|
|
headerText="Permissions"
|
|
|
|
moreTooltipText="Role Details"
|
|
|
|
onMoreClick={() =>
|
|
|
|
openRolesAndUsersPermissionsModal(
|
|
|
|
rolePermissions,
|
|
|
|
guild,
|
|
|
|
guildMember.nick || UserStore.getUser(guildMember.userId).username
|
|
|
|
)
|
|
|
|
}
|
|
|
|
defaultState={settings.store.defaultPermissionsDropdownState}
|
|
|
|
buttons={[
|
|
|
|
(<Tooltip text={`Sorting by ${stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? "Highest Role" : "Lowest Role"}`}>
|
|
|
|
{tooltipProps => (
|
|
|
|
<button
|
|
|
|
{...tooltipProps}
|
|
|
|
className={cl("userperms-sortorder-btn")}
|
|
|
|
onClick={() => {
|
|
|
|
stns.permissionsSortOrder = stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? PermissionsSortOrder.LowestRole : PermissionsSortOrder.HighestRole;
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
width="20"
|
|
|
|
height="20"
|
|
|
|
viewBox="0 96 960 960"
|
|
|
|
transform={stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? "scale(1 1)" : "scale(1 -1)"}
|
2023-05-15 00:33:04 +00:00
|
|
|
>
|
2023-05-28 20:03:06 +00:00
|
|
|
<path fill="var(--text-normal)" d="M440 896V409L216 633l-56-57 320-320 320 320-56 57-224-224v487h-80Z" />
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</Tooltip>)
|
|
|
|
]}>
|
|
|
|
{userPermissions.length > 0 && (
|
2023-05-15 00:33:04 +00:00
|
|
|
<div className={classes(root, roles)}>
|
|
|
|
{userPermissions.map(({ permission, roleColor }) => (
|
|
|
|
<div className={classes(role, rolePill, rolePillBorder)}>
|
|
|
|
<div className={roleRemoveButton}>
|
|
|
|
<span
|
|
|
|
className={roleCircle}
|
|
|
|
style={{ backgroundColor: roleColor }}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className={roleName}>
|
|
|
|
<Text
|
|
|
|
className={roleNameOverflow}
|
|
|
|
variant="text-xs/medium"
|
|
|
|
>
|
|
|
|
{permission}
|
|
|
|
</Text>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
)}
|
2023-05-28 20:03:06 +00:00
|
|
|
</ExpandableHeader>
|
2023-05-15 00:33:04 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ErrorBoundary.wrap(UserPermissionsComponent, { noop: true });
|