fix: wait for api b4 hooking into state

This commit is contained in:
dragonwocky 2023-08-06 23:57:37 +10:00
parent 45e0be7d62
commit 95483f4f25
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 11 additions and 12 deletions

View File

@ -87,11 +87,11 @@ function Panel({
$panel.resize(preDragWidth + (dragStartX - event.clientX));
},
endDrag = (event) => {
userDragActive = false;
document.removeEventListener("mousemove", onDrag);
document.removeEventListener("mouseup", endDrag);
$panel.resize(preDragWidth + (dragStartX - event.clientX));
$panel.style.transitionDuration = "";
requestIdleCallback(() => (userDragActive = false));
};
$resizeHandle.addEventListener("mousedown", startDrag);

View File

@ -16,11 +16,10 @@ import { Mod } from "./islands/Mod.mjs";
import { Options } from "./islands/Options.mjs";
import { Profiles } from "./islands/Profiles.mjs";
let _apiImported = false,
_renderStarted = false,
_stateHookedInto = false,
_hotkeyRegistered = false;
let _apiImport, //
_renderStarted,
_stateHookedInto,
_hotkeyRegistered;
const categories = [
{
icon: "palette",
@ -180,12 +179,12 @@ const renderMenu = async () => {
if (theme === "light") document.body.classList.remove("dark");
};
const importApi = async () => {
if (_apiImported) return;
_apiImported = true;
const api = globalThis.__enhancerApi;
if (typeof api === "undefined") await import("../../shared/system.js");
await import("../../load.mjs").then((i) => i.default);
const importApi = () => {
return (_apiImport ??= (async () => {
const api = globalThis.__enhancerApi;
if (typeof api === "undefined") await import("../../shared/system.js");
await import("../../load.mjs").then((i) => i.default);
})());
},
hookIntoState = () => {
if (_stateHookedInto) return;