forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
md-translation.js
283 lines (244 loc) · 5.91 KB
/
md-translation.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
const fs = require('fs-extra');
const path = require('path');
const YAML = require('js-yaml');
const readDirP = require('readdirp-walk');
const {
parseMarkdown
} = require('@freecodecamp/challenge-md-parser');
const {
Translate
} = require('@google-cloud/translate');
const lang = 'pt';
const langFull = 'portuguese';
const outputDir = path.resolve(__dirname, `./challenges/${langFull}`);
fs.ensureDirSync(outputDir);
readDirP({
root: path.resolve(__dirname, `./challenges/english`)
})
.on('data', translateChallenge);
async function translateChallenge(file) {
const {
name,
depth,
path: filePath,
fullPath,
stat
} = file;
if (stat.isDirectory() || name === '.DS_Store') return null;
const blockName = getBlockNameFromPath(filePath);
const {
fileName: superBlock
} = superBlockInfoFromPath(filePath);
const outputFile = `${outputDir}/${superBlock}/${blockName}/${name.replace('english', langFull)}`;
if (fs.existsSync(outputFile)) return null;
const challenge = await parseMarkdown(fullPath);
const {
title,
description,
instructions,
tests
} = challenge;
challenge['videoUrl'] = '';
if (challenge['guideUrl']) challenge['guideUrl'] = challenge['guideUrl'].replace('www', langFull);
const translatePromises = [
translateText(title),
translateText(description),
translateText(instructions),
...tests.map(test => new Promise(async (resolve, reject) => {
const {
testString,
text
} = test;
const translatedText = await translateText(text);
return resolve({
text: translatedText ? translatedText.join(' ').trim() : '',
testString
});
}
))
];
return Promise.all(translatePromises).then(([title, description, instructions, ...tests]) => {
const {
description: oldDescription = [],
instructions: oldInstructions = [],
files = {},
tests: oldTests = [],
solutions = [],
...challengeMeta
} = challenge;
const md = `---
${YAML.dump(Object.assign(challengeMeta, {localeTitle: title ? title.join(' ').trim() : ''}), { lineWidth: 10000 })}---
## Description
${description}
## Instructions
${instructions}
## Tests
<section id='tests'>
\`\`\`yml
${YAML.dump({ tests }, { lineWidth: 10000 })}
\`\`\`
</section>
## Challenge Seed
<section id='challengeSeed'>
${generateChallengeSeed(files)}
</section>
## Solution
<section id='solution'>
${
solutions.length === 0
? `\`\`\`js
// solution required
\`\`\``
: solutions
.map(
solution => `
\`\`\`js
${solution}
\`\`\`
`
)
.join('\n')
}
</section>
`;
console.log(outputFile);
fs.ensureFileSync(outputFile);
fs.writeFile(outputFile, md);
});
}
function generateChallengeSeed(files) {
return Object.keys(files)
.map(key => files[key])
.map(file => {
const {
ext,
contents = [],
head = [],
tail = []
} = file;
return `
<div id='${ext}-seed'>
\`\`\`${ext}
${contents}
\`\`\`
</div>
${
head.length
? `
### Before Test
<div id='${ext}-setup'>
\`\`\`${ext}
${head}
\`\`\`
</div>`
: ''
}
${
tail.length
? `
### After Test
<div id='${ext}-teardown'>
\`\`\`js
console.info('after the test');
\`\`\`
</div>`
: ''
}
`;
});
}
const createTranslateText = target => (text) => {
if (!text) return '';
const translate = new Translate();
return translate
.translate(text, target)
.then(results => {
let translations = results[0];
translations = Array.isArray(translations) ?
translations : [translations];
return translations;
})
.catch(err => {
console.log(err);
});
}
const translateText = createTranslateText(lang);
function superBlockInfoFromPath(filePath) {
const [maybeSuper] = filePath.split('/');
return superBlockInfo(maybeSuper);
}
function superBlockInfo(fileName) {
const [maybeOrder, ...superBlock] = fileName.split('-');
let order = parseInt(maybeOrder, 10);
if (isNaN(order)) {
return {
order: 0,
name: fileName
};
} else {
return {
order: order,
name: superBlock.join('-'),
fileName
};
}
}
function getBlockNameFromPath(filePath) {
const [, block] = filePath.split('/');
return block;
}
// const curriculum = {
// 'responsive-web-design': {}
// }
// getChallenges().forEach(block => {
// const {
// name,
// order,
// challenges,
// time = '',
// superBlock,
// superOrder,
// template = '',
// required = [],
// ...restBlock
// } = block;
// const blockDashedName = dasherize(name);
// const blockMeta = {
// name,
// dashedName: blockDashedName,
// order,
// time,
// template,
// required,
// superBlock,
// superOrder,
// challengeOrder: challenges.map(({ id, title }) => [id, title]),
// ...restBlock
// };
// const superOrderPrefix = `0${superOrder}`;
// const outputDir = path.resolve(
// __dirname,
// `./challenges/english/${superOrderPrefix}-${superBlock}/${blockDashedName}`
// );
// fs.ensureDirSync(outputDir);
// challenges.forEach(challenge => {
// const {
// description: oldDescription = [],
// files = {},
// tests = [],
// solutions = [],
// ...restChallenge
// } = challenge;
// const challengeMeta = omit(restChallenge, blackListedFieldNames);
// const challengeFileName = `${dasherize(challenge.title)}.english.md`;
// let description = '';
// let instructions = '';
// const hrIndex = findLastIndex(oldDescription, el =>
// (/^<hr\s?\/?>$/).test(el)
// );
// if (hrIndex && hrIndex !== -1) {
// description = oldDescription.slice(0, hrIndex).join('\n');
// instructions = oldDescription.slice(hrIndex + 1).join('\n');
// } else {
// description = oldDescription.join('\n');
// }