-
Notifications
You must be signed in to change notification settings - Fork 12
/
bin.js
executable file
·275 lines (242 loc) · 8.51 KB
/
bin.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
#!/usr/bin/env node
const fs = require('fs')
const path = require('path')
const glob = require('glob')
const chalk = require('chalk')
const replaceAll = require('replace-string')
const inquirer = require('inquirer')
const Manager = require('./')
var manager = null
require('yargs') // eslint-disable-line
.command('translate', 'Translate vue files in path', (yargs) => {
yargs
.option('askKey', {
describe: 'Possibility to edit the auto-generated key'
})
}, (argv) => {
manager = setUpManager(argv)
launchInteractiveTranslationPrompt(argv.askKey)
})
.command('clean', 'Remove unused translations from translations resource', (yargs) => {
}, async (argv) => {
manager = setUpManager(argv)
var unusedTranslations = await manager.getUnusedTranslations()
console.log('❗️ The following translations are not used anywhere:')
unusedTranslations.map((translation) => {
console.log(chalk.bold('> ') + chalk.gray(translation))
})
var prompt = inquirer.createPromptModule()
prompt([{
type: 'list',
name: 'mode',
message: 'What do you want to do with them?',
choices: [
{ name: 'Delete', value: 'delete' },
{ name: 'Ask for each', value: 'ask' },
{ name: 'Nothing', value: 'nothing' }
]
}]).then(async (choice) => {
if (choice.mode === 'nothing') process.exit(0)
if (choice.mode === 'delete') {
await manager.deleteTranslations(unusedTranslations)
console.log('🎉 Deleted all unused translations')
process.exit(0)
}
if (choice.mode === 'ask') {
let choices = unusedTranslations.map((translation) => {
return {
type: 'list',
name: translation.replace(/\./g, '/'),
message: `Do you want to delete "${translation}"?`,
choices: [
{ name: 'Yes', value: true },
{ name: 'No', value: false }
]
}
})
let deletions = []
prompt(choices).then(async (answers) => {
Object.keys(answers).map((key) => {
if (answers[key]) deletions.push(key.replace(/\//g, '.'))
})
await manager.deleteTranslations(deletions)
console.log('🎉 Deleted selected translations')
})
}
})
})
.command('add [key]', 'Add a new translation to the resource file(s)', (yargs) => {
yargs
.positional('key', {
describe: 'Key for the new translation'
})
}, (argv) => {
manager = setUpManager(argv)
var questions = []
var prompt = inquirer.createPromptModule()
manager.getLanguages().map((lang) => {
questions.push({
type: 'input',
message: `[${lang}] Translation for "${argv.key}"`,
name: lang
})
})
prompt(questions).then((answers) => {
manager.addTranslatedString(argv.key, answers)
console.log(chalk.green('Added translated string 👍🏻'))
})
})
.command('edit [key]', 'Edit an existing translation', (yargs) => {
yargs
.positional('key', {
describe: 'Key of the translation to edit'
})
}, async (argv) => {
manager = setUpManager(argv)
let translations = await manager.getTranslationsForKey(argv.key)
var questions = []
var prompt = inquirer.createPromptModule()
manager.getLanguages().map((lang) => {
questions.push({
type: 'input',
message: `[${lang}] Translation for "${argv.key}"`,
name: lang,
default: translations[lang] || ''
})
})
prompt(questions).then((answers) => {
manager.addTranslatedString(argv.key, answers)
console.log(chalk.green('Successfully edited translations ✌🏻'))
})
})
.command('delete [key]', 'Delete an existing translation', (yargs) => {
yargs
.positional('key', {
describe: 'Key of the translation to delete'
})
}, async (argv) => {
manager = setUpManager(argv)
await manager.deleteTranslations(argv.key)
console.log(chalk.green('Successfully deleted translation 💥'))
})
.command('validate', 'Checks if translated messages are available in all configured languages', (yargs) => {
}, async (argv) => {
manager = setUpManager(argv)
let missingKeys = await manager.validate()
if (Object.keys(missingKeys).length > 0) {
console.log(`❗️️ Messages incomplete.\n\nThe following keys are missing:`)
Object.keys(missingKeys).map((index) => {
const keys = missingKeys[index]
const count = keys.length
console.log(`\nLanguage: ${chalk.red.bold(index)}\nKeys missing: ${chalk.red.bold(count)}:\n ${chalk.red(keys.join('\n '))}`)
})
process.exit(1)
}
console.log(chalk.green('Looking good! 👌🏻'))
})
.argv
function launchInteractiveTranslationPrompt (askKey) {
var globPattern = `${manager.getSrcPath()}/**/*.vue`
var files = glob.sync(globPattern, null)
var untranslatedComponents = files.filter((file) => containsUntranslatedStrings(file)).map((file) => path.relative(process.cwd(), file))
if (!untranslatedComponents.length) {
console.log(chalk.green('All components translated'))
process.exit(0)
}
var prompt = inquirer.createPromptModule()
prompt([{
type: 'list',
name: 'file',
message: 'Choose the next file to translate',
choices: untranslatedComponents
}]).then(async (answers) => {
var filePath = path.resolve(answers.file)
var strings = manager.getStringsForComponent(filePath)
var questions = []
var replacements = []
var usedKeys = []
for (var i = 0; i < strings.length; i++) {
let str = strings[i]
var key = await manager.getSuggestedKey(filePath, str.string, usedKeys)
usedKeys.push(key)
replacements.push({
key: key,
where: str.where,
indexInFile: str.indexInFile,
stringLength: str.stringLength,
expressions: str.expressions
})
if (askKey) {
questions.push({
type: 'input',
message: `Key for "${str.string}"`,
name: `${replaceAll(key, '.', '/')}.key`,
default: key
})
}
let textForDisplay = ''
let defaultString = ''
if (str.expressions) {
let i = 1
let lastIndex = 0
str.expressions.map((expression) => {
textForDisplay += str.originalString.substring(lastIndex, expression.indexStart)
defaultString += str.originalString.substring(lastIndex, expression.indexStart)
lastIndex = expression.indexEnd + 2
textForDisplay += `${chalk.red(`{{${expression.expr}}}`)}${chalk.blue(`{${i}}`)}`
defaultString += `{${i}}`
i++
})
textForDisplay += str.originalString.substring(lastIndex)
defaultString += str.originalString.substring(lastIndex)
}
manager.getLanguages().map((lang) => {
questions.push({
type: 'input',
message: `[${lang}] Translation for "${textForDisplay}"`,
name: `${replaceAll(key, '.', '/')}.${lang}`,
default: defaultString
})
})
}
prompt(questions).then(async (answers) => {
let keys = Object.keys(answers)
for (var i = 0; i < keys.length; i++) {
let key = keys[i]
var keyInitial = replaceAll(key, '/', '.')
var newKey = keyInitial
if (answers[key].key) {
if (answers[key].key !== keyInitial) {
newKey = answers[key].key
if (newKey.indexOf('.') < 0) {
newKey = keyInitial.substring(0, keyInitial.lastIndexOf('.') + 1) + newKey
}
newKey = await manager.getCompatibleKey(newKey)
replacements.find((replacement) => replacement.key === keyInitial).key = newKey
}
delete answers[key].key
}
await manager.addTranslatedString(newKey, answers[key])
}
manager.replaceStringsInComponent(filePath, replacements)
prompt([{
type: 'confirm',
name: 'continue',
default: true,
message: '✨ Translated strings! Do you want to continue?'
}]).then((answers) => {
if (!answers.continue) process.exit(0)
launchInteractiveTranslationPrompt(askKey)
})
})
})
}
function containsUntranslatedStrings (filePath) {
fs.readFileSync(filePath, { encoding: 'utf8' })
var results = manager.getStringsForComponent(filePath)
return (results && results.length > 0)
}
function setUpManager () {
let config = require(path.join(process.cwd(), '.vue-translation.js'))
return new Manager(config)
}