87 lines
3.3 KiB
TypeScript
87 lines
3.3 KiB
TypeScript
/*
|
|
* 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 { definePluginSettings } from "@api/Settings";
|
|
import { Devs } from "@utils/constants";
|
|
import definePlugin, { OptionType, PluginSettingDef } from "@utils/types";
|
|
|
|
const opt = (description: string) => ({
|
|
type: OptionType.BOOLEAN,
|
|
description,
|
|
default: true,
|
|
restartNeeded: true
|
|
} satisfies PluginSettingDef);
|
|
|
|
const settings = definePluginSettings({
|
|
showTimeouts: opt("Show member timeout icons in chat."),
|
|
showInvitesPaused: opt("Show the invites paused tooltip in the server list."),
|
|
showModView: opt("Show the member mod view context menu item in all servers.")
|
|
});
|
|
|
|
export default definePlugin({
|
|
name: "ShowHiddenThings",
|
|
tags: ["ShowTimeouts", "ShowInvitesPaused", "ShowModView", "DisableDiscoveryFilters"],
|
|
description: "Displays various hidden & moderator-only things regardless of permissions.",
|
|
authors: [Devs.Dolfies],
|
|
settings,
|
|
|
|
patches: [
|
|
{
|
|
find: "showCommunicationDisabledStyles",
|
|
predicate: () => settings.store.showTimeouts,
|
|
replacement: {
|
|
match: /&&\i\.\i\.canManageUser\(\i\.\i\.MODERATE_MEMBERS,\i\.author,\i\)/,
|
|
replace: "",
|
|
},
|
|
},
|
|
{
|
|
find: "INVITES_DISABLED))||",
|
|
predicate: () => settings.store.showInvitesPaused,
|
|
replacement: {
|
|
match: /\i\.\i\.can\(\i\.\i.MANAGE_GUILD,\i\)/,
|
|
replace: "true",
|
|
},
|
|
},
|
|
{
|
|
find: /,checkElevated:!1}\),\i\.\i\)}(?<=getCurrentUser\(\);return.+?)/,
|
|
predicate: () => settings.store.showModView,
|
|
replacement: {
|
|
match: /return \i\.\i\(\i\.\i\(\{user:\i,context:\i,checkElevated:!1\}\),\i\.\i\)/,
|
|
replace: "return true",
|
|
}
|
|
},
|
|
// fixes a bug where Members page must be loaded to see highest role, why is Discord depending on MemberSafetyStore.getEnhancedMember for something that can be obtained here?
|
|
{
|
|
find: "#{intl::GUILD_MEMBER_MOD_VIEW_PERMISSION_GRANTED_BY_ARIA_LABEL}),allowOverflow:",
|
|
predicate: () => settings.store.showModView,
|
|
replacement: {
|
|
match: /(role:)\i(?=,guildId.{0,100}role:(\i\[))/,
|
|
replace: "$1$2arguments[0].member.highestRoleId]",
|
|
}
|
|
},
|
|
// allows you to open mod view on yourself
|
|
{
|
|
find: 'action:"PRESS_MOD_VIEW",icon:',
|
|
predicate: () => settings.store.showModView,
|
|
replacement: {
|
|
match: /\i(?=\?null)/,
|
|
replace: "false"
|
|
}
|
|
}
|
|
]
|
|
});
|