|
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, computed } from "vue";
|
|
|
|
|
import {ref, computed} from "vue";
|
|
|
|
|
import TreeEntry from "./TreeEntry.vue";
|
|
|
|
|
|
|
|
|
|
interface DirEntry {
|
|
|
|
|
@@ -27,34 +27,36 @@ const emit = defineEmits<{
|
|
|
|
|
openFolder: [];
|
|
|
|
|
toggleFolder: [path: string];
|
|
|
|
|
openFile: [path: string];
|
|
|
|
|
createFile: [];
|
|
|
|
|
createFolder: [];
|
|
|
|
|
}>();
|
|
|
|
|
|
|
|
|
|
// Wrap the workspace root as a top-level tree node
|
|
|
|
|
const rootEntry = computed<DirEntry | null>(() => {
|
|
|
|
|
if (!props.folderPath) return null;
|
|
|
|
|
const name = props.folderPath.split(/[/\\]/).pop() || props.folderPath;
|
|
|
|
|
return {
|
|
|
|
|
name,
|
|
|
|
|
path: props.folderPath,
|
|
|
|
|
is_dir: true,
|
|
|
|
|
children: props.entries,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// ---- sidebar view mode ----
|
|
|
|
|
type ViewMode = "folder" | "search" | "outline";
|
|
|
|
|
const activeView = ref<ViewMode>("folder");
|
|
|
|
|
const collapsed = ref(true);
|
|
|
|
|
|
|
|
|
|
const viewLabels: Record<ViewMode, string> = {
|
|
|
|
|
folder: "文件",
|
|
|
|
|
search: "搜索",
|
|
|
|
|
outline: "大纲",
|
|
|
|
|
};
|
|
|
|
|
const expanded = ref(true);
|
|
|
|
|
|
|
|
|
|
function switchView(view: ViewMode) {
|
|
|
|
|
if (collapsed.value) {
|
|
|
|
|
collapsed.value = false;
|
|
|
|
|
activeView.value = view;
|
|
|
|
|
} else if (activeView.value === view) {
|
|
|
|
|
collapsed.value = true;
|
|
|
|
|
if (activeView.value === view) {
|
|
|
|
|
expanded.value = !expanded.value;
|
|
|
|
|
} else {
|
|
|
|
|
activeView.value = view;
|
|
|
|
|
expanded.value = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function collapseSidebar() {
|
|
|
|
|
collapsed.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---- outline state ----
|
|
|
|
|
interface OutlineItem {
|
|
|
|
|
text: string;
|
|
|
|
|
@@ -72,14 +74,14 @@ const headings = computed<OutlineItem[]>(() => {
|
|
|
|
|
// Strip any remaining markdown formatting from the heading text
|
|
|
|
|
const text = match[2].replace(/\*{1,3}|_{1,3}|`+|~~|\[([^\]]*)\]\([^)]*\)/g, (_, linkText) => linkText || "").trim();
|
|
|
|
|
if (text) {
|
|
|
|
|
result.push({ text, level, id: `heading-${result.length}` });
|
|
|
|
|
result.push({text, level, id: `heading-${result.length}`});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function onHeadingClick(item: OutlineItem) {
|
|
|
|
|
emit("headingClick", { text: item.text, level: item.level });
|
|
|
|
|
emit("headingClick", {text: item.text, level: item.level});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---- settings modal ----
|
|
|
|
|
@@ -88,14 +90,10 @@ const showSettings = ref(false);
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<aside
|
|
|
|
|
:class="[
|
|
|
|
|
'flex flex-col border-r border-[#e8e4da] bg-[#f4f1eb]/80 transition-all duration-300 ease-in-out overflow-hidden shrink-0',
|
|
|
|
|
collapsed ? 'w-12' : 'w-56',
|
|
|
|
|
]"
|
|
|
|
|
:class="['flex flex-row border-r border-[#e8e4da] bg-[#f4f1eb]/80 transition-all duration-300 ease-in-out overflow-hidden shrink-0', expanded ? 'w-72' : 'w-12']"
|
|
|
|
|
>
|
|
|
|
|
<!-- ============ COLLAPSED: icon bar ============ -->
|
|
|
|
|
<template v-if="collapsed">
|
|
|
|
|
<div class="flex flex-col items-center gap-1 py-3 flex-1">
|
|
|
|
|
<!-- ============ Icon bar ============ -->
|
|
|
|
|
<div class="w-12 shrink-0 flex flex-col items-center gap-1 py-3">
|
|
|
|
|
<!-- Folder -->
|
|
|
|
|
<button
|
|
|
|
|
class="p-2 rounded-md transition-colors"
|
|
|
|
|
@@ -123,37 +121,31 @@ const showSettings = ref(false);
|
|
|
|
|
>
|
|
|
|
|
<i class="ri-menu-line text-base"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<!-- ============ EXPANDED: full sidebar ============ -->
|
|
|
|
|
<template v-else>
|
|
|
|
|
<!-- Header -->
|
|
|
|
|
<div class="flex items-center justify-between px-3 py-3 border-b border-[#e8e4da]">
|
|
|
|
|
<span class="text-xs font-semibold text-[#8c877d] uppercase tracking-wider">
|
|
|
|
|
{{ viewLabels[activeView] }}
|
|
|
|
|
</span>
|
|
|
|
|
<!-- ===== Settings ===== -->
|
|
|
|
|
<button
|
|
|
|
|
class="p-1 rounded-md text-[#8c877d] hover:text-[#38342e] hover:bg-[#e0dbcf] transition-colors"
|
|
|
|
|
title="折叠侧边栏"
|
|
|
|
|
@click="collapseSidebar"
|
|
|
|
|
class="p-2 rounded-md transition-colors mt-auto"
|
|
|
|
|
:class="activeView === 'outline' ? 'text-[#bf6a3b] bg-[#ede8de]' : 'text-[#b8b3a8] hover:text-[#5c574e] hover:bg-[#ede8de]'"
|
|
|
|
|
title="设置"
|
|
|
|
|
@click="showSettings = true"
|
|
|
|
|
>
|
|
|
|
|
<i class="ri-arrow-left-double-line text-base"></i>
|
|
|
|
|
<i class="ri-settings-line text-sm"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- ============ Expanded panel ============ -->
|
|
|
|
|
<div v-show="expanded" class="flex-1 flex flex-col overflow-hidden border-l border-[#e8e4da]">
|
|
|
|
|
<!-- ===== FOLDER VIEW ===== -->
|
|
|
|
|
<div v-if="activeView === 'folder'" class="flex flex-col flex-1 overflow-hidden">
|
|
|
|
|
<!-- File tree -->
|
|
|
|
|
<div class="flex-1 overflow-y-auto px-2 py-2 space-y-0.5">
|
|
|
|
|
<!-- Folder path indicator -->
|
|
|
|
|
<div
|
|
|
|
|
v-if="folderPath"
|
|
|
|
|
class="px-2 py-1 text-xs text-[#b8b3a8] truncate mb-2 border-b border-[#e8e4da] pb-2"
|
|
|
|
|
:title="folderPath"
|
|
|
|
|
>
|
|
|
|
|
📁 {{ folderPath.split(/[/\\]/).pop() || folderPath }}
|
|
|
|
|
</div>
|
|
|
|
|
<!-- Workspace root as top-level tree node -->
|
|
|
|
|
<TreeEntry
|
|
|
|
|
v-if="rootEntry"
|
|
|
|
|
:entry="rootEntry"
|
|
|
|
|
:depth="0"
|
|
|
|
|
@toggle-folder="(path: string) => emit('toggleFolder', path)"
|
|
|
|
|
@open-file="(path: string) => emit('openFile', path)"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- Empty state -->
|
|
|
|
|
<div
|
|
|
|
|
@@ -169,15 +161,6 @@ const showSettings = ref(false);
|
|
|
|
|
打开文件夹
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<TreeEntry
|
|
|
|
|
v-for="entry in entries"
|
|
|
|
|
:key="entry.path"
|
|
|
|
|
:entry="entry"
|
|
|
|
|
:depth="0"
|
|
|
|
|
@toggle-folder="(path: string) => emit('toggleFolder', path)"
|
|
|
|
|
@open-file="(path: string) => emit('openFile', path)"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@@ -209,7 +192,7 @@ const showSettings = ref(false);
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="headings.length === 0">
|
|
|
|
|
<p class="text-xs text-[#b8b3a8] px-2 py-4 text-center leading-relaxed">
|
|
|
|
|
暂无标题<br />使用 H1-H3 标题<br />自动生成大纲
|
|
|
|
|
暂无标题<br/>使用 H1-H3 标题<br/>自动生成大纲
|
|
|
|
|
</p>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
@@ -241,18 +224,7 @@ const showSettings = ref(false);
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- ===== BOTTOM: Settings ===== -->
|
|
|
|
|
<div class="border-t border-[#e8e4da] px-3 py-2">
|
|
|
|
|
<button
|
|
|
|
|
class="w-full flex items-center gap-2 px-2 py-1.5 text-xs text-[#8c877d] hover:text-[#38342e] hover:bg-[#ede8de] rounded-md transition-colors"
|
|
|
|
|
@click="showSettings = true"
|
|
|
|
|
>
|
|
|
|
|
<i class="ri-settings-line text-sm"></i>
|
|
|
|
|
设置
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
|
|
<!-- ===== SETTINGS MODAL ===== -->
|
|
|
|
|
|