/* * 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 { definePluginSettings } from "@api/Settings"; import { disableStyle, enableStyle } from "@api/Styles"; import { getUserSettingDefinitionLazy } from "@api/UserSettingDefinitions"; import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import definePlugin, { OptionType } from "@utils/types"; import { findComponentByCode } from "@webpack"; import style from "./style.css?managed"; const Button = findComponentByCode("Button.Sizes.NONE,disabled:"); const ShowCurrentGame = getUserSettingDefinitionLazy("status", "showCurrentGame")!; function makeIcon(showCurrentGame?: boolean) { const { oldIcon } = settings.use(["oldIcon"]); const redLinePath = !oldIcon ? "M22.7 2.7a1 1 0 0 0-1.4-1.4l-20 20a1 1 0 1 0 1.4 1.4Z" : "M23 2.27 21.73 1 1 21.73 2.27 23 23 2.27Z"; const maskBlackPath = !oldIcon ? "M23.27 4.73 19.27 .73 -.27 20.27 3.73 24.27Z" : "M23.27 4.54 19.46.73 .73 19.46 4.54 23.27 23.27 4.54Z"; return function () { return ( {!showCurrentGame && <> } ); }; } function GameActivityToggleButton() { const showCurrentGame = ShowCurrentGame.useSetting(); return (