-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathdocs-migrate.js
153 lines (130 loc) · 5.19 KB
/
docs-migrate.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
const { execSync } = require('child_process')
const path = require('path')
const fs = require('fs-extra')
const migrations = require('./migrateDocsConfig.json')
const args = process.argv.slice(2)
const migrateDocs = ({
repo,
branch = 'master',
sourceDir = 'docs',
tempDir,
targetDir,
extraFiles = [],
postDownloadActions = [],
removeFiles = [],
ignoreDirs = [],
processMarkdown = false,
sparseCheckout = true,
}) => {
try {
// reset the working directory between each migration
process.chdir(__dirname)
// Remove any previous copy
fs.removeSync(tempDir)
// Clone the repository and switch to the specified branch
const cloneCommand = `git clone ${
!sparseCheckout ? '' : '--depth 1 --sparse'
} ${repo} --branch ${branch} ${tempDir}`
console.log(`cloning repository with: ${cloneCommand}`)
execSync(cloneCommand)
// Navigate to the cloned repository
process.chdir(tempDir)
if (sparseCheckout) {
// Set up sparse checkout to retrieve only the 'docs' directory
execSync('git sparse-checkout init')
execSync(`git sparse-checkout add ${sourceDir}`)
}
postDownloadActions.forEach((action) => {
console.log(`executing post download action: ${action}`)
execSync(action, { stdio: 'inherit' })
})
process.chdir('..')
// Remove any previous copy
console.log(`removing previous copy at ${targetDir}`)
fs.removeSync(targetDir)
if (processMarkdown) {
console.log(`Processing markdown files in ${sourceDir}`)
processUIMarkdownFiles(path.join(tempDir, sourceDir))
}
// Copy the directory to another place and create missing directories
console.log(`copy files to ${targetDir}`)
fs.copySync(`${tempDir}/${sourceDir}`, targetDir, {
recursive: true,
filter: (src) =>
!ignoreDirs.some((dir) =>
src.includes(path.join(tempDir, sourceDir, dir))
),
})
// Copy extra files
extraFiles.forEach((file) => {
console.log(`copying ${file.from} to ${file.to}`)
if (file.from.indexOf('CHANGELOG') !== -1) {
replaceEmailsWithBackticks(`${tempDir}/${file.from}`)
}
fs.copySync(`${tempDir}/${file.from}`, `${targetDir}/${file.to}`, {
recursive: true,
})
})
removeFiles.forEach((file) => {
console.log(`removing file(s) post copy: ${file}`)
fs.removeSync(`${tempDir}/${file}`)
})
// Remove the checked out code
console.log(`removing temp directory ${tempDir}`)
fs.removeSync(tempDir)
} catch (error) {
console.error(error)
}
}
function replaceEmailsWithBackticks(filePath) {
const content = fs.readFileSync(filePath, 'utf8')
const updatedContent = content.replace(
/<([^<>@]+@[^<>@]+\.[^<>@]+)>/g,
'`$1`'
)
fs.writeFileSync(filePath, updatedContent, 'utf8')
}
const processUIMarkdownFiles = (directory) => {
const files = fs.readdirSync(directory)
files.forEach((file) => {
const filePath = path.join(directory, file)
if (fs.statSync(filePath).isDirectory()) {
processUIMarkdownFiles(filePath) // Recurse into subdirectories
} else if (file.endsWith('.md')) {
let content = fs.readFileSync(filePath, 'utf-8')
// Find the import line that matches 'import API from ...'
const importRegex = /import API from ['"]([^'"]*)['"]/
const importMatch = content.match(importRegex)
if (importMatch) {
const apiFilePath = path.resolve(directory, importMatch[1])
if (fs.existsSync(apiFilePath)) {
const apiContent = fs.readFileSync(apiFilePath, 'utf-8')
// Replace the <API /> placeholder with the content from the API file
content = content.replace(importMatch[0], '') // Remove import line
content = content.replace('<API />', apiContent) // Replace placeholder
fs.writeFileSync(filePath, content, 'utf-8')
console.log(`Processed ${filePath}`)
} else {
console.error(`API file not found: ${apiFilePath}`)
}
}
// Find and update image paths that start with '/images/' and append '/ui/' in front
const imageRegex = /!\[([^\]]*)\]\((\/images\/[^)]*\.png)\)/g
content = content.replace(
imageRegex,
(match, altText, imagePath) => {
const newImagePath = `/ui${imagePath}` // Append /ui/ to image path
return ``
}
)
fs.writeFileSync(filePath, content, 'utf-8')
console.log(`Processed ${filePath}`)
}
})
}
migrations.migrations.forEach((migration) => {
if (args.length > 0 && migration.repo.indexOf(args[0]) === -1) {
return
}
migrateDocs(migration)
})