Skip to content

Commit b6ecfe0

Browse files
committed
feat: 命名约定兼容文件名中间有'.'
1 parent 3844f83 commit b6ecfe0

File tree

7 files changed

+53
-21
lines changed

7 files changed

+53
-21
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"vuepress-plugin-one-click-copy": "^1.0.2",
2525
"vuepress-plugin-thirdparty-search": "^1.0.2",
2626
"vuepress-plugin-zooming": "^1.1.7",
27-
"vuepress-theme-vdoing": "^1.10.2",
27+
"vuepress-theme-vdoing": "^1.10.3",
2828
"yamljs": "^0.3.0"
2929
}
3030
}

vdoing/components/ArticleInfo.vue

+8-2
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,18 @@ export default {
9393
// 分类采用解析文件夹地址名称的方式 (即使关闭分类功能也可以正确跳转目录页)
9494
const relativePathArr = relativePath.split('/')
9595
96-
const classifyArr = relativePathArr[0].split('.')
96+
// const classifyArr = relativePathArr[0].split('.')
9797
9898
relativePathArr.forEach((item, index) => {
9999
const nameArr = item.split('.')
100+
100101
if (index !== relativePathArr.length - 1) {
101-
this.classifyList.push(nameArr[1] || nameArr[0] || '')
102+
if (nameArr === 1) {
103+
this.classifyList.push(nameArr[0])
104+
} else {
105+
const firstDotIndex = item.indexOf('.');
106+
this.classifyList.push(item.substring(firstDotIndex + 1) || '')
107+
}
102108
}
103109
})
104110

vdoing/node_utils/getSidebarData.js

+21-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,26 @@ function mapTocToSidebar(root, collapsable, prefix = '') {
118118
if (filename === '.DS_Store') { // 过滤.DS_Store文件
119119
return
120120
}
121-
let [order, title, type] = filename.split('.');
121+
// let [order, title, type] = filename.split('.');
122+
123+
const fileNameArr = filename.split('.')
124+
const isDir = stat.isDirectory()
125+
let order = '', title = '', type = '';
126+
if (fileNameArr.length === 2) {
127+
order = fileNameArr[0];
128+
title = fileNameArr[1];
129+
} else {
130+
const firstDotIndex = filename.indexOf('.');
131+
const lastDotIndex = filename.lastIndexOf('.');
132+
order = filename.substring(0, firstDotIndex);
133+
type = filename.substring(lastDotIndex + 1);
134+
if (isDir) {
135+
title = filename.substring(firstDotIndex + 1);
136+
} else {
137+
title = filename.substring(firstDotIndex + 1, lastDotIndex);
138+
}
139+
}
140+
122141
order = parseInt(order, 10);
123142
if (isNaN(order) || order < 0) {
124143
log(chalk.yellow(`warning: 该文件 "${file}" 序号出错,请填写正确的序号`))
@@ -127,7 +146,7 @@ function mapTocToSidebar(root, collapsable, prefix = '') {
127146
if (sidebar[order]) { // 判断序号是否已经存在
128147
log(chalk.yellow(`warning: 该文件 "${file}" 的序号在同一级别中重复出现,将会被覆盖`))
129148
}
130-
if (stat.isDirectory()) { // 是文件夹目录
149+
if (isDir) { // 是文件夹目录
131150
sidebar[order] = {
132151
title,
133152
collapsable, // 是否可折叠,默认true

vdoing/node_utils/modules/readFileList.js

+10-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const path = require('path'); // 路径模块
66
const chalk = require('chalk') // 命令行打印美化
77
const log = console.log
88

9-
function readFileList (dir, filesList = []) {
9+
function readFileList(dir, filesList = []) {
1010
const files = fs.readdirSync(dir);
1111
files.forEach((item, index) => {
1212
let filePath = path.join(dir, item);
@@ -16,18 +16,20 @@ function readFileList (dir, filesList = []) {
1616
} else {
1717
if (path.basename(dir) !== 'docs') { // 过滤docs目录级下的文件
1818

19-
const fileNameArr = path.basename(filePath).split('.')
19+
const filename = path.basename(filePath)
20+
const fileNameArr = filename.split('.')
21+
const firstDotIndex = filename.indexOf('.');
22+
const lastDotIndex = filename.lastIndexOf('.');
23+
2024
let name = null, type = null;
2125
if (fileNameArr.length === 2) { // 没有序号的文件
2226
name = fileNameArr[0]
2327
type = fileNameArr[1]
24-
} else if (fileNameArr.length === 3) { // 有序号的文件
25-
name = fileNameArr[1]
26-
type = fileNameArr[2]
27-
} else { // 超过两个‘.’的
28-
log(chalk.yellow(`warning: 该文件 "${filePath}" 没有按照约定命名,将忽略生成相应数据。`))
29-
return
28+
} else if (fileNameArr.length >= 3) { // 有序号的文件(或文件名中间有'.')
29+
name = filename.substring(firstDotIndex + 1, lastDotIndex)
30+
type = filename.substring(lastDotIndex + 1)
3031
}
32+
3133
if (type === 'md') { // 过滤非md文件
3234
filesList.push({
3335
name,

vdoing/node_utils/setFrontmatter.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ function getCategories(file, categoryText) {
129129
let ind = filePathArr.indexOf('docs')
130130
if (ind !== -1) {
131131
while (filePathArr[++ind] !== undefined) {
132-
categories.push(filePathArr[ind].split('.').pop()) // 获取分类
132+
const item = filePathArr[ind]
133+
const firstDotIndex = item.indexOf('.');
134+
categories.push(item.substring(firstDotIndex + 1) || '') // 获取分类
135+
// categories.push(filePathArr[ind].split('.').pop()) // 获取分类
133136
}
134137
}
135138
} else {

vdoing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuepress-theme-vdoing",
3-
"version": "1.10.2",
3+
"version": "1.10.3",
44
"description": "Vdoing theme for VuePress. 一个基于VuePress的知识管理兼博客主题。",
55
"author": {
66
"name": "gaoyi(Evan) Xu"

vdoing/styles/index.styl

+8-6
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,14 @@ h2
222222

223223
h3
224224
font-size 1.35rem
225-
h4
226-
font-size 1.25rem
227-
h5
228-
font-size 1.15rem
229-
h6
230-
font-size 1.05rem
225+
226+
.page
227+
h4
228+
font-size 1.25rem
229+
h5
230+
font-size 1.15rem
231+
h6
232+
font-size 1.05rem
231233

232234
a.header-anchor
233235
font-size 0.85em

0 commit comments

Comments
 (0)