-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
79 lines (70 loc) · 1.92 KB
/
index.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
const t = require('babel-types');
const { parse } = require('babylon');
const { readFile } = require('fs');
const { default: traverse } = require('babel-traverse');
const chunks = [];
const stdin = process.stdin;
stdin.setEncoding('utf8');
stdin.on('data', chunk => chunks.push(chunk));
stdin.on('end', () => {
const files = chunks.join('').trim().split('\n');
if (files.length === 0) {
return;
}
Promise.all(
files.map(
file => new Promise((resolve, reject) => {
readFile(file, 'utf-8', (error, content) => {
if (error) {
console.error(
`Could not read file "${file}" due to error, skipping.`
);
return resolve(null);
}
try {
const keys = findTranslationKeys(content);
if (keys.length > 0) {
resolve({
file,
keys
});
} else {
resolve(null);
}
} catch (error) {
console.error(
`Could not parse file "${file}" due to error, skipping.`
);
return resolve(null);
}
});
})
)
).then(translations => {
console.log(
JSON.stringify(translations.filter(translation => !!translation), null, 2)
);
});
});
function findTranslationKeys(code) {
const keys = [];
traverse(parse(code), {
CallExpression(path) {
if (isTranslationCall(path)) {
const key = path.get('arguments')[0];
if (key.isStringLiteral()) {
const { loc, value } = key.node;
keys.push({ loc, value });
}
}
}
});
return keys;
}
function isTranslationCall(path) {
const callee = path.get('callee');
return callee.isMemberExpression() &&
callee.get('object').isIdentifier({ name: 'Lang' }) &&
callee.get('property').isIdentifier({ name: 'get' });
}
module.exports = findTranslationKeys;