-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathexamples.data.ts
74 lines (66 loc) · 1.94 KB
/
examples.data.ts
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
import fs from 'fs'
import path from 'path'
import { ExampleData } from './utils'
export declare const data: Record<string, ExampleData>
export { ExampleData }
export default {
watch: 'src/**',
load() {
const srcDir = path.resolve(__dirname, './src')
return readExamples(srcDir)
}
}
export function readExamples(srcDir: string): Record<string, ExampleData> {
const examples = fs.readdirSync(srcDir)
const data: Record<string, ExampleData> = {}
for (const name of examples) {
data[name] = readExample(path.join(srcDir, name))
}
return data
}
function readExample(dir: string): ExampleData {
const filenames = fs.readdirSync(dir)
const files: ExampleData = {}
for (const filename of filenames) {
const fullPath = path.join(dir, filename)
if (fs.statSync(fullPath).isDirectory()) {
if (filename === '_hint') {
files[filename] = readExample(fullPath)
} else {
files[filename] = readComponentDir(fullPath)
}
} else {
files[filename] = fs.readFileSync(fullPath, 'utf-8')
}
}
// fallback so that we can omit identical files in _hint
if (files._hint) {
for (const filename in files) {
if (filename !== '_hint') {
let hint = files._hint[filename]
if (!hint) {
hint = files._hint[filename] = {}
}
const original = files[filename]
if (typeof original !== 'string' && typeof hint !== 'string') {
for (const key in original) {
if (!(key in hint)) {
hint[key] = original[key]
}
}
}
}
}
}
return files
}
function readComponentDir(dir: string): Record<string, string> {
const filenames = fs.readdirSync(dir)
const files: Record<string, string> = {}
for (const filename of filenames) {
let content = fs.readFileSync(path.join(dir, filename), 'utf-8')
if (!content.endsWith('\n')) content += '\n'
files[filename] = content
}
return files
}