mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
118 lines
5.0 KiB
JavaScript
Vendored
Generated
118 lines
5.0 KiB
JavaScript
Vendored
Generated
var __defProp = Object.defineProperty;
|
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
import { a as defineComponent, r as ref, ck as FilterMatchMode, co as useExtensionStore, u as useSettingStore, o as onMounted, q as computed, f as openBlock, x as createBlock, y as withCtx, h as createVNode, cl as SearchBox, z as unref, bW as script, A as createBaseVNode, g as createElementBlock, Q as renderList, a8 as toDisplayString, ay as createTextVNode, P as Fragment, D as script$1, i as createCommentVNode, c5 as script$3, cm as _sfc_main$1 } from "./index-DIU5yZe9.js";
|
|
import { s as script$2, a as script$4 } from "./index-D3u7l7ha.js";
|
|
import "./index-d698Brhb.js";
|
|
const _hoisted_1 = { class: "flex justify-end" };
|
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
__name: "ExtensionPanel",
|
|
setup(__props) {
|
|
const filters = ref({
|
|
global: { value: "", matchMode: FilterMatchMode.CONTAINS }
|
|
});
|
|
const extensionStore = useExtensionStore();
|
|
const settingStore = useSettingStore();
|
|
const editingEnabledExtensions = ref({});
|
|
onMounted(() => {
|
|
extensionStore.extensions.forEach((ext) => {
|
|
editingEnabledExtensions.value[ext.name] = extensionStore.isExtensionEnabled(ext.name);
|
|
});
|
|
});
|
|
const changedExtensions = computed(() => {
|
|
return extensionStore.extensions.filter(
|
|
(ext) => editingEnabledExtensions.value[ext.name] !== extensionStore.isExtensionEnabled(ext.name)
|
|
);
|
|
});
|
|
const hasChanges = computed(() => {
|
|
return changedExtensions.value.length > 0;
|
|
});
|
|
const updateExtensionStatus = /* @__PURE__ */ __name(() => {
|
|
const editingDisabledExtensionNames = Object.entries(
|
|
editingEnabledExtensions.value
|
|
).filter(([_, enabled]) => !enabled).map(([name]) => name);
|
|
settingStore.set("Comfy.Extension.Disabled", [
|
|
...extensionStore.inactiveDisabledExtensionNames,
|
|
...editingDisabledExtensionNames
|
|
]);
|
|
}, "updateExtensionStatus");
|
|
const applyChanges = /* @__PURE__ */ __name(() => {
|
|
window.location.reload();
|
|
}, "applyChanges");
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createBlock(_sfc_main$1, {
|
|
value: "Extension",
|
|
class: "extension-panel"
|
|
}, {
|
|
header: withCtx(() => [
|
|
createVNode(SearchBox, {
|
|
modelValue: filters.value["global"].value,
|
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => filters.value["global"].value = $event),
|
|
placeholder: _ctx.$t("g.searchExtensions") + "..."
|
|
}, null, 8, ["modelValue", "placeholder"]),
|
|
hasChanges.value ? (openBlock(), createBlock(unref(script), {
|
|
key: 0,
|
|
severity: "info",
|
|
"pt:text": "w-full"
|
|
}, {
|
|
default: withCtx(() => [
|
|
createBaseVNode("ul", null, [
|
|
(openBlock(true), createElementBlock(Fragment, null, renderList(changedExtensions.value, (ext) => {
|
|
return openBlock(), createElementBlock("li", {
|
|
key: ext.name
|
|
}, [
|
|
createBaseVNode("span", null, toDisplayString(unref(extensionStore).isExtensionEnabled(ext.name) ? "[-]" : "[+]"), 1),
|
|
createTextVNode(" " + toDisplayString(ext.name), 1)
|
|
]);
|
|
}), 128))
|
|
]),
|
|
createBaseVNode("div", _hoisted_1, [
|
|
createVNode(unref(script$1), {
|
|
label: _ctx.$t("g.reloadToApplyChanges"),
|
|
onClick: applyChanges,
|
|
outlined: "",
|
|
severity: "danger"
|
|
}, null, 8, ["label"])
|
|
])
|
|
]),
|
|
_: 1
|
|
})) : createCommentVNode("", true)
|
|
]),
|
|
default: withCtx(() => [
|
|
createVNode(unref(script$4), {
|
|
value: unref(extensionStore).extensions,
|
|
stripedRows: "",
|
|
size: "small",
|
|
filters: filters.value
|
|
}, {
|
|
default: withCtx(() => [
|
|
createVNode(unref(script$2), {
|
|
field: "name",
|
|
header: _ctx.$t("g.extensionName"),
|
|
sortable: ""
|
|
}, null, 8, ["header"]),
|
|
createVNode(unref(script$2), { pt: {
|
|
bodyCell: "flex items-center justify-end"
|
|
} }, {
|
|
body: withCtx((slotProps) => [
|
|
createVNode(unref(script$3), {
|
|
modelValue: editingEnabledExtensions.value[slotProps.data.name],
|
|
"onUpdate:modelValue": /* @__PURE__ */ __name(($event) => editingEnabledExtensions.value[slotProps.data.name] = $event, "onUpdate:modelValue"),
|
|
onChange: updateExtensionStatus
|
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
]),
|
|
_: 1
|
|
})
|
|
]),
|
|
_: 1
|
|
}, 8, ["value", "filters"])
|
|
]),
|
|
_: 1
|
|
});
|
|
};
|
|
}
|
|
});
|
|
export {
|
|
_sfc_main as default
|
|
};
|
|
//# sourceMappingURL=ExtensionPanel-ByeZ01RF.js.map
|