aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/consoleShortcuts.ts
blob: 4b33d572a7a25dfc0c8ab7dc61a4650d82c7e47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { Devs } from "../utils/constants";
import definePlugin from "../utils/types";

const WEB_ONLY = (f: string) => () => {
    throw new Error(`'${f}' is Discord Desktop only.`);
};

export default definePlugin({
    name: "ConsoleShortcuts",
    description: "Adds shorter Aliases for many things on the window. Run `shortcutList` for a list.",
    authors: [Devs.Ven],

    getShortcuts() {
        return {
            toClip: IS_WEB ? WEB_ONLY("toClip") : window.DiscordNative.clipboard.copy,
            fromClip: IS_WEB ? WEB_ONLY("fromClip") : window.DiscordNative.clipboard.read,
            wp: Vencord.Webpack,
            wpc: Vencord.Webpack.wreq.c,
            wreq: Vencord.Webpack.wreq,
            wpsearch: Vencord.Webpack.search,
            wpex: Vencord.Webpack.extract,
            findByProps: Vencord.Webpack.findByProps,
            find: Vencord.Webpack.find,
            Plugins: Vencord.Plugins,
            React: Vencord.Webpack.Common.React,
            Settings: Vencord.Settings,
            Api: Vencord.Api,
            reload: () => location.reload(),
            restart: IS_WEB ? WEB_ONLY("restart") : window.DiscordNative.app.relaunch
        };
    },

    start() {
        const shortcuts = this.getShortcuts();
        window.shortcutList = shortcuts;
        for (const [key, val] of Object.entries(shortcuts))
            window[key] = val;
    },

    stop() {
        delete window.shortcutList;
        for (const key in this.getShortcuts())
            delete window[key];
    }
});