2022-08-31 14:47:07 -04:00
|
|
|
import { startAll } from "../plugins";
|
2022-09-27 10:57:46 -04:00
|
|
|
import { waitFor, filters, findByProps } from './webpack';
|
2022-08-31 16:08:05 -04:00
|
|
|
import type Components from "discord-types/components";
|
|
|
|
import type Stores from "discord-types/stores";
|
|
|
|
import type Other from "discord-types/other";
|
2022-08-31 14:47:07 -04:00
|
|
|
|
2022-08-31 16:08:05 -04:00
|
|
|
export let FluxDispatcher: Other.FluxDispatcher;
|
2022-08-31 14:47:07 -04:00
|
|
|
export let React: typeof import("react");
|
2022-08-31 16:08:05 -04:00
|
|
|
export let UserStore: Stores.UserStore;
|
2022-09-28 06:15:30 -04:00
|
|
|
export const Forms: any = {};
|
2022-08-31 14:47:07 -04:00
|
|
|
export let Button: any;
|
|
|
|
export let Switch: any;
|
2022-08-31 16:08:05 -04:00
|
|
|
export let Tooltip: Components.Tooltip;
|
2022-08-31 14:47:07 -04:00
|
|
|
|
2022-09-28 06:15:30 -04:00
|
|
|
const ToastType = {
|
|
|
|
MESSAGE: 0,
|
|
|
|
SUCCESS: 1,
|
|
|
|
FAILURE: 2,
|
|
|
|
CUSTOM: 3
|
|
|
|
};
|
|
|
|
const ToastPosition = {
|
|
|
|
TOP: 0,
|
|
|
|
BOTTOM: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Toasts = {
|
|
|
|
Type: ToastType,
|
|
|
|
Position: ToastPosition,
|
|
|
|
// what's less likely than getting 0 from Math.random()? Getting it twice in a row
|
|
|
|
genId: () => (Math.random() || Math.random()).toString(36).slice(2)
|
|
|
|
} as {
|
|
|
|
Type: typeof ToastType,
|
|
|
|
Position: typeof ToastPosition;
|
|
|
|
genId(): string;
|
|
|
|
show(data: {
|
|
|
|
message: string,
|
|
|
|
id: string,
|
|
|
|
/**
|
|
|
|
* Toasts.Type
|
|
|
|
*/
|
|
|
|
type: number,
|
|
|
|
options?: {
|
|
|
|
/**
|
|
|
|
* Toasts.Position
|
|
|
|
*/
|
|
|
|
position?: number;
|
|
|
|
component?: React.ReactNode,
|
|
|
|
duration?: number;
|
|
|
|
};
|
|
|
|
}): void;
|
|
|
|
pop(): void;
|
|
|
|
};
|
|
|
|
|
2022-08-31 14:47:07 -04:00
|
|
|
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);
|
2022-09-27 10:57:46 -04:00
|
|
|
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);
|
2022-09-28 06:15:30 -04:00
|
|
|
|
|
|
|
// This is the same module but this is easier
|
|
|
|
waitFor(filters.byCode("currentToast?"), m => Toasts.show = m);
|
|
|
|
waitFor(filters.byCode("currentToast:null"), m => Toasts.pop = m);
|