/* * 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 . */ import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; import { findLazy } from "@webpack"; import { Constants, GuildStore, i18n, RestAPI } from "@webpack/common"; const InvitesDisabledExperiment = findLazy(m => m.definition?.id === "2022-07_invites_disabled"); function showDisableInvites(guildId: string) { // Once the experiment is removed, this should keep working const { enableInvitesDisabled } = InvitesDisabledExperiment?.getCurrentConfig?.({ guildId }) ?? { enableInvitesDisabled: true }; // @ts-ignore return enableInvitesDisabled && !GuildStore.getGuild(guildId).hasFeature("INVITES_DISABLED"); } function disableInvites(guildId: string) { const guild = GuildStore.getGuild(guildId); const features = [...guild.features, "INVITES_DISABLED"]; RestAPI.patch({ url: Constants.Endpoints.GUILD(guildId), body: { features }, }); } export default definePlugin({ name: "PauseInvitesForever", tags: ["DisableInvitesForever"], description: "Brings back the option to pause invites indefinitely that stupit Discord removed.", authors: [Devs.Dolfies, Devs.amia], patches: [ { find: "Messages.GUILD_INVITE_DISABLE_ACTION_SHEET_DESCRIPTION", group: true, replacement: [ { match: /children:\i\.\i\.\i\.GUILD_INVITE_DISABLE_ACTION_SHEET_DESCRIPTION/, replace: "children: $self.renderInvitesLabel({guildId:arguments[0].guildId,setChecked})", }, { match: /(\i\.\i\)\(\i\),\[\i,(\i)\]=\i\.useState\(\i\))/, replace: "$1,setChecked=$2" } ] } ], renderInvitesLabel: ErrorBoundary.wrap(({ guildId, setChecked }) => { return (
{i18n.Messages.GUILD_INVITE_DISABLE_ACTION_SHEET_DESCRIPTION} {showDisableInvites(guildId) && { setChecked(true); disableInvites(guildId); }}> Pause Indefinitely.}
); }) });