From 188840ccaabfbe084f3d09df9cfd837753b4be7e Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Thu, 26 Dec 2024 12:39:31 +0100 Subject: [PATCH] feat: all passed --- src/utils/validate-translations.spec.js | 32 +++++++++++++++---------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/src/utils/validate-translations.spec.js b/src/utils/validate-translations.spec.js index f69a3a812..03c74e2ac 100644 --- a/src/utils/validate-translations.spec.js +++ b/src/utils/validate-translations.spec.js @@ -4,7 +4,6 @@ import path from 'path'; import { glob } from 'glob'; import yaml from 'js-yaml'; -const localesPath = path.resolve(__dirname + '../../i18n/locale'); let locales = {}; async function init() { const files = await glob(['src/i18n/locale/**.yml', 'src/pages/**/locale/*.yml']); @@ -43,7 +42,8 @@ describe('🔍 Translation Keys Validation', async () => { 'src/pages/**/*.vue', 'src/components/**/*.vue', ]); - const regex = /\$t\(['"`]([\w.]+)['"`]\)|t\(['"`]([\w.]+)['"`]\)/g; + + const regex = /(?:=\s*)\$t\(['"`]([\w.]+)['"`]\)|(?:=\s*)t\(['"`]([\w.]+)['"`]\)/g; vueFiles.forEach((file) => { const keys = new Set(); @@ -76,16 +76,24 @@ describe('🔍 Translation Keys Validation', async () => { } Object.entries(locales).forEach(([locale, translations]) => { it(`should have all translation keys in ${locale}.${file}`, () => { - const missingKeys = validateKeys(keys, translations); - // try { - console.info( - `xMissing keys in ${file}:${missingKeys.join(', ')}`, - missingKeys - ); - expect(missingKeys, `xxMissing keys in ${file}`).toHaveLength(0); - // } catch (error) { - // console.error(`xxxMissing keys in ${file}${missingKeys.join(', ')}`); - // } + let missingKeys = validateKeys(keys, translations); + if (missingKeys.length > 0) { + const parts = file.split(path.sep); + const cardIndex = parts.indexOf('Card'); + if (cardIndex > 0) { + let previousElement = parts[cardIndex - 1]; + previousElement = + previousElement.charAt(0).toLowerCase() + + previousElement.slice(1); + console.log(`Elemento anterior a 'Card': ${previousElement}`); + const updatedKeys = new Set(); + keys.forEach((key) => { + updatedKeys.add(`${previousElement}.${key}`); + }); + missingKeys = validateKeys(updatedKeys, translations); + } + } + expect(missingKeys, `Missing keys in ${file}`).toHaveLength(0); }); }); });