Vencord/src/webpack/common.tsx

113 lines
3.3 KiB
TypeScript
Raw Normal View History

2022-09-30 22:42:50 +00:00
import { waitFor, filters, _resolveReady } from './webpack';
import type Components from "discord-types/components";
import type Stores from "discord-types/stores";
import type Other from "discord-types/other";
2022-09-30 22:42:50 +00:00
import { lazyWebpack } from '../utils/misc';
export const Margins = lazyWebpack(filters.byProps(["marginTop20"]));
2022-08-31 18:47:07 +00:00
export let FluxDispatcher: Other.FluxDispatcher;
2022-08-31 18:47:07 +00:00
export let React: typeof import("react");
export let UserStore: Stores.UserStore;
2022-09-30 22:42:50 +00:00
export const Forms = {} as {
FormTitle: Components.FormTitle;
FormSection: any;
FormDivider: any;
FormText: Components.FormText;
};
export let Card: Components.Card;
2022-08-31 18:47:07 +00:00
export let Button: any;
export let Switch: any;
export let Tooltip: Components.Tooltip;
2022-09-30 22:42:50 +00:00
export let Router: any;
2022-08-31 18:47:07 +00:00
2022-09-30 22:42:50 +00:00
export let Parser: any;
export let Alerts: {
show(alert: {
title: any;
body: React.ReactNode;
className?: string;
confirmColor?: string;
cancelText?: string;
confirmText?: string;
secondaryConfirmText?: string;
onCancel?(): void;
onConfirm?(): void;
onConfirmSecondary?(): void;
}): void;
/** This is a noop, it does nothing. */
close(): void;
};
2022-09-28 10:15:30 +00: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
2022-09-30 22:42:50 +00:00
genId: () => (Math.random() || Math.random()).toString(36).slice(2),
// hack to merge with the following interface, dunno if there's a better way
...{} as {
show(data: {
message: string,
id: string,
2022-09-28 10:15:30 +00:00
/**
2022-09-30 22:42:50 +00:00
* Toasts.Type
2022-09-28 10:15:30 +00:00
*/
2022-09-30 22:42:50 +00:00
type: number,
options?: {
/**
* Toasts.Position
*/
position?: number;
component?: React.ReactNode,
duration?: number;
};
}): void;
pop(): void;
}
2022-09-28 10:15:30 +00:00
};
2022-08-31 18:47:07 +00:00
waitFor("useState", m => React = m);
waitFor(["dispatch", "subscribe"], m => {
FluxDispatcher = m;
const cb = () => {
m.unsubscribe("CONNECTION_OPEN", cb);
2022-09-30 22:42:50 +00:00
_resolveReady();
2022-08-31 18:47:07 +00:00
};
m.subscribe("CONNECTION_OPEN", cb);
});
waitFor(["getCurrentUser", "initialize"], m => UserStore = m);
2022-09-27 14:57:46 +00:00
waitFor(["Hovers", "Looks", "Sizes"], m => Button = m);
waitFor(filters.byCode("helpdeskArticleId"), m => Switch = m);
waitFor(["Positions", "Colors"], m => Tooltip = m);
2022-09-30 22:42:50 +00:00
waitFor(m => m.Types?.PRIMARY === "cardPrimary", m => Card = m);
2022-09-27 14:57:46 +00:00
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 10:15:30 +00: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);
2022-09-30 22:42:50 +00:00
waitFor(["show", "close"], m => Alerts = m);
waitFor("parseTopic", m => Parser = m);
waitFor(["open", "saveAccountChanges"], m => Router = m);