|
var __defProp = Object.defineProperty; |
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); |
|
import { d as defineComponent, aD as useI18n, r as ref, o as onMounted, g as openBlock, h as createElementBlock, A as createBaseVNode, aw as createTextVNode, a6 as toDisplayString, z as unref, j as createCommentVNode, i as createVNode, D as script, bM as BaseTerminal, P as pushScopeId, Q as popScopeId, bN as electronAPI, _ as _export_sfc } from "./index-CoOvI8ZH.js"; |
|
import { P as ProgressStatus } from "./index-BppSBmxJ.js"; |
|
const _withScopeId = __name((n) => (pushScopeId("data-v-f5429be7"), n = n(), popScopeId(), n), "_withScopeId"); |
|
const _hoisted_1 = { class: "font-sans flex flex-col justify-center items-center h-screen m-0 text-neutral-300 bg-neutral-900 dark-theme pointer-events-auto" }; |
|
const _hoisted_2 = { class: "text-2xl font-bold" }; |
|
const _hoisted_3 = { key: 0 }; |
|
const _hoisted_4 = { |
|
key: 0, |
|
class: "flex items-center my-4 gap-2" |
|
}; |
|
const _sfc_main = defineComponent({ |
|
__name: "ServerStartView", |
|
setup(__props) { |
|
const electron = electronAPI(); |
|
const { t } = useI18n(); |
|
const status = ref(ProgressStatus.INITIAL_STATE); |
|
const electronVersion = ref(""); |
|
let xterm; |
|
const updateProgress = __name(({ status: newStatus }) => { |
|
status.value = newStatus; |
|
xterm?.clear(); |
|
}, "updateProgress"); |
|
const terminalCreated = __name(({ terminal, useAutoSize }, root) => { |
|
xterm = terminal; |
|
useAutoSize(root, true, true); |
|
electron.onLogMessage((message) => { |
|
terminal.write(message); |
|
}); |
|
terminal.options.cursorBlink = false; |
|
terminal.options.disableStdin = true; |
|
terminal.options.cursorInactiveStyle = "block"; |
|
}, "terminalCreated"); |
|
const reinstall = __name(() => electron.reinstall(), "reinstall"); |
|
const reportIssue = __name(() => { |
|
window.open("https://forum.comfy.org/c/v1-feedback/", "_blank"); |
|
}, "reportIssue"); |
|
const openLogs = __name(() => electron.openLogsFolder(), "openLogs"); |
|
onMounted(async () => { |
|
electron.sendReady(); |
|
electron.onProgressUpdate(updateProgress); |
|
electronVersion.value = await electron.getElectronVersion(); |
|
}); |
|
return (_ctx, _cache) => { |
|
return openBlock(), createElementBlock("div", _hoisted_1, [ |
|
createBaseVNode("h2", _hoisted_2, [ |
|
createTextVNode(toDisplayString(unref(t)(`serverStart.process.${status.value}`)) + " ", 1), |
|
status.value === unref(ProgressStatus).ERROR ? (openBlock(), createElementBlock("span", _hoisted_3, " v" + toDisplayString(electronVersion.value), 1)) : createCommentVNode("", true) |
|
]), |
|
status.value === unref(ProgressStatus).ERROR ? (openBlock(), createElementBlock("div", _hoisted_4, [ |
|
createVNode(unref(script), { |
|
icon: "pi pi-flag", |
|
severity: "secondary", |
|
label: unref(t)("serverStart.reportIssue"), |
|
onClick: reportIssue |
|
}, null, 8, ["label"]), |
|
createVNode(unref(script), { |
|
icon: "pi pi-file", |
|
severity: "secondary", |
|
label: unref(t)("serverStart.openLogs"), |
|
onClick: openLogs |
|
}, null, 8, ["label"]), |
|
createVNode(unref(script), { |
|
icon: "pi pi-refresh", |
|
label: unref(t)("serverStart.reinstall"), |
|
onClick: reinstall |
|
}, null, 8, ["label"]) |
|
])) : createCommentVNode("", true), |
|
createVNode(BaseTerminal, { onCreated: terminalCreated }) |
|
]); |
|
}; |
|
} |
|
}); |
|
const ServerStartView = _export_sfc(_sfc_main, [["__scopeId", "data-v-f5429be7"]]); |
|
export { |
|
ServerStartView as default |
|
}; |
|
|
|
|