825 lines
52 KiB
JavaScript
825 lines
52 KiB
JavaScript
|
import { d as defineComponent, u as useCssVars, a as unref, c as computed, b as useRoute, r as ref, o as openBlock, e as createElementBlock, f as createVNode, w as withCtx, g as createBaseVNode, I as Icon, n as normalizeClass, t as toDisplayString, h as createCommentVNode, i as defineStore, j as useStorage, k as watch, l as resolveComponent, m as withKeys, F as Fragment, p as renderList, q as createBlock, s as isDark, v as histoireConfig, x as customLogos, y as useEventListener, z as isRef, A as resolveDirective, B as withDirectives, C as toggleDark, D as createTextVNode, E as pushScopeId, G as popScopeId, H as defineAsyncComponent, J as vShow, _ as __vitePreload, K as reactive, L as normalizeStyle, T as Transition, M as useTitle, N as onMounted, O as createApp, P as createPinia, Q as plugin } from "./vendor-3ab3e533.js";
|
|||
|
import { r as router, f as files, m as mapFile, t as tree, _ as _sfc_main$c } from "./GenericMountStory.vue2-2bb5633d.js";
|
|||
|
import { u as useScrollOnActive, B as BaseListItemLink, _ as _export_sfc, a as _sfc_main$b, i as isMobile, b as BaseSplitPane } from "./MobileOverlay.vue2-a3503848.js";
|
|||
|
import { u as useStoryStore } from "./story-804dabc9.js";
|
|||
|
const style$1 = "";
|
|||
|
const style = "";
|
|||
|
const __resolved__virtual_$histoireTheme = "";
|
|||
|
const _hoisted_1$a = { class: "bind-tree-margin htw-flex htw-items-center htw-gap-2 htw-pl-4 htw-min-w-0" };
|
|||
|
const _hoisted_2$6 = { class: "htw-truncate" };
|
|||
|
const _hoisted_3$5 = {
|
|||
|
key: 0,
|
|||
|
class: "htw-opacity-40 htw-text-sm"
|
|||
|
};
|
|||
|
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "StoryListItem",
|
|||
|
props: {
|
|||
|
story: null,
|
|||
|
depth: { default: 0 }
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
const props = __props;
|
|||
|
useCssVars((_ctx) => ({
|
|||
|
"444efc12": unref(filePadding),
|
|||
|
"ae892164": __props.story.iconColor
|
|||
|
}));
|
|||
|
const filePadding = computed(() => {
|
|||
|
return props.depth * 12 + "px";
|
|||
|
});
|
|||
|
const route = useRoute();
|
|||
|
const isActive = computed(() => route.params.storyId === props.story.id);
|
|||
|
const el = ref();
|
|||
|
useScrollOnActive(isActive, el);
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("div", {
|
|||
|
ref_key: "el",
|
|||
|
ref: el,
|
|||
|
"data-test-id": "story-list-item",
|
|||
|
class: "histoire-story-list-item"
|
|||
|
}, [
|
|||
|
createVNode(BaseListItemLink, {
|
|||
|
to: {
|
|||
|
name: "story",
|
|||
|
params: {
|
|||
|
storyId: __props.story.id
|
|||
|
}
|
|||
|
},
|
|||
|
class: "htw-pl-0.5 htw-pr-2 htw-py-2 md:htw-py-1.5 htw-mx-1 htw-rounded-sm"
|
|||
|
}, {
|
|||
|
default: withCtx(({ active }) => [
|
|||
|
createBaseVNode("span", _hoisted_1$a, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: __props.story.icon ?? "carbon:cube",
|
|||
|
class: normalizeClass(["htw-w-5 htw-h-5 sm:htw-w-4 sm:htw-h-4 htw-flex-none", {
|
|||
|
"htw-text-primary-500": !active && !__props.story.iconColor,
|
|||
|
"bind-icon-color": !active && __props.story.iconColor
|
|||
|
}])
|
|||
|
}, null, 8, ["icon", "class"]),
|
|||
|
createBaseVNode("span", _hoisted_2$6, toDisplayString(__props.story.title), 1)
|
|||
|
]),
|
|||
|
!__props.story.docsOnly ? (openBlock(), createElementBlock("span", _hoisted_3$5, toDisplayString(__props.story.variants.length), 1)) : createCommentVNode("", true)
|
|||
|
]),
|
|||
|
_: 1
|
|||
|
}, 8, ["to"])
|
|||
|
], 512);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const StoryListItem = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-19810958"]]);
|
|||
|
const useFolderStore = defineStore("folder", () => {
|
|||
|
const openedFolders = useStorage(
|
|||
|
"_histoire-tree-state",
|
|||
|
/* @__PURE__ */ new Map()
|
|||
|
);
|
|||
|
function getStringPath(path) {
|
|||
|
return path.join("␜");
|
|||
|
}
|
|||
|
function toggleFolder(path, defaultToggleValue = true) {
|
|||
|
const stringPath = getStringPath(path);
|
|||
|
const currentValue = openedFolders.value.get(stringPath);
|
|||
|
if (currentValue == null) {
|
|||
|
setFolderOpen(stringPath, defaultToggleValue);
|
|||
|
} else if (currentValue) {
|
|||
|
setFolderOpen(stringPath, false);
|
|||
|
} else {
|
|||
|
setFolderOpen(stringPath, true);
|
|||
|
}
|
|||
|
}
|
|||
|
function setFolderOpen(path, value) {
|
|||
|
const stringPath = typeof path === "string" ? path : getStringPath(path);
|
|||
|
openedFolders.value.set(stringPath, value);
|
|||
|
}
|
|||
|
function isFolderOpened(path, defaultValue = false) {
|
|||
|
const value = openedFolders.value.get(getStringPath(path));
|
|||
|
if (value == null) {
|
|||
|
return defaultValue;
|
|||
|
}
|
|||
|
return value;
|
|||
|
}
|
|||
|
function openFileFolders(path) {
|
|||
|
for (let pathLength = 1; pathLength < path.length; pathLength++) {
|
|||
|
setFolderOpen(path.slice(0, pathLength), true);
|
|||
|
}
|
|||
|
}
|
|||
|
const storyStore = useStoryStore();
|
|||
|
watch(() => storyStore.currentStory, (story) => {
|
|||
|
if (story) {
|
|||
|
openFileFolders(story.file.path);
|
|||
|
}
|
|||
|
});
|
|||
|
return {
|
|||
|
isFolderOpened,
|
|||
|
toggleFolder
|
|||
|
};
|
|||
|
});
|
|||
|
const _hoisted_1$9 = {
|
|||
|
"data-test-id": "story-list-folder",
|
|||
|
class: "histoire-story-list-folder"
|
|||
|
};
|
|||
|
const _hoisted_2$5 = ["onKeyup"];
|
|||
|
const _hoisted_3$4 = { class: "bind-tree-padding htw-flex htw-items-center htw-gap-2 htw-min-w-0" };
|
|||
|
const _hoisted_4$3 = { class: "htw-flex htw-flex-none htw-items-center htw-opacity-30 [.histoire-story-list-folder-button:hover_&]:htw-opacity-100 htw-ml-4 htw-w-4 htw-h-4 htw-rounded-sm htw-border htw-border-gray-500/40" };
|
|||
|
const _hoisted_5$1 = { class: "htw-truncate" };
|
|||
|
const _hoisted_6 = { key: 0 };
|
|||
|
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "StoryListFolder",
|
|||
|
props: {
|
|||
|
path: { default: () => [] },
|
|||
|
folder: null,
|
|||
|
stories: null,
|
|||
|
depth: { default: 0 }
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
const props = __props;
|
|||
|
useCssVars((_ctx) => ({
|
|||
|
"6851b0a7": unref(folderPadding)
|
|||
|
}));
|
|||
|
const folderStore = useFolderStore();
|
|||
|
const folderPath = computed(() => [...props.path, props.folder.title]);
|
|||
|
const isFolderOpen = computed(() => folderStore.isFolderOpened(folderPath.value));
|
|||
|
function toggleOpen() {
|
|||
|
folderStore.toggleFolder(folderPath.value);
|
|||
|
}
|
|||
|
const folderPadding = computed(() => {
|
|||
|
return props.depth * 12 + "px";
|
|||
|
});
|
|||
|
return (_ctx, _cache) => {
|
|||
|
const _component_StoryListFolder = resolveComponent("StoryListFolder", true);
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|||
|
createBaseVNode("div", {
|
|||
|
role: "button",
|
|||
|
tabindex: "0",
|
|||
|
class: "histoire-story-list-folder-button htw-px-0.5 htw-py-2 md:htw-py-1.5 htw-mx-1 htw-rounded-sm hover:htw-bg-primary-100 dark:hover:htw-bg-primary-900 htw-cursor-pointer htw-select-none htw-flex",
|
|||
|
onClick: toggleOpen,
|
|||
|
onKeyup: [
|
|||
|
withKeys(toggleOpen, ["enter"]),
|
|||
|
withKeys(toggleOpen, ["space"])
|
|||
|
]
|
|||
|
}, [
|
|||
|
createBaseVNode("span", _hoisted_3$4, [
|
|||
|
createBaseVNode("span", _hoisted_4$3, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: "carbon:caret-right",
|
|||
|
class: normalizeClass(["htw-w-full htw-h-full htw-transition-transform htw-duration-150", {
|
|||
|
"htw-rotate-90": unref(isFolderOpen)
|
|||
|
}])
|
|||
|
}, null, 8, ["class"])
|
|||
|
]),
|
|||
|
createBaseVNode("span", _hoisted_5$1, toDisplayString(__props.folder.title), 1)
|
|||
|
])
|
|||
|
], 40, _hoisted_2$5),
|
|||
|
unref(isFolderOpen) ? (openBlock(), createElementBlock("div", _hoisted_6, [
|
|||
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.folder.children, (element) => {
|
|||
|
return openBlock(), createElementBlock(Fragment, {
|
|||
|
key: element.title
|
|||
|
}, [
|
|||
|
element.children ? (openBlock(), createBlock(_component_StoryListFolder, {
|
|||
|
key: 0,
|
|||
|
path: unref(folderPath),
|
|||
|
folder: element,
|
|||
|
stories: __props.stories,
|
|||
|
depth: __props.depth + 1
|
|||
|
}, null, 8, ["path", "folder", "stories", "depth"])) : (openBlock(), createBlock(StoryListItem, {
|
|||
|
key: 1,
|
|||
|
story: __props.stories[element.index],
|
|||
|
depth: __props.depth + 1
|
|||
|
}, null, 8, ["story", "depth"]))
|
|||
|
], 64);
|
|||
|
}), 128))
|
|||
|
])) : createCommentVNode("", true)
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const StoryListFolder = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-2d2e4786"]]);
|
|||
|
const _hoisted_1$8 = {
|
|||
|
"data-test-id": "story-group",
|
|||
|
class: "histoire-story-group htw-my-2 first:htw-mt-0 last:htw-mb-0 htw-group"
|
|||
|
};
|
|||
|
const _hoisted_2$4 = /* @__PURE__ */ createBaseVNode("div", { class: "htw-h-[1px] htw-bg-gray-500/10 htw-mx-6 htw-mb-2 group-first:htw-hidden" }, null, -1);
|
|||
|
const _hoisted_3$3 = ["onKeyup"];
|
|||
|
const _hoisted_4$2 = { class: "htw-truncate" };
|
|||
|
const _hoisted_5 = { key: 1 };
|
|||
|
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "StoryGroup",
|
|||
|
props: {
|
|||
|
path: { default: () => [] },
|
|||
|
group: null,
|
|||
|
stories: null
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
const props = __props;
|
|||
|
const folderStore = useFolderStore();
|
|||
|
const folderPath = computed(() => [...props.path, props.group.title]);
|
|||
|
const isFolderOpen = computed(() => folderStore.isFolderOpened(folderPath.value, true));
|
|||
|
function toggleOpen() {
|
|||
|
folderStore.toggleFolder(folderPath.value, false);
|
|||
|
}
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|||
|
__props.group.title ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|||
|
_hoisted_2$4,
|
|||
|
createBaseVNode("div", {
|
|||
|
role: "button",
|
|||
|
tabindex: "0",
|
|||
|
class: "htw-px-0.5 htw-py-2 md:htw-py-1.5 htw-mx-1 htw-rounded-sm hover:htw-bg-primary-100 dark:hover:htw-bg-primary-900 htw-cursor-pointer htw-select-none htw-flex htw-items-center htw-gap-2 htw-min-w-0 htw-opacity-50 hover:htw-opacity-100",
|
|||
|
onClick: toggleOpen,
|
|||
|
onKeyup: [
|
|||
|
withKeys(toggleOpen, ["enter"]),
|
|||
|
withKeys(toggleOpen, ["space"])
|
|||
|
]
|
|||
|
}, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: unref(isFolderOpen) ? "ri:subtract-line" : "ri:add-line",
|
|||
|
class: "htw-w-4 htw-h-4 htw-ml-4 htw-rounded-sm htw-border htw-border-gray-500/40"
|
|||
|
}, null, 8, ["icon"]),
|
|||
|
createBaseVNode("span", _hoisted_4$2, toDisplayString(__props.group.title), 1)
|
|||
|
], 40, _hoisted_3$3)
|
|||
|
], 64)) : createCommentVNode("", true),
|
|||
|
unref(isFolderOpen) ? (openBlock(), createElementBlock("div", _hoisted_5, [
|
|||
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.group.children, (element) => {
|
|||
|
return openBlock(), createElementBlock(Fragment, {
|
|||
|
key: element.title
|
|||
|
}, [
|
|||
|
element.children ? (openBlock(), createBlock(StoryListFolder, {
|
|||
|
key: 0,
|
|||
|
path: unref(folderPath),
|
|||
|
folder: element,
|
|||
|
stories: __props.stories,
|
|||
|
depth: 0
|
|||
|
}, null, 8, ["path", "folder", "stories"])) : (openBlock(), createBlock(StoryListItem, {
|
|||
|
key: 1,
|
|||
|
story: __props.stories[element.index],
|
|||
|
depth: 0
|
|||
|
}, null, 8, ["story"]))
|
|||
|
], 64);
|
|||
|
}), 128))
|
|||
|
])) : createCommentVNode("", true)
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const _hoisted_1$7 = { class: "histoire-story-list htw-overflow-y-auto" };
|
|||
|
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "StoryList",
|
|||
|
props: {
|
|||
|
tree: null,
|
|||
|
stories: null
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|||
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.tree, (element) => {
|
|||
|
return openBlock(), createElementBlock(Fragment, {
|
|||
|
key: element.title
|
|||
|
}, [
|
|||
|
element.group ? (openBlock(), createBlock(_sfc_main$8, {
|
|||
|
key: 0,
|
|||
|
group: element,
|
|||
|
stories: __props.stories
|
|||
|
}, null, 8, ["group", "stories"])) : element.children ? (openBlock(), createBlock(StoryListFolder, {
|
|||
|
key: 1,
|
|||
|
folder: element,
|
|||
|
stories: __props.stories
|
|||
|
}, null, 8, ["folder", "stories"])) : (openBlock(), createBlock(StoryListItem, {
|
|||
|
key: 2,
|
|||
|
story: __props.stories[element.index]
|
|||
|
}, null, 8, ["story"]))
|
|||
|
], 64);
|
|||
|
}), 128))
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const HistoireLogoDark = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB3aWR0aD0iMTUzNiIKICAgaGVpZ2h0PSI1MTIiCiAgIHZpZXdCb3g9IjAgMCAxNTM2IDUxMiIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnNSIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcwogICAgIGlkPSJkZWZzMiIgLz4KICA8ZwogICAgIGlkPSJsYXllcjEiPgogICAgPHJlY3QKICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNTtmaWxsOiMzNGQzOTk7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlLXdpZHRoOjEuMDAzNzUiCiAgICAgICBpZD0icmVjdDEzNzIiCiAgICAgICB3aWR0aD0iMzE0LjMwOTIzIgogICAgICAgaGVpZ2h0PSI0MDYuNjA5MDEiCiAgICAgICB4PSItMjYuNTY1MDYzIgogICAgICAgeT0iMTM0Ljc1MDc5IgogICAgICAgdHJhbnNmb3JtPSJyb3RhdGUoLTIzLjgyMTI2MikiCiAgICAgICByeT0iOCIgLz4KICAgIDxyZWN0CiAgICAgICBzdHlsZT0iZmlsbDojMzRkMzk5O2ZpbGwtb3BhY2l0eToxO3N0cm9rZS13aWR0aDoxLjAwMzc1IgogICAgICAgaWQ9InJlY3Q4NTAiCiAgICAgICB3aWR0aD0iMzE0LjMwOTIzIgogICAgICAgaGVpZ2h0PSI0MDYuNjA5MDEiCiAgICAgICB4PSI3Ny41NzE4MzgiCiAgICAgICB5PSI3Mi44MDg3MDgiCiAgICAgICByeT0iOCIKICAgICAgIHRyYW5zZm9ybT0icm90YXRlKC00LjU3NDQ1MzQpIiAvPgogIDwvZz4KICA8ZwogICAgIGlkPSJsYXllcjMiPgogICAgPHBhdGgKICAgICAgIGlkPSJwYXRoMTY1Ny0zIgogICAgICAgc3R5bGU9ImRpc3BsYXk6aW5saW5lO2ZpbGw6I2FkZWRkNjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6I2FkZWRkNjtzdHJva2Utd2lkdGg6OC4zNDkyMztzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2Utb3BhY2l0eToxIgogICAgICAgZD0iTSAzNTkuMzg5NDcsMzU1Ljk1MTM0IDMyMC43MjkzNSwxNzYuNTI5NDIgMjM4LjM0NjEzLDIzOC45NDExOCBaIE0gMjczLjY0MTI0LDI3My4wNjYwOCAxNTIuNTk3ODgsMTU2LjA1NTkxIDE5MS4yNTgwNCwzMzUuNDc3ODYgWiIgLz4KICAgIDxnCiAgICAgICBhcmlhLWxhYmVsPSJIaXN0b2lyZSIKICAgICAgIGlkPSJ0ZXh0MTgyMS00IgogICAgICAgc3R5bGU9ImZvbnQtc2l6ZToyMzEuOTI2cHg7bGluZS1oZWlnaHQ6MS4yNTtmb250LWZhbWlseTpTZW47LWlua3NjYXBlLWZvbnQtc3BlY2lmaWNhdGlvbjpTZW47ZmlsbDojYWRlZGQ2O2ZpbGwtb3BhY2l0eToxO3N0cm9rZS13aWR0aDo1Ljc5ODEzIgogICAgICAgdHJhbnNmb3JtPSJtYXRyaXgoMS4xNTAwNTU2LDAsMCwxLjE1MDA1NTYsLTEwNS40MDE1NiwtMzguNDE0MjMzKSI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gNjkzLjg3NTkxLDM0NC4yNDc4MyBWIDE4MS44OTk2NCBoIDI1LjA0ODAxIHYgMTYyLjM0ODE5IHogbSAtMTA1Ljk5MDE4LDAgViAxODEuODk5NjQgaCAyNS4wNDgwMSB2IDE2Mi4zNDgxOSB6IG0gMTAuOTAwNTIsLTY4Ljg4MjAyIHYgLTI0LjEyMDMgaCAxMDYuMjIyMTEgdiAyNC4xMjAzIHoiCiAgICAgICAgIHN0eWxlPSJmb250LWZhbWlseTonTGV4ZW5kIERlY2EnOy1pbmtzY2FwZS1mb250LXNwZWNpZmljYXRpb246J0xleGVuZCBEZWNhJztmaWxsOiNhZGVkZDY7ZmlsbC1vcGFjaXR5OjEiCiAgICAgICAgIGlkPSJwYXRoMTY4NTciIC8+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gNzYyLjI5NCwzNDQuMjQ3ODMgViAyMjIuNDg2NjkgaCAyMy44ODgzOCB2IDEyMS43NjExNCB6IG0gMTEuNTk2MywtMTQ4LjY2NDU2IHEgLTcuNjUzNTYsMCAtMTEuODI4MjIsLTMuOTQyNzQgLTQuMTc0NjcsLTMuOTQyNzQgLTQuMTc0NjcsLTExLjEzMjQ1IDAsLTYuNzI1ODUgNC4xNzQ2NywtMTAuOTAwNTIgNC40MDY1OSwtNC4xNzQ2NyAxMS44MjgyMiwtNC4xNzQ2NyA3LjY1MzU2LDAgMTEuODI4MjMsMy45NDI3NCA0LjE3NDY2LDMuOTQyNzUgNC4xNzQ2NiwxMS4xMzI0NSAwLDYuNzI1ODUgLTQuNDA2NTksMTAuOTAwNTIgLTQuMTc0NjcsNC4xNzQ2NyAtMTEuNTk2Myw0LjE3NDY3IHoiCiAgICAgICAgIHN0eWxlPSJmb250LWZhbWlseTonTGV4ZW5kIERlY2EnOy1pbmtzY2FwZS1mb250LXNwZWNpZmljYXRpb246J0xleGVuZCBEZWNhJztmaWxsOiNhZGVkZDY7ZmlsbC1vcGFjaXR5OjEiCiAgICAgICAgIGlkPSJwYXRoMTY4NTkiIC8+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Im0gODYzLjQxMzcxLDM0Ni41NjcwOSBxIC0xNS4zMDcxMSwwIC0yNy41OTkxOSwtNS4zMzQyOSAtMTIuMjkyMDgsLTUuMzM0MyAtMjAuNDA5NDksLTE1Ljc3MDk3IGwgMTYuMjM0ODIsLTEzLjkxNTU2IHEgNi45NTc3OCw4LjExNzQxIDE1LjA3NTE5LDExLjgyODIyIDguMzQ5MzQsMy40Nzg4OSAxOC43ODYwMSwzLjQ3ODg5IDQuMTc0NjYsMCA3LjY1MzU1LC0wLjkyNzcgMy43MTA4MiwtMS4xNTk2MyA2LjI2MjAxLC0zLjI0Njk2IDIuNzgzMTEsLTIuMDg3MzQgNC4xNzQ2NiwtNC44NzA0NSAxLjM5MTU2LC0zLjAxNTA0IDEuMzkxNTYsLTYuNDkzOTMgMCwtNi4wMzAwNyAtNC40MDY1OSwtOS43NDA4OSAtMi4zMTkyNiwtMS42MjM0OCAtNy40MjE2NCwtMy40Nzg4OSAtNC44NzA0NCwtMi4wODczMyAtMTIuNzU1OTMsLTQuMTc0NjcgLTEzLjQ1MTcsLTMuNDc4ODkgLTIyLjAzMjk3LC03Ljg4NTQ4IC04LjU4MTI2LC00LjQwNjYgLTEzLjIxOTc4LC05Ljk3MjgyIC0zLjQ3ODg5LC00LjQwNjU5IC01LjEwMjM3LC05LjUwODk3IC0xLjYyMzQ4LC01LjMzNDI5IC0xLjYyMzQ4LC0xMS41OTYyOSAwLC03LjY1MzU2IDMuMjQ2OTYsLTEzLjkxNTU2IDMuNDc4ODksLTYuNDkzOTMgOS4yNzcwNCwtMTEuMTMyNDUgNi4wMzAwOCwtNC44NzA0NSAxMy45MTU1NiwtNy40MjE
|
|||
|
const HistoireLogoLight = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB3aWR0aD0iMTUzNiIKICAgaGVpZ2h0PSI1MTIiCiAgIHZpZXdCb3g9IjAgMCAxNTM2IDUxMiIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnNSIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcwogICAgIGlkPSJkZWZzMiIgLz4KICA8ZwogICAgIGlkPSJsYXllcjEiPgogICAgPHJlY3QKICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNTtmaWxsOiMzNGQzOTk7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlLXdpZHRoOjEuMDAzNzUiCiAgICAgICBpZD0icmVjdDEzNzIiCiAgICAgICB3aWR0aD0iMzE0LjMwOTIzIgogICAgICAgaGVpZ2h0PSI0MDYuNjA5MDEiCiAgICAgICB4PSItMjYuNTY1MDYzIgogICAgICAgeT0iMTM0Ljc1MDc5IgogICAgICAgdHJhbnNmb3JtPSJyb3RhdGUoLTIzLjgyMTI2MikiCiAgICAgICByeT0iOCIgLz4KICAgIDxyZWN0CiAgICAgICBzdHlsZT0iZmlsbDojMzRkMzk5O2ZpbGwtb3BhY2l0eToxO3N0cm9rZS13aWR0aDoxLjAwMzc1IgogICAgICAgaWQ9InJlY3Q4NTAiCiAgICAgICB3aWR0aD0iMzE0LjMwOTIzIgogICAgICAgaGVpZ2h0PSI0MDYuNjA5MDEiCiAgICAgICB4PSI3Ny41NzE4MzgiCiAgICAgICB5PSI3Mi44MDg3MDgiCiAgICAgICByeT0iOCIKICAgICAgIHRyYW5zZm9ybT0icm90YXRlKC00LjU3NDQ1MzQpIiAvPgogIDwvZz4KICA8ZwogICAgIGlkPSJsYXllcjMiPgogICAgPHBhdGgKICAgICAgIGlkPSJwYXRoMTY1Ny0zIgogICAgICAgc3R5bGU9ImRpc3BsYXk6aW5saW5lO2ZpbGw6I2FkZWRkNjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6I2FkZWRkNjtzdHJva2Utd2lkdGg6OC4zNDkyMztzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2Utb3BhY2l0eToxIgogICAgICAgZD0iTSAzNTkuMzg5NDcsMzU1Ljk1MTM0IDMyMC43MjkzNSwxNzYuNTI5NDIgMjM4LjM0NjEzLDIzOC45NDExOCBaIE0gMjczLjY0MTI0LDI3My4wNjYwOCAxNTIuNTk3ODgsMTU2LjA1NTkxIDE5MS4yNTgwNCwzMzUuNDc3ODYgWiIgLz4KICAgIDxnCiAgICAgICBhcmlhLWxhYmVsPSJIaXN0b2lyZSIKICAgICAgIGlkPSJ0ZXh0MTgyMSIKICAgICAgIHN0eWxlPSJmb250LXNpemU6MjMxLjkyNnB4O2xpbmUtaGVpZ2h0OjEuMjU7Zm9udC1mYW1pbHk6U2VuOy1pbmtzY2FwZS1mb250LXNwZWNpZmljYXRpb246U2VuO2ZpbGw6IzJiYzc4ZTtzdHJva2Utd2lkdGg6NS43OTgxMztmaWxsLW9wYWNpdHk6MSIKICAgICAgIHRyYW5zZm9ybT0ibWF0cml4KDEuMTUwMDU1NiwwLDAsMS4xNTAwNTU2LC0xMDUuNDAxNTYsLTM4LjQxNDIzMykiPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDY5My44NzU5MSwzNDQuMjQ3ODMgViAxODEuODk5NjQgaCAyNS4wNDgwMSB2IDE2Mi4zNDgxOSB6IG0gLTEwNS45OTAxOCwwIFYgMTgxLjg5OTY0IGggMjUuMDQ4MDEgdiAxNjIuMzQ4MTkgeiBtIDEwLjkwMDUyLC02OC44ODIwMiB2IC0yNC4xMjAzIGggMTA2LjIyMjExIHYgMjQuMTIwMyB6IgogICAgICAgICBzdHlsZT0iZm9udC1mYW1pbHk6J0xleGVuZCBEZWNhJzstaW5rc2NhcGUtZm9udC1zcGVjaWZpY2F0aW9uOidMZXhlbmQgRGVjYSc7ZmlsbDojMmJjNzhlO2ZpbGwtb3BhY2l0eToxIgogICAgICAgICBpZD0icGF0aDE2ODU3IiAvPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDc2Mi4yOTQsMzQ0LjI0NzgzIFYgMjIyLjQ4NjY5IGggMjMuODg4MzggdiAxMjEuNzYxMTQgeiBtIDExLjU5NjMsLTE0OC42NjQ1NiBxIC03LjY1MzU2LDAgLTExLjgyODIyLC0zLjk0Mjc0IC00LjE3NDY3LC0zLjk0Mjc0IC00LjE3NDY3LC0xMS4xMzI0NSAwLC02LjcyNTg1IDQuMTc0NjcsLTEwLjkwMDUyIDQuNDA2NTksLTQuMTc0NjcgMTEuODI4MjIsLTQuMTc0NjcgNy42NTM1NiwwIDExLjgyODIzLDMuOTQyNzQgNC4xNzQ2NiwzLjk0Mjc1IDQuMTc0NjYsMTEuMTMyNDUgMCw2LjcyNTg1IC00LjQwNjU5LDEwLjkwMDUyIC00LjE3NDY3LDQuMTc0NjcgLTExLjU5NjMsNC4xNzQ2NyB6IgogICAgICAgICBzdHlsZT0iZm9udC1mYW1pbHk6J0xleGVuZCBEZWNhJzstaW5rc2NhcGUtZm9udC1zcGVjaWZpY2F0aW9uOidMZXhlbmQgRGVjYSc7ZmlsbDojMmJjNzhlO2ZpbGwtb3BhY2l0eToxIgogICAgICAgICBpZD0icGF0aDE2ODU5IiAvPgogICAgICA8cGF0aAogICAgICAgICBkPSJtIDg2My40MTM3MSwzNDYuNTY3MDkgcSAtMTUuMzA3MTEsMCAtMjcuNTk5MTksLTUuMzM0MjkgLTEyLjI5MjA4LC01LjMzNDMgLTIwLjQwOTQ5LC0xNS43NzA5NyBsIDE2LjIzNDgyLC0xMy45MTU1NiBxIDYuOTU3NzgsOC4xMTc0MSAxNS4wNzUxOSwxMS44MjgyMiA4LjM0OTM0LDMuNDc4ODkgMTguNzg2MDEsMy40Nzg4OSA0LjE3NDY2LDAgNy42NTM1NSwtMC45Mjc3IDMuNzEwODIsLTEuMTU5NjMgNi4yNjIwMSwtMy4yNDY5NiAyLjc4MzExLC0yLjA4NzM0IDQuMTc0NjYsLTQuODcwNDUgMS4zOTE1NiwtMy4wMTUwNCAxLjM5MTU2LC02LjQ5MzkzIDAsLTYuMDMwMDcgLTQuNDA2NTksLTkuNzQwODkgLTIuMzE5MjYsLTEuNjIzNDggLTcuNDIxNjQsLTMuNDc4ODkgLTQuODcwNDQsLTIuMDg3MzMgLTEyLjc1NTkzLC00LjE3NDY3IC0xMy40NTE3LC0zLjQ3ODg5IC0yMi4wMzI5NywtNy44ODU0OCAtOC41ODEyNiwtNC40MDY2IC0xMy4yMTk3OCwtOS45NzI4MiAtMy40Nzg4OSwtNC40MDY1OSAtNS4xMDIzNywtOS41MDg5NyAtMS42MjM0OCwtNS4zMzQyOSAtMS42MjM0OCwtMTEuNTk2MjkgMCwtNy42NTM1NiAzLjI0Njk2LC0xMy45MTU1NiAzLjQ3ODg5LC02LjQ5MzkzIDkuMjc3MDQsLTExLjEzMjQ1IDYuMDMwMDgsLTQuODcwNDUgMTMuOTE1NTYsLTcuNDIxNj
|
|||
|
const _hoisted_1$6 = ["src", "alt"];
|
|||
|
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "AppLogo",
|
|||
|
setup(__props) {
|
|||
|
const logoUrl = computed(() => {
|
|||
|
var _a, _b;
|
|||
|
if (isDark.value) {
|
|||
|
return ((_a = histoireConfig.theme.logo) == null ? void 0 : _a.dark) ? customLogos.dark : HistoireLogoDark;
|
|||
|
}
|
|||
|
return ((_b = histoireConfig.theme.logo) == null ? void 0 : _b.light) ? customLogos.light : HistoireLogoLight;
|
|||
|
});
|
|||
|
const altText = computed(() => histoireConfig.theme.title + " logo");
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("img", {
|
|||
|
class: "histoire-app-logo",
|
|||
|
src: unref(logoUrl),
|
|||
|
alt: unref(altText)
|
|||
|
}, null, 8, _hoisted_1$6);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const isMac = navigator.platform.toLowerCase().includes("mac");
|
|||
|
function onKeyboardShortcut(shortcut, handler, options = {}) {
|
|||
|
useEventListener(options.event ?? "keydown", (event) => {
|
|||
|
if (isMatchingShortcut(isRef(shortcut) ? shortcut.value : shortcut)) {
|
|||
|
handler(event);
|
|||
|
}
|
|||
|
});
|
|||
|
}
|
|||
|
const modifiers = {
|
|||
|
ctrl: { key: "Control", pressed: false },
|
|||
|
alt: { key: "Alt", pressed: false },
|
|||
|
shift: { key: "Shift", pressed: false },
|
|||
|
meta: { key: "Meta", pressed: false }
|
|||
|
};
|
|||
|
const pressedKeys = /* @__PURE__ */ new Set();
|
|||
|
window.addEventListener("keydown", (event) => {
|
|||
|
for (const i in modifiers) {
|
|||
|
const mod = modifiers[i];
|
|||
|
if (mod.key === event.key) {
|
|||
|
mod.pressed = true;
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
pressedKeys.add(event.key.toLocaleLowerCase());
|
|||
|
});
|
|||
|
window.addEventListener("keyup", (event) => {
|
|||
|
requestAnimationFrame(() => {
|
|||
|
pressedKeys.clear();
|
|||
|
for (const i in modifiers) {
|
|||
|
const mod = modifiers[i];
|
|||
|
if (mod.key === event.key) {
|
|||
|
mod.pressed = false;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
window.addEventListener("blur", () => {
|
|||
|
pressedKeys.clear();
|
|||
|
for (const i in modifiers) {
|
|||
|
const mod = modifiers[i];
|
|||
|
mod.pressed = false;
|
|||
|
}
|
|||
|
});
|
|||
|
function isMatchingShortcut(shortcut) {
|
|||
|
for (const combination of shortcut) {
|
|||
|
if (isMatchingCombination(combination.toLowerCase())) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
function isMatchingCombination(combination) {
|
|||
|
const splitted = combination.split("+").map((key) => key.trim());
|
|||
|
const targetKey = splitted.pop();
|
|||
|
for (const mod in modifiers) {
|
|||
|
const containsMod = splitted.includes(mod);
|
|||
|
const isPressed = modifiers[mod].pressed;
|
|||
|
if (containsMod !== isPressed) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
return pressedKeys.has(targetKey);
|
|||
|
}
|
|||
|
function formatKey(key) {
|
|||
|
key = key.toLowerCase();
|
|||
|
if (key === "ctrl") {
|
|||
|
return isMac ? "^" : "Ctrl";
|
|||
|
}
|
|||
|
if (key === "alt") {
|
|||
|
return isMac ? "⎇" : "Alt";
|
|||
|
}
|
|||
|
if (key === "shift") {
|
|||
|
return "⇧";
|
|||
|
}
|
|||
|
if (key === "meta") {
|
|||
|
return "⌘";
|
|||
|
}
|
|||
|
if (key === "enter") {
|
|||
|
return "⏎";
|
|||
|
}
|
|||
|
return key.charAt(0).toUpperCase() + key.substring(1).toLowerCase();
|
|||
|
}
|
|||
|
function makeTooltip(descriptionHtml, keyboardShortcut) {
|
|||
|
return {
|
|||
|
content: `<div>${descriptionHtml}</div><div class="htw-flex htw-items-center htw-gap-1 htw-mt-2 htw-text-sm">${genKeyboardShortcutHtml(keyboardShortcut({ isMac }))}</div>`,
|
|||
|
html: true
|
|||
|
};
|
|||
|
}
|
|||
|
function genKeyboardShortcutHtml(shortcut) {
|
|||
|
return `<span class="htw-border htw-border-gray-600 htw-px-1 htw-rounded-sm htw-text-gray-400">${shortcut.split("+").map((k) => formatKey(k.trim())).join(" ")}</span>`;
|
|||
|
}
|
|||
|
const _hoisted_1$5 = { class: "histoire-app-header htw-px-4 htw-h-16 htw-flex htw-items-center htw-gap-2" };
|
|||
|
const _hoisted_2$3 = { class: "htw-py-3 sm:htw-py-4 htw-flex-1 htw-h-full htw-flex htw-items-center htw-pr-2" };
|
|||
|
const _hoisted_3$2 = ["href"];
|
|||
|
const _hoisted_4$1 = { class: "htw-ml-auto htw-flex-none htw-flex" };
|
|||
|
const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "AppHeader",
|
|||
|
emits: {
|
|||
|
search: () => true
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
const themeIcon = computed(() => {
|
|||
|
return isDark.value ? "carbon:moon" : "carbon:sun";
|
|||
|
});
|
|||
|
onKeyboardShortcut(["ctrl+shift+d", "meta+shift+d"], (event) => {
|
|||
|
event.preventDefault();
|
|||
|
toggleDark();
|
|||
|
});
|
|||
|
return (_ctx, _cache) => {
|
|||
|
var _a;
|
|||
|
const _directive_tooltip = resolveDirective("tooltip");
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|||
|
createBaseVNode("div", _hoisted_2$3, [
|
|||
|
createBaseVNode("a", {
|
|||
|
href: (_a = unref(histoireConfig).theme) == null ? void 0 : _a.logoHref,
|
|||
|
target: "_blank",
|
|||
|
class: "htw-w-full htw-h-full htw-flex htw-items-center"
|
|||
|
}, [
|
|||
|
createVNode(_sfc_main$6, { class: "htw-max-w-full htw-max-h-full" })
|
|||
|
], 8, _hoisted_3$2)
|
|||
|
]),
|
|||
|
createBaseVNode("div", _hoisted_4$1, [
|
|||
|
withDirectives((openBlock(), createElementBlock("a", {
|
|||
|
class: "htw-p-2 sm:htw-p-1 hover:htw-text-primary-500 dark:hover:htw-text-primary-400 htw-cursor-pointer htw-text-gray-900 dark:htw-text-gray-100",
|
|||
|
"data-test-id": "search-btn",
|
|||
|
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("search"))
|
|||
|
}, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: "carbon:search",
|
|||
|
class: "htw-w-6 htw-h-6 sm:htw-w-4 sm:htw-h-4"
|
|||
|
})
|
|||
|
])), [
|
|||
|
[_directive_tooltip, unref(makeTooltip)("Search", ({ isMac: isMac2 }) => isMac2 ? "meta+k" : "ctrl+k")]
|
|||
|
]),
|
|||
|
!unref(histoireConfig).theme.hideColorSchemeSwitch ? withDirectives((openBlock(), createElementBlock("a", {
|
|||
|
key: 0,
|
|||
|
class: "htw-p-2 sm:htw-p-1 hover:htw-text-primary-500 dark:hover:htw-text-primary-400 htw-cursor-pointer htw-text-gray-900 dark:htw-text-gray-100",
|
|||
|
onClick: _cache[1] || (_cache[1] = ($event) => unref(toggleDark)())
|
|||
|
}, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: unref(themeIcon),
|
|||
|
class: "htw-w-6 htw-h-6 sm:htw-w-4 sm:htw-h-4"
|
|||
|
}, null, 8, ["icon"])
|
|||
|
])), [
|
|||
|
[_directive_tooltip, unref(makeTooltip)("Toggle dark mode", ({ isMac: isMac2 }) => isMac2 ? "meta+shift+d" : "ctrl+shift+d")]
|
|||
|
]) : createCommentVNode("", true)
|
|||
|
])
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
function getCommandContext() {
|
|||
|
const storyStore = useStoryStore();
|
|||
|
return {
|
|||
|
route: router.currentRoute.value,
|
|||
|
currentStory: storyStore.currentStory,
|
|||
|
currentVariant: storyStore.currentVariant
|
|||
|
};
|
|||
|
}
|
|||
|
const useCommandStore = defineStore("command", () => {
|
|||
|
const selectedCommand = ref(null);
|
|||
|
const showPromptsModal = ref(false);
|
|||
|
function activateCommand(command) {
|
|||
|
var _a, _b;
|
|||
|
selectedCommand.value = command;
|
|||
|
if ((_a = command.prompts) == null ? void 0 : _a.length) {
|
|||
|
showPromptsModal.value = true;
|
|||
|
} else {
|
|||
|
((_b = command.getParams) == null ? void 0 : _b.call(command, getCommandContext())) ?? {};
|
|||
|
}
|
|||
|
}
|
|||
|
return {
|
|||
|
selectedCommand,
|
|||
|
showPromptsModal,
|
|||
|
activateCommand
|
|||
|
};
|
|||
|
});
|
|||
|
const _withScopeId = (n) => (pushScopeId("data-v-36846ccf"), n = n(), popScopeId(), n);
|
|||
|
const _hoisted_1$4 = { class: "histoire-breadcrumb" };
|
|||
|
const _hoisted_2$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createBaseVNode("span", { class: "htw-opacity-40" }, " / ", -1));
|
|||
|
const _hoisted_3$1 = { class: "htw-flex htw-items-center htw-gap-2" };
|
|||
|
const _hoisted_4 = { class: "htw-opacity-40 htw-text-sm" };
|
|||
|
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "Breadcrumb",
|
|||
|
props: {
|
|||
|
tree: null,
|
|||
|
stories: null
|
|||
|
},
|
|||
|
setup(__props) {
|
|||
|
useCssVars((_ctx) => {
|
|||
|
var _a;
|
|||
|
return {
|
|||
|
"5792748b": (_a = unref(story)) == null ? void 0 : _a.iconColor
|
|||
|
};
|
|||
|
});
|
|||
|
const storyStore = useStoryStore();
|
|||
|
const story = computed(() => storyStore.currentStory);
|
|||
|
const folders = computed(() => {
|
|||
|
return story.value.file.path.slice(0, -1);
|
|||
|
});
|
|||
|
const isMenuOpened = ref(false);
|
|||
|
function openMenu() {
|
|||
|
isMenuOpened.value = true;
|
|||
|
}
|
|||
|
function closeMenu() {
|
|||
|
isMenuOpened.value = false;
|
|||
|
}
|
|||
|
watch(story, () => {
|
|||
|
isMenuOpened.value = false;
|
|||
|
});
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock(Fragment, null, [
|
|||
|
createBaseVNode("div", _hoisted_1$4, [
|
|||
|
createBaseVNode("a", {
|
|||
|
class: "htw-px-6 htw-h-12 hover:htw-text-primary-500 dark:hover:htw-text-primary-400 htw-cursor-pointer htw-flex htw-gap-2 htw-flex-wrap htw-w-full htw-items-center",
|
|||
|
onClick: openMenu
|
|||
|
}, [
|
|||
|
unref(story) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|||
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(folders), (file, key) => {
|
|||
|
return openBlock(), createElementBlock(Fragment, { key }, [
|
|||
|
createBaseVNode("span", null, toDisplayString(file), 1),
|
|||
|
_hoisted_2$2
|
|||
|
], 64);
|
|||
|
}), 128)),
|
|||
|
createBaseVNode("span", _hoisted_3$1, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: unref(story).icon ?? "carbon:cube",
|
|||
|
class: normalizeClass(["htw-w-5 htw-h-5 htw-flex-none", {
|
|||
|
"htw-text-primary-500": !unref(story).iconColor,
|
|||
|
"bind-icon-color": unref(story).iconColor
|
|||
|
}])
|
|||
|
}, null, 8, ["icon", "class"]),
|
|||
|
createTextVNode(" " + toDisplayString(unref(story).title) + " ", 1),
|
|||
|
createBaseVNode("span", _hoisted_4, toDisplayString(unref(story).variants.length), 1)
|
|||
|
])
|
|||
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|||
|
createTextVNode(" Select a story... ")
|
|||
|
], 64)),
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: "carbon:chevron-sort",
|
|||
|
class: "htw-w-5 htw-h-5 htw-shrink-0 htw-ml-auto"
|
|||
|
})
|
|||
|
])
|
|||
|
]),
|
|||
|
createVNode(_sfc_main$b, {
|
|||
|
title: "Select a story",
|
|||
|
opened: isMenuOpened.value,
|
|||
|
onClose: closeMenu
|
|||
|
}, {
|
|||
|
default: withCtx(() => [
|
|||
|
createVNode(_sfc_main$7, {
|
|||
|
tree: __props.tree,
|
|||
|
stories: __props.stories,
|
|||
|
class: "htw-flex-1 htw-overflow-y-scroll"
|
|||
|
}, null, 8, ["tree", "stories"])
|
|||
|
]),
|
|||
|
_: 1
|
|||
|
}, 8, ["opened"])
|
|||
|
], 64);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const Breadcrumb = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-36846ccf"]]);
|
|||
|
const _hoisted_1$3 = { class: "histoire-search-loading htw-flex htw-items-center htw-gap-4 htw-pl-6 htw-border htw-border-transparent focus-visible:htw-border-primary-500 htw-h-[51px] htw-opacity-30" };
|
|||
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "SearchLoading",
|
|||
|
setup(__props) {
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|||
|
createVNode(unref(Icon), {
|
|||
|
icon: "carbon:search",
|
|||
|
class: "flex-none htw-w-4 htw-h-4"
|
|||
|
}),
|
|||
|
createTextVNode(" Loading... ")
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const _hoisted_1$2 = {
|
|||
|
class: "histoire-search-modal htw-fixed htw-inset-0 htw-bg-white/80 dark:htw-bg-gray-900/80 htw-z-20",
|
|||
|
"data-test-id": "search-modal"
|
|||
|
};
|
|||
|
const _hoisted_2$1 = { class: "htw-bg-white dark:htw-bg-gray-900 md:htw-mt-16 md:htw-mx-auto htw-w-screen htw-max-w-[512px] htw-shadow-xl htw-border htw-border-gray-200 dark:htw-border-gray-750 htw-rounded-lg htw-relative htw-divide-y htw-divide-gray-200 dark:htw-divide-gray-850" };
|
|||
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "SearchModal",
|
|||
|
props: {
|
|||
|
shown: {
|
|||
|
type: Boolean,
|
|||
|
default: false
|
|||
|
}
|
|||
|
},
|
|||
|
emits: {
|
|||
|
close: () => true
|
|||
|
},
|
|||
|
setup(__props, { emit }) {
|
|||
|
const SearchPane = defineAsyncComponent({
|
|||
|
loader: () => __vitePreload(() => import("./SearchPane.vue-c31f94e5.js"), true ? ["assets/SearchPane.vue-c31f94e5.js","assets/vendor-3ab3e533.js","assets/story-804dabc9.js","assets/GenericMountStory.vue2-2bb5633d.js","assets/BaseEmpty.vue-045cbb89.js","assets/MobileOverlay.vue2-a3503848.js"] : void 0),
|
|||
|
loadingComponent: _sfc_main$3,
|
|||
|
delay: 0
|
|||
|
});
|
|||
|
function close() {
|
|||
|
emit("close");
|
|||
|
}
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return withDirectives((openBlock(), createElementBlock("div", _hoisted_1$2, [
|
|||
|
createBaseVNode("div", {
|
|||
|
class: "htw-absolute htw-inset-0",
|
|||
|
onClick: _cache[0] || (_cache[0] = ($event) => close())
|
|||
|
}),
|
|||
|
createBaseVNode("div", _hoisted_2$1, [
|
|||
|
createVNode(unref(SearchPane), {
|
|||
|
shown: __props.shown,
|
|||
|
onClose: _cache[1] || (_cache[1] = ($event) => close())
|
|||
|
}, null, 8, ["shown"])
|
|||
|
])
|
|||
|
], 512)), [
|
|||
|
[vShow, __props.shown]
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const _hoisted_1$1 = { class: "histoire-initial-loading htw-fixed htw-inset-0 htw-bg-white dark:htw-bg-gray-700 htw-flex htw-flex-col htw-gap-6 htw-items-center htw-justify-center" };
|
|||
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|||
|
__name: "InitialLoading",
|
|||
|
setup(__props) {
|
|||
|
const progress = reactive({
|
|||
|
loaded: 0,
|
|||
|
total: 0
|
|||
|
});
|
|||
|
const maxCols = window.innerWidth / 20;
|
|||
|
return (_ctx, _cache) => {
|
|||
|
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
|||
|
createVNode(Transition, { name: "__histoire-fade" }, {
|
|||
|
default: withCtx(() => [
|
|||
|
progress.total > 0 ? (openBlock(), createElementBlock("div", {
|
|||
|
key: 0,
|
|||
|
class: "htw-grid htw-gap-2",
|
|||
|
style: normalizeStyle({
|
|||
|
gridTemplateColumns: `repeat(${Math.min(Math.ceil(Math.sqrt(progress.total)), maxCols)}, minmax(0, 1fr))`
|
|||
|
})
|
|||
|
}, [
|
|||
|
(openBlock(true), createElementBlock(Fragment, null, renderList(progress.total, (n) => {
|
|||
|
return openBlock(), createElementBlock("div", {
|
|||
|
key: n,
|
|||
|
class: "htw-bg-primary-500/10 htw-rounded-full"
|
|||
|
}, [
|
|||
|
createBaseVNode("div", {
|
|||
|
class: normalizeClass(["htw-w-3 htw-h-3 htw-bg-primary-500 htw-rounded-full htw-duration-150 htw-ease-out", {
|
|||
|
"htw-transition-transform htw-scale-0": n >= progress.loaded
|
|||
|
}])
|
|||
|
}, null, 2)
|
|||
|
]);
|
|||
|
}), 128))
|
|||
|
], 4)) : createCommentVNode("", true)
|
|||
|
]),
|
|||
|
_: 1
|
|||
|
})
|
|||
|
]);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
const _hoisted_1 = {
|
|||
|
key: 0,
|
|||
|
class: "histoire-app htw-hidden"
|
|||
|
};
|
|||
|
const _hoisted_2 = {
|
|||
|
key: 0,
|
|||
|
class: "htw-h-full htw-flex htw-flex-col htw-divide-y htw-divide-gray-100 dark:htw-divide-gray-800"
|
|||
|
};
|
|||
|
const _hoisted_3 = { class: "htw-flex htw-flex-col htw-h-full htw-bg-gray-100 dark:htw-bg-gray-750 __histoire-pane-shadow-from-right" };
|
|||
|
const __default__ = {
|
|||
|
name: "HistoireApp"
|
|||
|
};
|
|||
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|||
|
...__default__,
|
|||
|
setup(__props) {
|
|||
|
const files$1 = ref(files.map((file) => mapFile(file)));
|
|||
|
const tree$1 = ref(tree);
|
|||
|
const stories = computed(() => files$1.value.reduce((acc, file) => {
|
|||
|
acc.push(file.story);
|
|||
|
return acc;
|
|||
|
}, []));
|
|||
|
const storyStore = useStoryStore();
|
|||
|
watch(stories, (value) => {
|
|||
|
storyStore.setStories(value);
|
|||
|
}, {
|
|||
|
immediate: true
|
|||
|
});
|
|||
|
useTitle(computed(() => {
|
|||
|
if (storyStore.currentStory) {
|
|||
|
let title = storyStore.currentStory.title;
|
|||
|
if (storyStore.currentVariant) {
|
|||
|
title += ` › ${storyStore.currentVariant.title}`;
|
|||
|
}
|
|||
|
return `${title} | ${histoireConfig.theme.title}`;
|
|||
|
}
|
|||
|
return histoireConfig.theme.title;
|
|||
|
}));
|
|||
|
const loadSearch = ref(false);
|
|||
|
const isSearchOpen = ref(false);
|
|||
|
watch(isSearchOpen, (value) => {
|
|||
|
if (value) {
|
|||
|
loadSearch.value = true;
|
|||
|
}
|
|||
|
});
|
|||
|
onKeyboardShortcut(["ctrl+k", "meta+k"], (event) => {
|
|||
|
isSearchOpen.value = true;
|
|||
|
event.preventDefault();
|
|||
|
});
|
|||
|
const loading = ref(false);
|
|||
|
const mounted = ref(false);
|
|||
|
onMounted(() => {
|
|||
|
mounted.value = true;
|
|||
|
});
|
|||
|
useCommandStore();
|
|||
|
return (_ctx, _cache) => {
|
|||
|
const _component_RouterView = resolveComponent("RouterView");
|
|||
|
return openBlock(), createElementBlock(Fragment, null, [
|
|||
|
unref(storyStore).currentStory ? (openBlock(), createElementBlock("div", _hoisted_1, [
|
|||
|
(openBlock(), createBlock(_sfc_main$c, {
|
|||
|
key: unref(storyStore).currentStory.id,
|
|||
|
story: unref(storyStore).currentStory
|
|||
|
}, null, 8, ["story"]))
|
|||
|
])) : createCommentVNode("", true),
|
|||
|
createBaseVNode("div", {
|
|||
|
class: "htw-h-screen htw-bg-white dark:htw-bg-gray-700 dark:htw-text-gray-100",
|
|||
|
style: normalizeStyle({
|
|||
|
// Prevent flash of content
|
|||
|
opacity: mounted.value ? 1 : 0
|
|||
|
})
|
|||
|
}, [
|
|||
|
unref(isMobile) ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|||
|
createVNode(_sfc_main$5, {
|
|||
|
onSearch: _cache[0] || (_cache[0] = ($event) => isSearchOpen.value = true)
|
|||
|
}),
|
|||
|
createVNode(Breadcrumb, {
|
|||
|
tree: tree$1.value,
|
|||
|
stories: unref(stories)
|
|||
|
}, null, 8, ["tree", "stories"]),
|
|||
|
createVNode(_component_RouterView, { class: "htw-grow" })
|
|||
|
])) : (openBlock(), createBlock(BaseSplitPane, {
|
|||
|
key: 1,
|
|||
|
"save-id": "main-horiz",
|
|||
|
min: 5,
|
|||
|
max: 50,
|
|||
|
"default-split": 15,
|
|||
|
class: "htw-h-full"
|
|||
|
}, {
|
|||
|
first: withCtx(() => [
|
|||
|
createBaseVNode("div", _hoisted_3, [
|
|||
|
createVNode(_sfc_main$5, {
|
|||
|
class: "htw-flex-none",
|
|||
|
onSearch: _cache[1] || (_cache[1] = ($event) => isSearchOpen.value = true)
|
|||
|
}),
|
|||
|
createVNode(_sfc_main$7, {
|
|||
|
tree: tree$1.value,
|
|||
|
stories: unref(stories),
|
|||
|
class: "htw-flex-1"
|
|||
|
}, null, 8, ["tree", "stories"])
|
|||
|
])
|
|||
|
]),
|
|||
|
last: withCtx(() => [
|
|||
|
createVNode(_component_RouterView)
|
|||
|
]),
|
|||
|
_: 1
|
|||
|
})),
|
|||
|
loadSearch.value ? (openBlock(), createBlock(_sfc_main$2, {
|
|||
|
key: 2,
|
|||
|
shown: isSearchOpen.value,
|
|||
|
onClose: _cache[2] || (_cache[2] = ($event) => isSearchOpen.value = false)
|
|||
|
}, null, 8, ["shown"])) : createCommentVNode("", true),
|
|||
|
createCommentVNode("", true)
|
|||
|
], 4),
|
|||
|
createVNode(Transition, { name: "__histoire-fade" }, {
|
|||
|
default: withCtx(() => [
|
|||
|
loading.value ? (openBlock(), createBlock(_sfc_main$1, { key: 0 })) : createCommentVNode("", true)
|
|||
|
]),
|
|||
|
_: 1
|
|||
|
})
|
|||
|
], 64);
|
|||
|
};
|
|||
|
}
|
|||
|
});
|
|||
|
async function mountMainApp() {
|
|||
|
const app = createApp(_sfc_main);
|
|||
|
app.use(createPinia());
|
|||
|
app.use(plugin, {
|
|||
|
overflowPadding: 4,
|
|||
|
arrowPadding: 8,
|
|||
|
themes: {
|
|||
|
tooltip: {
|
|||
|
distance: 8
|
|||
|
},
|
|||
|
dropdown: {
|
|||
|
computeTransformOrigin: true,
|
|||
|
distance: 8
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
app.use(router);
|
|||
|
app.mount("#app");
|
|||
|
}
|
|||
|
mountMainApp();
|
|||
|
export {
|
|||
|
onKeyboardShortcut as o,
|
|||
|
useCommandStore as u
|
|||
|
};
|