forked from a11yj/accrefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint-content-format.js
180 lines (156 loc) · 4.4 KB
/
lint-content-format.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
97
98
99
100
101
102
103
104
105
106
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
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
const fs = require('fs').promises
const yaml = require('js-yaml')
const fg = require('fast-glob')
const matter = require('gray-matter')
const readTags = async () => {
const content = await fs.readFile('src/_data/tags.yml', 'utf8')
return yaml.safeLoad(content)
}
const getDuplicatedTagIndex = (tags, key, value, currentTagIndex) => {
return tags.findIndex(
(tag, index) => tag[key] === value && index !== currentTagIndex,
)
}
const validateTags = (tags) => {
tags.forEach((tag, index) => {
Object.entries({
title: '',
slug: '',
...tag,
}).forEach(([key, value]) => {
if (key === 'title' || key === 'slug') {
if (typeof value !== 'string') {
throw new TypeError(
`\`tags[${index}].${key}\`は文字列にしてください。`,
)
}
const isEmpty = !value
if (isEmpty) {
throw new TypeError(
`\`tags[${index}]\`に\`${key}\`を入力してください。`,
)
}
const duplicatedTagIndex = getDuplicatedTagIndex(
tags,
key,
value,
index,
)
if (duplicatedTagIndex !== -1) {
throw new TypeError(
`\`tags[${index}].${key}\`が\`tags[${duplicatedTagIndex}].${key}\`と重複しています。`,
)
}
return
}
if (key === 'content') {
if (typeof value !== 'string') {
throw new TypeError(
`\`tags[${index}].${key}\`は文字列にしてください。`,
)
}
return
}
throw new TypeError(
`\`tags[${index}]\`の\`${key}\`は妥当なプロパティではありません。`,
)
})
})
}
const readReferences = async () => {
return Promise.all(
(await fg('src/references/*.md')).map(async (filepath) => {
const content = await fs.readFile(filepath, 'utf8')
return {
...matter(content),
filepath,
}
}),
)
}
const getDuplicatedReferenceIndex = (
references,
key,
value,
currentReferenceFilepath,
) => {
return references.findIndex(
(reference) =>
reference.data[key] === value &&
reference.filepath !== currentReferenceFilepath,
)
}
const validateReferences = (references, tags) => {
references.forEach((reference) => {
Object.entries({
title: '',
tags: '',
link: '',
...reference.data,
}).forEach(([key, value]) => {
if (key === 'title' || key === 'link') {
if (typeof value !== 'string') {
throw new TypeError(
`\`${reference.filepath}\`の\`${key}\`は文字列にしてください。`,
)
}
const isEmpty = !value
if (isEmpty) {
throw new TypeError(
`\`${reference.filepath}\`に\`${key}\`を入力してください。`,
)
}
const duplicatedReferenceIndex = getDuplicatedReferenceIndex(
references,
key,
value,
reference.filepath,
)
if (duplicatedReferenceIndex !== -1) {
throw new TypeError(
`\`${reference.filepath}\`の\`${key}\`が\`${references[duplicatedReferenceIndex].filepath}と重複しています。`,
)
}
return
}
if (key === 'tags') {
if (!Array.isArray(value)) {
throw new TypeError(
`\`${reference.filepath}\`の\`${key}\`は配列にしてください。`,
)
}
const isEmpty = !value.length
if (isEmpty) {
throw new TypeError(
`\`${reference.filepath}\`に\`${key}\`を入力してください。`,
)
}
value.forEach((tagTitle) => {
const exists = tags.some((tag) => tag.title === tagTitle)
if (!exists) {
throw new TypeError(
`\`${reference.filepath}\`の\`${tagTitle}\`というタグは存在しません。`,
)
}
})
return
}
if (key === 'content') {
return
}
throw new Error(
`\`${reference.filepath}\`の\`${key}\`は妥当なプロパティではありません。`,
)
})
})
}
const main = async () => {
const tags = await readTags()
validateTags(tags)
const references = await readReferences()
validateReferences(references, tags)
}
main().catch((error) => {
process.exitCode = 1
console.trace(error)
})