@zap-wunschlachen/wl-shared-components 1.0.53 → 1.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,8 +4,32 @@ on:
4
4
  workflow_dispatch:
5
5
  push:
6
6
  branches: [develop]
7
+ paths:
8
+ - "src/**"
9
+ - "tests/**"
10
+ - ".storybook/**"
11
+ - "scripts/**"
12
+ - "public/**"
13
+ - "package.json"
14
+ - "package-lock.json"
15
+ - "playwright.config.ts"
16
+ - "tsconfig.json"
17
+ - "vite.config.ts"
18
+ - ".github/workflows/playwright.yml"
7
19
  pull_request:
8
20
  branches: [develop]
21
+ paths:
22
+ - "src/**"
23
+ - "tests/**"
24
+ - ".storybook/**"
25
+ - "scripts/**"
26
+ - "public/**"
27
+ - "package.json"
28
+ - "package-lock.json"
29
+ - "playwright.config.ts"
30
+ - "tsconfig.json"
31
+ - "vite.config.ts"
32
+ - ".github/workflows/playwright.yml"
9
33
 
10
34
  jobs:
11
35
  test:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zap-wunschlachen/wl-shared-components",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -18,7 +18,10 @@
18
18
  "test:e2e:headed": "playwright test --headed",
19
19
  "test:e2e:ui": "playwright test --ui",
20
20
  "test:e2e:report": "playwright show-report",
21
- "test:e2e:update-snapshots": "playwright test tests/e2e/visual-regression.spec.ts --update-snapshots"
21
+ "test:e2e:update-snapshots": "playwright test tests/e2e/visual-regression.spec.ts --update-snapshots",
22
+ "check-translations:local": "npx tsx scripts/check-translations.ts --diff",
23
+ "check-translations:staging": "npx tsx scripts/check-translations.ts -- --url=https://staging.wunschlachen.app --diff",
24
+ "check-translations:live": "npx tsx scripts/check-translations.ts -- --url=https://wunschlachen.app --diff"
22
25
  },
23
26
  "devDependencies": {
24
27
  "@axe-core/playwright": "^4.10.2",
@@ -49,7 +52,8 @@
49
52
  "vite": "^5.2.0",
50
53
  "vitest": "^3.2.4",
51
54
  "vue": "^3.5.11",
52
- "wait-on": "^8.0.4"
55
+ "wait-on": "^8.0.4",
56
+ "tsx": "^4.21.0"
53
57
  },
