5344f0017a
* [UI > Components] Add Discord's button * [SafeMode] Initial work, basic ErrorBoundary patch * [SafeMode] Custom error boundary (#57) * [SafeMode] Add mostly complete custom error boundary * [SafeMode] Use Button from @ui/components in error boundary * [SafeMode] Wrap the error boundary in our own error boundary * [SafeMode > ErrorBoundary] Code-style changes --------- Co-authored-by: Beef <beefers@riseup.net> * [TS] Add basic type for Discord's button * [UI] Move Codeblock to components, and use it * [UI > Settings] Allow disabling the ErrorBoundary in CustomPage * [UI > Settings] Move the ErrorBoundary triggers to Developer * [TS] Add Codeblock to types * [TS] Use ButtonColors in Button type * [SafeMode > ErrorBoundary] Rework * [UI] Add HelpMessage to components * [SafeMode] Proper implementation * [Global] SafeMode is optional (#59) * [UI > Developer] Restore the balance * [SafeMode > ErrorBoundary] Optimise for tablet UI * [SafeMode] Last-minute fixes --------- Co-authored-by: Jack <30497388+FieryFlames@users.noreply.github.com> Co-authored-by: Jack Matthews <jm5112356@gmail.com>
32 lines
915 B
TypeScript
32 lines
915 B
TypeScript
import { patchLogHook } from "@lib/debug";
|
|
import { patchCommands } from "@lib/commands";
|
|
import { initPlugins } from "@lib/plugins";
|
|
import { patchAssets } from "@ui/assets";
|
|
import initQuickInstall from "@ui/quickInstall";
|
|
import initSafeMode from "@ui/safeMode";
|
|
import initSettings from "@ui/settings";
|
|
import initFixes from "@lib/fixes";
|
|
import logger from "@lib/logger";
|
|
import windowObject from "@lib/windowObject";
|
|
|
|
export default async () => {
|
|
// Load everything in parallel
|
|
const unloads = await Promise.all([
|
|
patchLogHook(),
|
|
patchAssets(),
|
|
patchCommands(),
|
|
initFixes(),
|
|
initSafeMode(),
|
|
initSettings(),
|
|
initQuickInstall(),
|
|
]);
|
|
|
|
// Assign window object
|
|
window.vendetta = await windowObject(unloads);
|
|
|
|
// Once done, load plugins
|
|
unloads.push(await initPlugins());
|
|
|
|
// We good :)
|
|
logger.log("Vendetta is ready!");
|
|
}
|