forked from angular/angular-ja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync-origin.js
60 lines (49 loc) · 1.96 KB
/
sync-origin.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
const fs = require('fs');
const path = require('path');
const glob = require('glob');
const { promisify } = require('util');
const copyTargets = [
'content/guide/**/*.md',
'content/marketing/**/*',
'content/tutorial/**/*.md',
'content/navigation.json',
'src/index.html',
'src/app/layout/doc-viewer/doc-viewer.component.ts',
'src/app/layout/nav-item/nav-item.component.html',
'src/app/navigation/navigation.model.ts',
'content/examples/toh-pt6/src/app/hero-search/hero-search.component.ts',
'content/examples/toh-pt6/src/app/heroes/heroes.component.html',
'content/examples/toh-pt6/src/app/hero.service.ts',
'content/examples/universal/src/app/app.server.module.ts',
'content/examples/universal/src/server.ts',
'content/examples/universal/src/webpack.server.config.js',
'tools/transforms/templates/lib/githubLinks.html',
];
const promiseGlob = promisify(glob);
async function main() {
const aioOriginDir = 'origin/aio';
const aioJaDir = 'aio-ja';
const searchFiles = async () => {
const globResults = await Promise.all(copyTargets.map(target => {
return promiseGlob(path.resolve(aioOriginDir, target), {});
}));
return globResults.reduce((files, result) => [...files, ...(result.map(file => path.relative(aioOriginDir, file)))], []);
}
const files = await searchFiles();
const copy = (file) => {
const ext = path.extname(file);
const enFilePath = file.replace(`${ext}`, `.en${ext}`);
const src = fs.readFileSync(path.resolve(aioOriginDir, file), { encoding: 'utf8' });
let isTranslated = false;
try {
fs.accessSync(path.resolve(aioJaDir, enFilePath));
isTranslated = true;
} catch (err) { }
fs.writeFileSync(path.resolve(aioJaDir, isTranslated ? enFilePath : file), src, { encoding: 'utf8' });
};
files.forEach(copy);
}
main().catch(err => {
console.error(err);
process.exit(1);
});