aboutsummaryrefslogtreecommitdiff
path: root/src/webpack/common.tsx
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-09-27 16:57:46 +0200
committerVendicated <vendicated@riseup.net>2022-09-27 16:57:46 +0200
commit572bfcee6ce343c6bf9d69262576de4e57c01500 (patch)
treea0cdf027c41152a45183e80344d054071684a064 /src/webpack/common.tsx
parent6398dd25d20e6bc3e02425b709233066baf64e0c (diff)
downloadVencord-572bfcee6ce343c6bf9d69262576de4e57c01500.tar.gz
Vencord-572bfcee6ce343c6bf9d69262576de4e57c01500.tar.bz2
Vencord-572bfcee6ce343c6bf9d69262576de4e57c01500.zip
Fix Settings UI
Diffstat (limited to 'src/webpack/common.tsx')
-rw-r--r--src/webpack/common.tsx37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx
new file mode 100644
index 0000000..f3cb018
--- /dev/null
+++ b/src/webpack/common.tsx
@@ -0,0 +1,37 @@
+import { startAll } from "../plugins";
+import { waitFor, filters, findByProps } from './webpack';
+import type Components from "discord-types/components";
+import type Stores from "discord-types/stores";
+import type Other from "discord-types/other";
+
+export let FluxDispatcher: Other.FluxDispatcher;
+export let React: typeof import("react");
+export let UserStore: Stores.UserStore;
+export let Forms: any = {};
+export let Button: any;
+export let Switch: any;
+export let Tooltip: Components.Tooltip;
+
+waitFor("useState", m => React = m);
+waitFor(["dispatch", "subscribe"], m => {
+ FluxDispatcher = m;
+ const cb = () => {
+ m.unsubscribe("CONNECTION_OPEN", cb);
+ startAll();
+ };
+ m.subscribe("CONNECTION_OPEN", cb);
+});
+waitFor(["getCurrentUser", "initialize"], m => UserStore = m);
+waitFor(["Hovers", "Looks", "Sizes"], m => Button = m);
+waitFor(filters.byCode("helpdeskArticleId"), m => Switch = m);
+waitFor(["Positions", "Colors"], m => Tooltip = m);
+
+waitFor(m => m.Tags && filters.byCode("errorSeparator")(m), m => Forms.FormTitle = m);
+waitFor(m => m.Tags && filters.byCode("titleClassName", "sectionTitle")(m), m => Forms.FormSection = m);
+waitFor(m => m.Types?.INPUT_PLACEHOLDER, m => Forms.FormText = m);
+
+waitFor(m => {
+ if (typeof m !== "function") return false;
+ const s = m.toString();
+ return s.length < 200 && s.includes("divider");
+}, m => Forms.FormDivider = m);