Plugin

GameActivityToggle

Adds a button next to the mic and deafen button to toggle game activity.

Activity Shortcuts
index.tsx
Download

Source

src/plugins/gameActivityToggle/index.tsx
1import { isPluginEnabled } from "@api/PluginManager";
2import { definePluginSettings } from "@api/Settings";
3import { getUserSettingLazy } from "@api/UserSettings";
4import ErrorBoundary from "@components/ErrorBoundary";
5import VencordToolboxPlugin from "@plugins/vencordToolbox";
6import { Devs } from "@utils/constants";
7import definePlugin, { OptionType } from "@utils/types";
8import { findComponentByCodeLazy } from "@webpack";
9import { Menu } from "@webpack/common";
10
11import managedStyle from "./style.css?managed";
12
13const Button = findComponentByCodeLazy(".GREEN,positionKeyStemOverride:");
14
15const ShowCurrentGame = getUserSettingLazy<boolean>("status", "showCurrentGame")!;
16
17const settings = definePluginSettings({
18 oldIcon: {
19 type: OptionType.BOOLEAN,
20 description: "Use the old icon style before Discord icon redesign",
21 default: false
22 },
23 location: {
24 type: OptionType.SELECT,
25 description: "Where to show the game activity toggle button",
26 options: [
27 { label: "Next to Mute/Deafen", value: "PANEL", default: true },
28 { label: "Vencord Toolbox", value: "TOOLBOX" }
29 ],
30 get hidden() {
31 return !isPluginEnabled(VencordToolboxPlugin.name);
32 }
33 }
34});
35
36function Icon() {
37 const { oldIcon } = settings.use(["oldIcon"]);
38 const showCurrentGame = ShowCurrentGame.useSetting();
39
40
41 const redLinePath = !oldIcon
42 ? "M22.7 2.7a1 1 0 0 0-1.4-1.4l-20 20a1 1 0 1 0 1.4 1.4Z"
43 : "M23 2.27 21.73 1 1 21.73 2.27 23 23 2.27Z";
44
45 const maskBlackPath = !oldIcon
46 ? "M23.27 4.73 19.27 .73 -.27 20.27 3.73 24.27Z"
47 : "M23.27 4.54 19.46.73 .73 19.46 4.54 23.27 23.27 4.54Z";
48
49 return (
50 <svg width="20" height="20" viewBox="0 0 24 24">
51 <path
52 fill={!showCurrentGame && !oldIcon ? "var(--status-danger)" : "currentColor"}
53 mask={!showCurrentGame ? "url(#gameActivityMask)" : void 0}
54 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"
55 />
56 {!showCurrentGame && <>
57 <path fill="var(--status-danger)" d={redLinePath} />
58 <mask id="gameActivityMask">
59 <rect fill="white" x="0" y="0" width="24" height="24" />
60 <path fill="black" d={maskBlackPath} />
61 </mask>
62 </>}
63 </svg>
64 );
65}
66
67function GameActivityToggleButton(props: { nameplate?: any; }) {
68 const { location } = settings.use(["location"]);
69 const showCurrentGame = ShowCurrentGame.useSetting();
70
71 if (location !== "PANEL" && isPluginEnabled(VencordToolboxPlugin.name)) return null;
72
73 return (
74 <Button
75 tooltipText={showCurrentGame ? "Disable Game Activity" : "Enable Game Activity"}
76 icon={Icon}
77 role="switch"
78 aria-checked={!showCurrentGame}
79 redGlow={!showCurrentGame}
80 plated={props?.nameplate != null}
81 onClick={() => ShowCurrentGame.updateSetting(old => !old)}
82 />
83 );
84}
85
86export default definePlugin({
87 name: "GameActivityToggle",
88 description: "Adds a button next to the mic and deafen button to toggle game activity.",
89 tags: ["Activity", "Shortcuts"],
90 authors: [Devs.Nuckyz, Devs.RuukuLada],
91 dependencies: ["UserSettingsAPI"],
92 settings,
93
94 managedStyle,
95
96 patches: [
97 {
98 find: ".DISPLAY_NAME_STYLES_COACHMARK)",
99 replacement: {
100 match: /children:\[(?=.{0,25}?accountContainerRef)/,
101 replace: "children:[$self.GameActivityToggleButton(arguments[0]),"
102 }
103 }
104 ],
105
106 toolboxActions() {
107 const { location } = settings.use(["location"]);
108 const showCurrentGame = ShowCurrentGame.useSetting();
109
110 if (location !== "TOOLBOX") return null;
111
112 return (
113 <Menu.MenuCheckboxItem
114 id="game-activity-toggle-toolbox"
115 label="Enable Game Activity"
116 checked={showCurrentGame}
117 action={() => ShowCurrentGame.updateSetting(old => !old)}
118 />
119 );
120 },
121
122 GameActivityToggleButton: ErrorBoundary.wrap(GameActivityToggleButton, { noop: true }),
123});
124