All checks were successful
Build & Sign Wraith / Build Windows + Sign (push) Successful in 3m47s
Tool windows (still closing instantly after every prior fix): - Changed ToolWindow from defineAsyncComponent to direct synchronous import. All 14 tool components now bundled into the main JS chunk. Eliminates async chunk loading as a failure point — if the main bundle loads (which it does, since the main window works), the tool window code is guaranteed to be available. - ToolWindow chunk no longer exists as a separate file Status bar + Monitor bar: - Both set to h-[48px] text-base px-6 (48px height, 16px text) - Matching sizes for visual consistency Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
70 lines
2.2 KiB
Vue
70 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, onErrorCaptured, defineAsyncComponent } from "vue";
|
|
import { useAppStore } from "@/stores/app.store";
|
|
import UnlockLayout from "@/layouts/UnlockLayout.vue";
|
|
import ToolWindow from "@/components/tools/ToolWindow.vue";
|
|
|
|
const MainLayout = defineAsyncComponent({
|
|
loader: () => import("@/layouts/MainLayout.vue"),
|
|
onError(error) { console.error("[App] MainLayout load failed:", error); },
|
|
});
|
|
const DetachedSession = defineAsyncComponent({
|
|
loader: () => import("@/components/session/DetachedSession.vue"),
|
|
onError(error) { console.error("[App] DetachedSession load failed:", error); },
|
|
});
|
|
|
|
const app = useAppStore();
|
|
const appError = ref<string | null>(null);
|
|
|
|
// Tool window mode — detected from URL hash: #/tool/network-scanner?sessionId=abc
|
|
const isToolMode = ref(false);
|
|
const isDetachedMode = ref(false);
|
|
const toolName = ref("");
|
|
const toolSessionId = ref("");
|
|
|
|
onErrorCaptured((err) => {
|
|
appError.value = err instanceof Error ? err.message : String(err);
|
|
console.error("[App] Uncaught error:", err);
|
|
return false;
|
|
});
|
|
|
|
onMounted(async () => {
|
|
const hash = window.location.hash;
|
|
if (hash.startsWith("#/tool/")) {
|
|
isToolMode.value = true;
|
|
const rest = hash.substring(7); // after "#/tool/"
|
|
const [name, query] = rest.split("?");
|
|
toolName.value = name;
|
|
toolSessionId.value = new URLSearchParams(query || "").get("sessionId") || "";
|
|
} else if (hash.startsWith("#/detached-session")) {
|
|
isDetachedMode.value = true;
|
|
} else {
|
|
await app.checkVaultState();
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<!-- Error display for debugging -->
|
|
<div v-if="appError" class="fixed inset-0 z-50 flex items-center justify-center bg-[#0d1117] text-red-400 p-8 text-sm font-mono whitespace-pre-wrap">
|
|
{{ appError }}
|
|
</div>
|
|
<!-- Detached session window mode -->
|
|
<DetachedSession v-else-if="isDetachedMode" />
|
|
<!-- Tool popup window mode -->
|
|
<ToolWindow v-else-if="isToolMode" :tool="toolName" :session-id="toolSessionId" />
|
|
<!-- Normal app mode -->
|
|
<div v-else class="app-root">
|
|
<UnlockLayout v-if="!app.isUnlocked" />
|
|
<MainLayout v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-root {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
</style>
|