54
58
  "dependencies": {
55
59
  "@heroicons/vue": "^2.1.5",
@@ -0,0 +1,388 @@
1
+ import { promises as fs } from "fs";
2
+ import { join } from "path";
3
+
4
+ // Parse command line args for --url=<server_url>
5
+ function getServerUrl(): string | undefined {
6
+ const urlArg = process.argv.find((arg) => arg.startsWith("--url="));
7
+ return urlArg?.split("=")[1];
8
+ }
9
+
10
+ // Parse command line args for --local=<path>
11
+ function getLocalPath(): string | undefined {
12
+ const localArg = process.argv.find((arg) => arg.startsWith("--local="));
13
+ return localArg?.split("=")[1];
14
+ }
15
+
16
+ // Parse command line args for --diff[=<path>]
17
+ function getDiffDir(): string | undefined {
18
+ const diffArg = process.argv.find(
19
+ (arg) => arg === "--diff" || arg.startsWith("--diff="),
20
+ );
21
+ if (!diffArg) {
22
+ return undefined;
23
+ }
24
+ if (diffArg === "--diff") {
25
+ return "";
26
+ }
27
+ return diffArg.slice("--diff=".length);
28
+ }
29
+
30
+ async function scanFilesForKeys(dir: string): Promise<Set<string>> {
31
+ const usedKeys = new Set<string>();
32
+ const keyRegex = /(?<![a-zA-Z])\$?t\(['"]([^'"]+)['"]\)/g;
33
+
34
+ async function processDir(currentDir: string) {
35
+ const entries = await fs.readdir(currentDir, { withFileTypes: true });
36
+ for (const entry of entries) {
37
+ const fullPath = join(currentDir, entry.name);
38
+ if (entry.isDirectory() && !entry.name.startsWith(".")) {
39
+ await processDir(fullPath);
40
+ } else if (
41
+ entry.isFile() &&
42
+ (entry.name.endsWith(".vue") || entry.name.endsWith(".ts"))
43
+ ) {
44
+ const content = await fs.readFile(fullPath, "utf-8");
45
+ let match;
46
+ while ((match = keyRegex.exec(content)) !== null) {
47
+ usedKeys.add(match[1]);
48
+ }
49
+ }
50
+ }
51
+ }
52
+
53
+ await processDir(dir);
54
+ return usedKeys;
55
+ }
56
+
57
+ function flattenObject(
58
+ obj: Record<string, unknown>,
59
+ prefix = "",
60
+ ): Record<string, string> {
61
+ const result: Record<string, string> = {};
62
+
63
+ for (const [key, value] of Object.entries(obj)) {
64
+ const newKey = prefix ? `${prefix}.${key}` : key;
65
+
66
+ if (typeof value === "object" && value !== null && !Array.isArray(value)) {
67
+ Object.assign(result, flattenObject(value as Record<string, unknown>, newKey));
68
+ } else {
69
+ result[newKey] = String(value);
70
+ }
71
+ }
72
+
73
+ return result;
74
+ }
75
+
76
+ async function loadTranslationsFromFiles(
77
+ localesDir: string,
78
+ ): Promise<Record<string, Record<string, string>>> {
79
+ const byLang: Record<string, Record<string, string>> = {};
80
+
81
+ console.log(`[i18n] Loading translations from ${localesDir}...`);
82
+
83
+ try {
84
+ const files = await fs.readdir(localesDir);
85
+ for (const file of files) {
86
+ if (file.endsWith(".json")) {
87
+ const language = file.replace(".json", "");
88
+ const content = await fs.readFile(join(localesDir, file), "utf-8");
89
+ const parsed = JSON.parse(content);
90
+ byLang[language] = flattenObject(parsed);
91
+ }
92
+ }
93
+
94
+ const totalEntries = Object.values(byLang).reduce(
95
+ (sum, lang) => sum + Object.keys(lang).length,
96
+ 0,
97
+ );
98
+ console.log(
99
+ `[i18n] Loaded ${totalEntries} entries for ${Object.keys(byLang).length} locale(s)`,
100
+ );
101
+ } catch (error) {
102
+ console.error(`[i18n] Could not read translations from ${localesDir}: ${error}`);
103
+ process.exit(1);
104
+ }
105
+
106
+ return byLang;
107
+ }
108
+
109
+ async function fetchTranslationsFromDirectus(
110
+ serverUrl: string,
111
+ ): Promise<Record<string, Record<string, string>>> {
112
+ const byLang: Record<string, Record<string, string>> = {};
113
+ const url = `${serverUrl}/translations?fields=id,language,key,value&limit=-1&sort=key`;
114
+
115
+ console.log(`[i18n] Fetching translations from ${serverUrl}...`);
116
+
117
+ try {
118
+ const res = await fetch(url, {
119
+ headers: { "Content-Type": "application/json" },
120
+ });
121
+
122
+ if (!res.ok) {
123
+ throw new Error(`Server returned ${res.status} ${res.statusText}`);
124
+ }
125
+
126
+ const data = await res.json();
127
+ const entries = data.data || [];
128
+
129
+ if (!entries || entries.length === 0) {
130
+ console.error("[i18n] No translation entries found on server");
131
+ process.exit(1);
132
+ }
133
+
134
+ entries.forEach(
135
+ (entry: { language: string; key: string; value: string }) => {
136
+ const { language, key, value } = entry;
137
+ if (!byLang[language]) {
138
+ byLang[language] = {};
139
+ }
140
+ byLang[language][key] = value;
141
+ },
142
+ );
143
+
144
+ console.log(
145
+ `[i18n] Loaded ${entries.length} entries for ${Object.keys(byLang).length} locale(s)`,
146
+ );
147
+ } catch (error) {
148
+ console.error(`[i18n] Failed to fetch translations: ${error}`);
149
+ process.exit(1);
150
+ }
151
+
152
+ return byLang;
153
+ }
154
+
155
+ const DEFAULT_LOCALES_PATH = "src/i18n/locales";
156
+
157
+ async function checkTranslations() {
158
+ // Show help
159
+ if (process.argv.includes("--help") || process.argv.includes("-h")) {
160
+ console.log(`
161
+ Usage: npx tsx scripts/check-translations.ts [options]
162
+
163
+ Options:
164
+ --url=<server_url> Fetch translations from Directus server
165
+ Example: --url=https://api.example.com
166
+ --local=<path> Load translations from local JSON files (default: ${DEFAULT_LOCALES_PATH})
167
+ Example: --local=./i18n/locales
168
+ --diff[=<path>] Write per-locale Directus import JSON for missing keys
169
+ Example: --diff=./missing-translations
170
+
171
+ If --url is not provided, translations are loaded from local files.
172
+
173
+ Examples:
174
+ npx tsx scripts/check-translations.ts --url=https://api.example.com
175
+ npx tsx scripts/check-translations.ts --local=./custom/path
176
+ npx tsx scripts/check-translations.ts --diff=./missing-translations
177
+ npx tsx scripts/check-translations.ts --diff
178
+ npx tsx scripts/check-translations.ts
179
+ `);
180
+ process.exit(0);
181
+ }
182
+
183
+ const serverUrl = getServerUrl();
184
+ const localPath = getLocalPath() ?? join(process.cwd(), DEFAULT_LOCALES_PATH);
185
+ const diffDirArg = getDiffDir();
186
+ const diffDir =
187
+ diffDirArg === undefined
188
+ ? undefined
189
+ : diffDirArg === ""
190
+ ? process.cwd()
191
+ : diffDirArg;
192
+
193
+ const srcDir = join(process.cwd(), "src/components");
194
+
195
+ console.log("[i18n] Scanning code for translation keys...");
196
+
197
+ let usedKeys: Set<string>;
198
+ try {
199
+ usedKeys = await scanFilesForKeys(srcDir);
200
+ } catch {
201
+ console.error("[i18n] Could not scan for translation keys in code");
202
+ process.exit(1);
203
+ }
204
+
205
+ if (usedKeys.size === 0) {
206
+ console.log("[i18n] No translation keys found in code");
207
+ return;
208
+ }
209
+
210
+ console.log(`[i18n] Found ${usedKeys.size} unique translation keys in code`);
211
+
212
+ const byLang = serverUrl
213
+ ? await fetchTranslationsFromDirectus(serverUrl)
214
+ : await loadTranslationsFromFiles(localPath);
215
+
216
+ if (Object.keys(byLang).length === 0) {
217
+ console.error("[i18n] No translations found");
218
+ process.exit(1);
219
+ }
220
+
221
+ let hasMissingKeys = false;
222
+ const diffEntriesByLocale = new Map<
223
+ string,
224
+ Array<{ language: string; key: string; value: string }>
225
+ >();
226
+ const diffIndexByLocale = new Map<string, Set<string>>();
227
+ const source = serverUrl ? "Directus" : "local files";
228
+
229
+ // Check each locale for keys used in code but missing from translations
230
+ for (const [language, translations] of Object.entries(byLang)) {
231
+ const translationKeys = new Set(Object.keys(translations));
232
+
233
+ const missingInTranslations = [...usedKeys]
234
+ .filter((key) => !translationKeys.has(key))
235
+ .sort();
236
+
237
+ if (missingInTranslations.length > 0) {
238
+ hasMissingKeys = true;
239
+ console.warn(
240
+ `\n[i18n] ⚠️ ${language}: ${missingInTranslations.length} key(s) used in code but missing in ${source}:`,
241
+ );
242
+ missingInTranslations.forEach((key) => console.warn(` - ${key}`));
243
+ if (diffDir) {
244
+ missingInTranslations.forEach((key) => {
245
+ const localeIndex =
246
+ diffIndexByLocale.get(language) ?? new Set<string>();
247
+ if (!diffIndexByLocale.has(language)) {
248
+ diffIndexByLocale.set(language, localeIndex);
249
+ }
250
+ if (localeIndex.has(key)) {
251
+ return;
252
+ }
253
+ localeIndex.add(key);
254
+
255
+ const localeEntries =
256
+ diffEntriesByLocale.get(language) ??
257
+ ([] as Array<{ language: string; key: string; value: string }>);
258
+ if (!diffEntriesByLocale.has(language)) {
259
+ diffEntriesByLocale.set(language, localeEntries);
260
+ }
261
+ localeEntries.push({
262
+ language,
263
+ key,
264
+ value: "",
265
+ });
266
+ });
267
+ }
268
+ } else {
269
+ console.log(
270
+ `[i18n] ✅ ${language}: All keys used in code exist in ${source}`,
271
+ );
272
+ }
273
+ }
274
+
275
+ // Check cross-locale consistency (pairwise, both directions)
276
+ const locales = Object.keys(byLang);
277
+ if (locales.length > 1) {
278
+ for (let i = 0; i < locales.length; i++) {
279
+ const localeA = locales[i];
280
+ const keysA = new Set(Object.keys(byLang[localeA]));
281
+
282
+ for (let j = i + 1; j < locales.length; j++) {
283
+ const localeB = locales[j];
284
+ const keysB = new Set(Object.keys(byLang[localeB]));
285
+
286
+ const missingFromA = [...keysB].filter((key) => !keysA.has(key)).sort();
287
+ if (missingFromA.length > 0) {
288
+ hasMissingKeys = true;
289
+ console.warn(
290
+ `\n[i18n] ⚠️ ${localeA} is missing ${missingFromA.length} key(s) present in ${localeB}:`,
291
+ );
292
+ missingFromA.forEach((key) => console.warn(` - ${key}`));
293
+ if (diffDir) {
294
+ missingFromA.forEach((key) => {
295
+ const localeIndex =
296
+ diffIndexByLocale.get(localeA) ?? new Set<string>();
297
+ if (!diffIndexByLocale.has(localeA)) {
298
+ diffIndexByLocale.set(localeA, localeIndex);
299
+ }
300
+ if (localeIndex.has(key)) {
301
+ return;
302
+ }
303
+ localeIndex.add(key);
304
+
305
+ const localeEntries =
306
+ diffEntriesByLocale.get(localeA) ??
307
+ ([] as Array<{ language: string; key: string; value: string }>);
308
+ if (!diffEntriesByLocale.has(localeA)) {
309
+ diffEntriesByLocale.set(localeA, localeEntries);
310
+ }
311
+ localeEntries.push({
312
+ language: localeA,
313
+ key,
314
+ value: byLang[localeB][key],
315
+ });
316
+ });
317
+ }
318
+ }
319
+
320
+ const missingFromB = [...keysA].filter((key) => !keysB.has(key)).sort();
321
+ if (missingFromB.length > 0) {
322
+ hasMissingKeys = true;
323
+ console.warn(
324
+ `\n[i18n] ⚠️ ${localeB} is missing ${missingFromB.length} key(s) present in ${localeA}:`,
325
+ );
326
+ missingFromB.forEach((key) => console.warn(` - ${key}`));
327
+ if (diffDir) {
328
+ missingFromB.forEach((key) => {
329
+ const localeIndex =
330
+ diffIndexByLocale.get(localeB) ?? new Set<string>();
331
+ if (!diffIndexByLocale.has(localeB)) {
332
+ diffIndexByLocale.set(localeB, localeIndex);
333
+ }
334
+ if (localeIndex.has(key)) {
335
+ return;
336
+ }
337
+ localeIndex.add(key);
338
+
339
+ const localeEntries =
340
+ diffEntriesByLocale.get(localeB) ??
341
+ ([] as Array<{ language: string; key: string; value: string }>);
342
+ if (!diffEntriesByLocale.has(localeB)) {
343
+ diffEntriesByLocale.set(localeB, localeEntries);
344
+ }
345
+ localeEntries.push({
346
+ language: localeB,
347
+ key,
348
+ value: byLang[localeA][key],
349
+ });
350
+ });
351
+ }
352
+ }
353
+ }
354
+ }
355
+ }
356
+
357
+ if (diffDir) {
358
+ try {
359
+ await fs.mkdir(diffDir, { recursive: true });
360
+ let totalEntries = 0;
361
+ for (const [locale, entries] of diffEntriesByLocale.entries()) {
362
+ const filePath = join(diffDir, `${locale}-missing.json`);
363
+ totalEntries += entries.length;
364
+ await fs.writeFile(filePath, JSON.stringify(entries, null, 2), "utf-8");
365
+ console.log(`[i18n] Wrote ${entries.length} entry(ies) to ${filePath}`);
366
+ }
367
+ if (diffEntriesByLocale.size === 0) {
368
+ console.log(`[i18n] No missing keys to write in ${diffDir}`);
369
+ } else {
370
+ console.log(
371
+ `[i18n] Wrote ${totalEntries} total entry(ies) across ${diffEntriesByLocale.size} locale file(s)`,
372
+ );
373
+ }
374
+ } catch (error) {
375
+ console.error(`[i18n] Failed to write diff JSON to ${diffDir}: ${error}`);
376
+ process.exit(1);
377
+ }
378
+ }
379
+
380
+ if (hasMissingKeys) {
381
+ console.log("\n[i18n] ❌ Translation check failed - missing keys found");
382
+ process.exit(1);
383
+ } else {
384
+ console.log(`\n[i18n] ✅ All translation keys are present in ${source}`);
385
+ }
386
+ }
387
+
388
+ checkTranslations();
@@ -4,7 +4,6 @@
4
4
  flex-direction: column;
5
5
  gap: 24px;
6
6
  align-items: flex-start;
7
- max-width: 1120px;
8
7
  padding: 0 16px;
9
8
  width: 100%;
10
9
  }
@@ -329,14 +329,14 @@ function onNativeDateChange(e: Event) {
329
329
  }
330
330
  }
331
331
 
332
- // Computed property to expose isValid
333
- const isValid = computed(() => inputState.value === 'success');
332
+ // Computed property to expose validity status
333
+ const isDateValid = computed(() => inputState.value === 'success');
334
334
 
335
335
  defineExpose({
336
336
  focus: () => inputRef.value?.focus?.(),
337
337
  blur: () => inputRef.value?.blur?.(),
338
338
  select: () => inputRef.value?.select?.(),
339
- isValid
339
+ isValid: isDateValid
340
340
  })
341
341
  </script>
342
342