1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-12 02:36:21 +00:00
Vencord/src/plugins/gameActivityToggle/index.tsx

90 lines
3.5 KiB
TypeScript
Raw Normal View History

/*
* 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/>.
*/
2023-04-03 01:13:54 +00:00
import { disableStyle, enableStyle } from "@api/Styles";
import ErrorBoundary from "@components/ErrorBoundary";
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
import { findComponentByCodeLazy } from "@webpack";
2023-10-25 16:15:12 +00:00
import { StatusSettingsStores } from "@webpack/common";
2023-04-03 01:13:54 +00:00
import style from "./style.css?managed";
const Button = findComponentByCodeLazy("Button.Sizes.NONE,disabled:");
2023-04-04 13:26:53 +00:00
function makeIcon(showCurrentGame?: boolean) {
return function () {
2023-04-04 13:26:53 +00:00
return (
<svg
width="20"
height="20"
viewBox="0 0 24 24"
2023-04-04 13:26:53 +00:00
>
<path fill="currentColor" mask="url(#gameActivityMask)" d="M3.06 20.4q-1.53 0-2.37-1.065T.06 16.74l1.26-9q.27-1.8 1.605-2.97T6.06 3.6h11.88q1.8 0 3.135 1.17t1.605 2.97l1.26 9q.21 1.53-.63 2.595T20.94 20.4q-.63 0-1.17-.225T18.78 19.5l-2.7-2.7H7.92l-2.7 2.7q-.45.45-.99.675t-1.17.225Zm14.94-7.2q.51 0 .855-.345T19.2 12q0-.51-.345-.855T18 10.8q-.51 0-.855.345T16.8 12q0 .51.345 .855T18 13.2Zm-2.4-3.6q.51 0 .855-.345T16.8 8.4q0-.51-.345-.855T15.6 7.2q-.51 0-.855.345T14.4 8.4q0 .51.345 .855T15.6 9.6ZM6.9 13.2h1.8v-2.1h2.1v-1.8h-2.1v-2.1h-1.8v2.1h-2.1v1.8h2.1v2.1Z" />
{!showCurrentGame && <>
<mask id="gameActivityMask" >
<rect fill="white" x="0" y="0" width="24" height="24" />
2023-10-25 16:15:12 +00:00
<path fill="black" d="M23.27 4.54 19.46.73 .73 19.46 4.54 23.27 23.27 4.54Z" />
</mask>
<path fill="var(--status-danger)" d="M23 2.27 21.73 1 1 21.73 2.27 23 23 2.27Z" />
</>}
2023-04-04 13:26:53 +00:00
</svg>
);
};
}
function GameActivityToggleButton() {
2023-10-25 16:15:12 +00:00
const showCurrentGame = StatusSettingsStores.ShowCurrentGame.useSetting();
return (
2023-04-04 13:26:53 +00:00
<Button
tooltipText={showCurrentGame ? "Disable Game Activity" : "Enable Game Activity"}
2023-04-04 13:26:53 +00:00
icon={makeIcon(showCurrentGame)}
role="switch"
aria-checked={!showCurrentGame}
2023-10-25 16:15:12 +00:00
onClick={() => StatusSettingsStores.ShowCurrentGame.updateSetting(old => !old)}
2023-04-04 13:26:53 +00:00
/>
);
}
export default definePlugin({
name: "GameActivityToggle",
description: "Adds a button next to the mic and deafen button to toggle game activity.",
authors: [Devs.Nuckyz, Devs.RuukuLada],
patches: [
{
find: ".Messages.ACCOUNT_SPEAKING_WHILE_MUTED",
replacement: {
match: /this\.renderNameZone\(\).+?children:\[/,
replace: "$&$self.GameActivityToggleButton(),"
}
}
],
2023-04-03 01:13:54 +00:00
GameActivityToggleButton: ErrorBoundary.wrap(GameActivityToggleButton, { noop: true }),
start() {
enableStyle(style);
},
stop() {
disableStyle(style);
}
});