@tnotesjs/core 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -84
- package/dist/{chunk-JDVN2QYW.js → chunk-JUMVJKWV.js} +615 -614
- package/dist/cli/index.js +125 -125
- package/dist/vitepress/config/index.js +184 -210
- package/package.json +15 -3
- package/types/config.ts +61 -61
- package/types/index.ts +11 -11
- package/types/note.ts +33 -33
- package/types/shims.d.ts +3 -4
- package/vitepress/assets/icons/icon__check.svg +3 -3
- package/vitepress/assets/icons/icon__clipboard.svg +7 -7
- package/vitepress/assets/icons/icon__close.svg +1 -1
- package/vitepress/assets/icons/icon__collapse.svg +1 -1
- package/vitepress/assets/icons/icon__confirm.svg +1 -1
- package/vitepress/assets/icons/icon__copy.svg +4 -4
- package/vitepress/assets/icons/icon__focus.svg +1 -1
- package/vitepress/assets/icons/icon__fold.svg +3 -3
- package/vitepress/assets/icons/icon__folder.svg +1 -1
- package/vitepress/assets/icons/icon__fullscreen.svg +1 -1
- package/vitepress/assets/icons/icon__fullscreen_exit.svg +1 -1
- package/vitepress/assets/icons/icon__github.svg +3 -3
- package/vitepress/assets/icons/icon__mindmap.svg +1 -1
- package/vitepress/assets/icons/icon__next.svg +1 -1
- package/vitepress/assets/icons/icon__number_gray.svg +1 -1
- package/vitepress/assets/icons/icon__number_purple.svg +1 -1
- package/vitepress/assets/icons/icon__prev.svg +1 -1
- package/vitepress/assets/icons/icon__restore.svg +1 -1
- package/vitepress/assets/icons/icon__rotate.svg +4 -4
- package/vitepress/assets/icons/icon__search.svg +1 -1
- package/vitepress/assets/icons/icon__sidebar_collapsed.svg +1 -1
- package/vitepress/assets/icons/icon__sidebar_opened.svg +1 -1
- package/vitepress/assets/icons/icon__totop.svg +5 -5
- package/vitepress/assets/icons/icon__vscode.svg +5 -5
- package/vitepress/assets/icons/icon__zoom_fit.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_in.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_out.svg +1 -1
- package/vitepress/assets/icons/icon__zoom_reset.svg +1 -1
- package/vitepress/assets/icons/index.ts +38 -38
- package/vitepress/components/BilibiliOutsidePlayer/BilibiliOutsidePlayer.vue +20 -20
- package/vitepress/components/CodeBlockFullscreen/CodeBlockFullscreen.vue +373 -372
- package/vitepress/components/CodeBlockFullscreen/index.ts +115 -114
- package/vitepress/components/CodeBlockFullscreen/styles.css +64 -64
- package/vitepress/components/Discussions/Discussions.module.scss +32 -32
- package/vitepress/components/Discussions/Discussions.vue +211 -210
- package/vitepress/components/EnWordList/EnWordList.module.scss +124 -124
- package/vitepress/components/EnWordList/EnWordList.vue +543 -542
- package/vitepress/components/EnWordList/RightClickMenu.module.scss +22 -22
- package/vitepress/components/EnWordList/RightClickMenu.vue +66 -66
- package/vitepress/components/Footprints/Footprints.module.scss +93 -93
- package/vitepress/components/Footprints/Footprints.vue +377 -377
- package/vitepress/components/Layout/AboutModal.module.scss +233 -233
- package/vitepress/components/Layout/AboutModal.vue +105 -105
- package/vitepress/components/Layout/AboutPanel.vue +270 -265
- package/vitepress/components/Layout/ContentCollapse.vue +603 -602
- package/vitepress/components/Layout/CustomSidebar.vue +608 -605
- package/vitepress/components/Layout/DocBeforeControls.vue +149 -139
- package/vitepress/components/Layout/DocFooter.vue +233 -232
- package/vitepress/components/Layout/ImagePreview.module.scss +201 -201
- package/vitepress/components/Layout/ImagePreview.vue +281 -280
- package/vitepress/components/Layout/Layout.module.scss +661 -661
- package/vitepress/components/Layout/Layout.vue +539 -542
- package/vitepress/components/Layout/NoteStatus.vue +140 -139
- package/vitepress/components/Layout/SidebarItems.vue +267 -262
- package/vitepress/components/Layout/SidebarNavBefore.vue +92 -92
- package/vitepress/components/Layout/Swiper.vue +167 -167
- package/vitepress/components/Layout/ToggleFullContent.module.scss +11 -11
- package/vitepress/components/Layout/ToggleFullContent.vue +35 -34
- package/vitepress/components/Layout/ToggleSidebar.module.scss +11 -11
- package/vitepress/components/Layout/ToggleSidebar.vue +36 -35
- package/vitepress/components/Layout/composables/useCollapseControl.ts +88 -88
- package/vitepress/components/Layout/composables/useNoteConfig.ts +119 -121
- package/vitepress/components/Layout/composables/useNoteSave.ts +173 -172
- package/vitepress/components/Layout/composables/useNoteValidation.ts +85 -85
- package/vitepress/components/Layout/composables/useRedirect.ts +113 -110
- package/vitepress/components/Layout/composables/useVSCodeIntegration.ts +86 -83
- package/vitepress/components/Layout/homeReadme.data.ts +124 -124
- package/vitepress/components/LoadingPage/LoadingPage.vue +192 -192
- package/vitepress/components/MarkMap/MarkMap.module.scss +159 -159
- package/vitepress/components/MarkMap/MarkMap.vue +405 -404
- package/vitepress/components/Mermaid/Mermaid.module.scss +275 -275
- package/vitepress/components/Mermaid/Mermaid.vue +365 -363
- package/vitepress/components/NotesTable/NotesTable.module.scss +77 -77
- package/vitepress/components/NotesTable/NotesTable.vue +98 -97
- package/vitepress/components/NotesTable/README.md +67 -67
- package/vitepress/components/Settings/Settings.module.scss +433 -433
- package/vitepress/components/Settings/Settings.vue +306 -305
- package/vitepress/components/SidebarCard/MindMapView.vue +484 -483
- package/vitepress/components/SidebarCard/NotesTrendChart.vue +108 -108
- package/vitepress/components/SidebarCard/SidebarCard.vue +946 -948
- package/vitepress/components/Tooltip/Tooltip.vue +70 -70
- package/vitepress/components/constants.ts +91 -91
- package/vitepress/components/notesConfig.data.ts +73 -73
- package/vitepress/components/sidebar.data.ts +59 -59
- package/vitepress/components/tnotes-config.data.ts +21 -21
- package/vitepress/components/utils.ts +26 -26
- package/vitepress/config/index.ts +160 -146
- package/vitepress/configs/constants.ts +26 -26
- package/vitepress/configs/head.config.ts +25 -24
- package/vitepress/configs/index.ts +9 -9
- package/vitepress/configs/markdown-it.d.ts +23 -20
- package/vitepress/configs/markdown.config.ts +366 -365
- package/vitepress/configs/theme.config.ts +108 -108
- package/vitepress/plugins/buildProgressPlugin.ts +434 -470
- package/vitepress/plugins/getNoteByConfigIdPlugin.ts +107 -106
- package/vitepress/plugins/renameNotePlugin.ts +60 -59
- package/vitepress/plugins/updateConfigPlugin.ts +63 -62
- package/vitepress/theme/index.ts +95 -93
- package/vitepress/theme/styles/base.scss +50 -50
- package/vitepress/theme/styles/components/404.scss +31 -31
- package/vitepress/theme/styles/components/collapse.scss +175 -175
- package/vitepress/theme/styles/components/markmap.scss +101 -101
- package/vitepress/theme/styles/components/swiper.scss +255 -255
- package/vitepress/theme/styles/index.scss +25 -25
- package/vitepress/theme/styles/layout.scss +62 -62
- package/vitepress/theme/styles/utilities.scss +39 -39
- package/vitepress/theme/styles/vitepress-override.scss +25 -25
|
@@ -1,263 +1,268 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<template v-for="item in items" :key="getItemKey(item)">
|
|
3
|
-
<!-- 只有在不超过最大层级时才渲染组 -->
|
|
4
|
-
<div
|
|
5
|
-
v-if="hasChildren(item) && depth < maxDepth - 1"
|
|
6
|
-
class="group"
|
|
7
|
-
:style="getGroupStyle(depth)"
|
|
8
|
-
>
|
|
9
|
-
<button
|
|
10
|
-
class="group-title"
|
|
11
|
-
:class="`group-title-level-${depth}`"
|
|
12
|
-
@click="toggleItem(item)"
|
|
13
|
-
>
|
|
14
|
-
<span>{{ item.text }}</span>
|
|
15
|
-
|
|
16
|
-
<span class="arrow" :class="{ collapsed: item.collapsed }">
|
|
17
|
-
<img
|
|
18
|
-
:src="
|
|
19
|
-
item.collapsed ? icon__sidebar_collapsed : icon__sidebar_opened
|
|
20
|
-
"
|
|
21
|
-
alt=""
|
|
22
|
-
/>
|
|
23
|
-
</span>
|
|
24
|
-
</button>
|
|
25
|
-
|
|
26
|
-
<div v-show="!item.collapsed" class="group-items">
|
|
27
|
-
<SidebarItems
|
|
28
|
-
:items="item
|
|
29
|
-
:depth="depth + 1"
|
|
30
|
-
:max-depth="maxDepth"
|
|
31
|
-
:show-note-id="showNoteId"
|
|
32
|
-
:base="base"
|
|
33
|
-
:current-path="currentPath"
|
|
34
|
-
:item-depth="depth"
|
|
35
|
-
/>
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
|
|
39
|
-
<!-- 如果是链接项,或者是超过最大层级的组,都不渲染 -->
|
|
40
|
-
<a
|
|
41
|
-
v-else-if="!hasChildren(item)"
|
|
42
|
-
:href="getFullLink(item.link)"
|
|
43
|
-
:class="[
|
|
44
|
-
'nav-item',
|
|
45
|
-
{ active: isActive(item.link) },
|
|
46
|
-
`nav-item-${extractNoteIdFromLink(item.link)}`,
|
|
47
|
-
`nav-item-level-${actualItemDepth + 1}`,
|
|
48
|
-
]"
|
|
49
|
-
:data-note-id="extractNoteIdFromLink(item.link)"
|
|
50
|
-
:style="getItemStyle(actualItemDepth)"
|
|
51
|
-
>
|
|
52
|
-
{{ getNoteDisplayText(item.text, item.link) }}
|
|
53
|
-
</a>
|
|
54
|
-
</template>
|
|
55
|
-
</template>
|
|
56
|
-
|
|
57
|
-
<script setup lang="ts">
|
|
1
|
+
<template>
|
|
2
|
+
<template v-for="item in items" :key="getItemKey(item)">
|
|
3
|
+
<!-- 只有在不超过最大层级时才渲染组 -->
|
|
4
|
+
<div
|
|
5
|
+
v-if="hasChildren(item) && depth < maxDepth - 1"
|
|
6
|
+
class="group"
|
|
7
|
+
:style="getGroupStyle(depth)"
|
|
8
|
+
>
|
|
9
|
+
<button
|
|
10
|
+
class="group-title"
|
|
11
|
+
:class="`group-title-level-${depth}`"
|
|
12
|
+
@click="toggleItem(item)"
|
|
13
|
+
>
|
|
14
|
+
<span>{{ item.text }}</span>
|
|
15
|
+
|
|
16
|
+
<span class="arrow" :class="{ collapsed: item.collapsed }">
|
|
17
|
+
<img
|
|
18
|
+
:src="
|
|
19
|
+
item.collapsed ? icon__sidebar_collapsed : icon__sidebar_opened
|
|
20
|
+
"
|
|
21
|
+
alt=""
|
|
22
|
+
/>
|
|
23
|
+
</span>
|
|
24
|
+
</button>
|
|
25
|
+
|
|
26
|
+
<div v-show="!item.collapsed" class="group-items">
|
|
27
|
+
<SidebarItems
|
|
28
|
+
:items="getChildItems(item)"
|
|
29
|
+
:depth="depth + 1"
|
|
30
|
+
:max-depth="maxDepth"
|
|
31
|
+
:show-note-id="showNoteId"
|
|
32
|
+
:base="base"
|
|
33
|
+
:current-path="currentPath"
|
|
34
|
+
:item-depth="depth"
|
|
35
|
+
/>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
|
|
39
|
+
<!-- 如果是链接项,或者是超过最大层级的组,都不渲染 -->
|
|
40
|
+
<a
|
|
41
|
+
v-else-if="!hasChildren(item)"
|
|
42
|
+
:href="getFullLink(item.link)"
|
|
43
|
+
:class="[
|
|
44
|
+
'nav-item',
|
|
45
|
+
{ active: isActive(item.link) },
|
|
46
|
+
`nav-item-${extractNoteIdFromLink(item.link)}`,
|
|
47
|
+
`nav-item-level-${actualItemDepth + 1}`,
|
|
48
|
+
]"
|
|
49
|
+
:data-note-id="extractNoteIdFromLink(item.link)"
|
|
50
|
+
:style="getItemStyle(actualItemDepth)"
|
|
51
|
+
>
|
|
52
|
+
{{ getNoteDisplayText(item.text, item.link) }}
|
|
53
|
+
</a>
|
|
54
|
+
</template>
|
|
55
|
+
</template>
|
|
56
|
+
|
|
57
|
+
<script setup lang="ts">
|
|
58
58
|
import { computed } from 'vue'
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
function
|
|
97
|
-
return item.
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
//
|
|
101
|
-
function
|
|
102
|
-
item.
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
//
|
|
106
|
-
function
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
return
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
)
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
if (
|
|
183
|
-
return emoji ? `${emoji} ${
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
transform: rotate(
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.nav-item
|
|
245
|
-
color: var(--vp-c-brand-1);
|
|
246
|
-
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
59
|
+
|
|
60
|
+
import { icon__sidebar_opened, icon__sidebar_collapsed } from '../../assets/icons'
|
|
61
|
+
|
|
62
|
+
interface SidebarItem {
|
|
63
|
+
text: string
|
|
64
|
+
link?: string
|
|
65
|
+
items?: SidebarItem[]
|
|
66
|
+
collapsed?: boolean
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
interface Props {
|
|
70
|
+
items: SidebarItem[]
|
|
71
|
+
depth: number
|
|
72
|
+
maxDepth: number
|
|
73
|
+
showNoteId: boolean
|
|
74
|
+
base: string
|
|
75
|
+
currentPath: string
|
|
76
|
+
itemDepth?: number // 用于计算链接项的缩进,默认等于 depth
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const props = withDefaults(defineProps<Props>(), {
|
|
80
|
+
depth: 0,
|
|
81
|
+
maxDepth: 3,
|
|
82
|
+
showNoteId: false,
|
|
83
|
+
base: '/',
|
|
84
|
+
currentPath: '',
|
|
85
|
+
itemDepth: undefined,
|
|
86
|
+
})
|
|
87
|
+
|
|
88
|
+
// 获取实际的 item depth(用于链接项的缩进)
|
|
89
|
+
const actualItemDepth = computed(() => props.itemDepth ?? props.depth)
|
|
90
|
+
|
|
91
|
+
// 判断项是否有子项
|
|
92
|
+
function hasChildren(item: SidebarItem): boolean {
|
|
93
|
+
return !!(item.items && item.items.length > 0)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function getChildItems(item: SidebarItem): SidebarItem[] {
|
|
97
|
+
return item.items ?? []
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// 获取项的唯一 key
|
|
101
|
+
function getItemKey(item: SidebarItem): string {
|
|
102
|
+
return item.link || item.text
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// 切换项的展开/折叠状态
|
|
106
|
+
function toggleItem(item: SidebarItem) {
|
|
107
|
+
item.collapsed = !item.collapsed
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// 根据深度获取组的缩进样式
|
|
111
|
+
function getGroupStyle(depth: number) {
|
|
112
|
+
// 从第二层组开始才需要缩进(depth >= 1)
|
|
113
|
+
if (depth === 0) {
|
|
114
|
+
return {}
|
|
115
|
+
}
|
|
116
|
+
return {
|
|
117
|
+
paddingLeft: `${depth * 16}px`,
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// 根据深度获取项的缩进样式
|
|
122
|
+
function getItemStyle(depth: number) {
|
|
123
|
+
// 项的缩进基于其父组的depth
|
|
124
|
+
// 第一层组(depth=0)的子项不需要额外缩进
|
|
125
|
+
// 第二层组(depth=1)的子项需要缩进 16px
|
|
126
|
+
if (depth === 0) {
|
|
127
|
+
return {}
|
|
128
|
+
}
|
|
129
|
+
return {
|
|
130
|
+
paddingLeft: `${depth * 16}px`,
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// 获取完整链接(包含 base)
|
|
135
|
+
function getFullLink(link?: string) {
|
|
136
|
+
if (!link) return '#'
|
|
137
|
+
const cleanLink = link.startsWith('/') ? link.slice(1) : link
|
|
138
|
+
return props.base + cleanLink
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// 判断链接是否激活
|
|
142
|
+
function isActive(link?: string) {
|
|
143
|
+
if (!link) return false
|
|
144
|
+
const fullLink = getFullLink(link)
|
|
145
|
+
const decodedRoutePath = decodeURIComponent(props.currentPath)
|
|
146
|
+
const decodedFullLink = decodeURIComponent(fullLink)
|
|
147
|
+
|
|
148
|
+
return (
|
|
149
|
+
decodedRoutePath === decodedFullLink ||
|
|
150
|
+
decodedRoutePath === decodedFullLink + '.html'
|
|
151
|
+
)
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// 从链接中提取笔记 ID
|
|
155
|
+
function extractNoteIdFromLink(link?: string): string | null {
|
|
156
|
+
if (!link) return null
|
|
157
|
+
const match = link.match(/\/notes\/(\d{4})\./)
|
|
158
|
+
return match ? match[1] : null
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// 提取文本开头的 emoji
|
|
162
|
+
function extractEmoji(text: string): { emoji: string; rest: string } {
|
|
163
|
+
const emojiMatch = text.match(
|
|
164
|
+
/^([\u{1F300}-\u{1F9FF}\u{2600}-\u{26FF}\u{2700}-\u{27BF}✅❌⏰]+)\s*/u
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
if (emojiMatch) {
|
|
168
|
+
return {
|
|
169
|
+
emoji: emojiMatch[1],
|
|
170
|
+
rest: text.slice(emojiMatch[0].length),
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return { emoji: '', rest: text }
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// 获取笔记显示文本
|
|
178
|
+
function getNoteDisplayText(text: string, link?: string): string {
|
|
179
|
+
const { emoji, rest } = extractEmoji(text)
|
|
180
|
+
|
|
181
|
+
if (props.showNoteId) {
|
|
182
|
+
if (/^\d{4}\./.test(rest)) {
|
|
183
|
+
return emoji ? `${emoji} ${rest}` : rest
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
const noteId = extractNoteIdFromLink(link)
|
|
187
|
+
if (noteId) {
|
|
188
|
+
return emoji ? `${emoji} ${noteId}. ${rest}` : `${noteId}. ${rest}`
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
return text
|
|
192
|
+
} else {
|
|
193
|
+
const cleanRest = rest.replace(/^\d{4}\.\s*/, '')
|
|
194
|
+
return emoji ? `${emoji} ${cleanRest}` : cleanRest
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
</script>
|
|
198
|
+
|
|
199
|
+
<style scoped>
|
|
200
|
+
.group {
|
|
201
|
+
margin-bottom: 16px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.group-title {
|
|
205
|
+
display: flex;
|
|
206
|
+
justify-content: space-between;
|
|
207
|
+
align-items: center;
|
|
208
|
+
width: 100%;
|
|
209
|
+
padding: 6px 0;
|
|
210
|
+
font-weight: 600;
|
|
211
|
+
color: var(--vp-c-text-1);
|
|
212
|
+
background: none;
|
|
213
|
+
border: none;
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
text-align: left;
|
|
216
|
+
transition: color 0.25s;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.group-title:hover {
|
|
220
|
+
color: var(--vp-c-brand-1);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.arrow {
|
|
224
|
+
font-size: 10px;
|
|
225
|
+
transform: rotate(90deg);
|
|
226
|
+
transition: transform 0.25s;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.arrow.collapsed {
|
|
230
|
+
transform: rotate(0deg);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.nav-item {
|
|
234
|
+
display: block;
|
|
235
|
+
padding: 4px;
|
|
236
|
+
color: var(--vp-c-text-2);
|
|
237
|
+
text-decoration: none;
|
|
238
|
+
border-radius: 4px;
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
line-height: 24px;
|
|
241
|
+
transition: all 0.25s;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.nav-item:hover {
|
|
245
|
+
color: var(--vp-c-brand-1);
|
|
246
|
+
background-color: var(--vp-c-default-soft);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.nav-item.active {
|
|
250
|
+
color: var(--vp-c-brand-1);
|
|
251
|
+
font-weight: 600;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/* 聚焦高亮动画 */
|
|
255
|
+
.nav-item.focus-highlight {
|
|
256
|
+
animation: focusPulse 1s ease-in-out;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
@keyframes focusPulse {
|
|
260
|
+
0%,
|
|
261
|
+
100% {
|
|
262
|
+
background-color: transparent;
|
|
263
|
+
}
|
|
264
|
+
50% {
|
|
265
|
+
background-color: var(--vp-c-brand-soft);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
</style>
|