@polymorphism-tech/morph-spec 2.1.2 → 2.3.0

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.
@@ -0,0 +1,422 @@
1
+ /**
2
+ * UI Contrast Validator
3
+ *
4
+ * Validates color contrast ratios for WCAG 2.1 AA compliance.
5
+ * Ensures text is readable for users with visual impairments.
6
+ *
7
+ * WCAG 2.1 AA Requirements:
8
+ * - Normal text: 4.5:1 minimum
9
+ * - Large text (18pt+ or 14pt+ bold): 3:1 minimum
10
+ * - UI components: 3:1 minimum
11
+ *
12
+ * MORPH-SPEC 3.0 - Sprint 4
13
+ */
14
+
15
+ import { readFileSync } from 'fs';
16
+ import { glob } from 'glob';
17
+ import chalk from 'chalk';
18
+
19
+ /**
20
+ * WCAG Contrast Requirements
21
+ */
22
+ const WCAG_AA = {
23
+ normalText: 4.5,
24
+ largeText: 3.0,
25
+ uiComponents: 3.0
26
+ };
27
+
28
+ const WCAG_AAA = {
29
+ normalText: 7.0,
30
+ largeText: 4.5,
31
+ uiComponents: 3.0
32
+ };
33
+
34
+ /**
35
+ * UI Contrast Validator Class
36
+ */
37
+ export class UIContrastValidator {
38
+ constructor(projectPath = '.', wcagLevel = 'AA') {
39
+ this.projectPath = projectPath;
40
+ this.wcagLevel = wcagLevel;
41
+ this.requirements = wcagLevel === 'AAA' ? WCAG_AAA : WCAG_AA;
42
+ }
43
+
44
+ /**
45
+ * Validate all CSS files
46
+ */
47
+ async validateAll() {
48
+ const cssFiles = await glob('wwwroot/**/*.css', {
49
+ cwd: this.projectPath,
50
+ ignore: ['**/node_modules/**', '**/lib/**']
51
+ });
52
+
53
+ if (cssFiles.length === 0) {
54
+ return {
55
+ status: 'ok',
56
+ message: 'No CSS files found in wwwroot/'
57
+ };
58
+ }
59
+
60
+ const results = [];
61
+
62
+ for (const file of cssFiles) {
63
+ const result = await this.validateFile(file);
64
+ if (result.issues.length > 0) {
65
+ results.push({ file, ...result });
66
+ }
67
+ }
68
+
69
+ return {
70
+ status: results.length === 0 ? 'ok' : 'warning',
71
+ wcagLevel: this.wcagLevel,
72
+ totalFiles: cssFiles.length,
73
+ filesWithIssues: results.length,
74
+ results
75
+ };
76
+ }
77
+
78
+ /**
79
+ * Validate single CSS file
80
+ */
81
+ async validateFile(filePath) {
82
+ const content = readFileSync(filePath, 'utf-8');
83
+
84
+ // Extract color variables
85
+ const colors = this.extractColors(content);
86
+
87
+ if (colors.length === 0) {
88
+ return {
89
+ colors: [],
90
+ issues: []
91
+ };
92
+ }
93
+
94
+ // Check common color pairs
95
+ const issues = this.checkContrastPairs(colors);
96
+
97
+ return {
98
+ colors,
99
+ totalPairs: issues.length,
100
+ issues
101
+ };
102
+ }
103
+
104
+ /**
105
+ * Extract colors from CSS
106
+ */
107
+ extractColors(css) {
108
+ const colors = [];
109
+
110
+ // Extract CSS variables (--color-name: #hex)
111
+ const cssVarPattern = /--([a-zA-Z0-9-]+):\s*(#[0-9a-fA-F]{3,8}|rgb\([^)]+\)|rgba\([^)]+\))/g;
112
+ let match;
113
+
114
+ while ((match = cssVarPattern.exec(css)) !== null) {
115
+ const name = match[1];
116
+ const value = this.normalizeColor(match[2]);
117
+
118
+ if (value) {
119
+ colors.push({
120
+ name,
121
+ value,
122
+ type: this.inferColorType(name)
123
+ });
124
+ }
125
+ }
126
+
127
+ // Extract regular color declarations
128
+ const colorPattern = /(color|background|background-color|border-color):\s*(#[0-9a-fA-F]{3,8}|rgb\([^)]+\)|rgba\([^)]+\))/g;
129
+
130
+ while ((match = colorPattern.exec(css)) !== null) {
131
+ const property = match[1];
132
+ const value = this.normalizeColor(match[2]);
133
+
134
+ if (value && !colors.some(c => c.value === value)) {
135
+ colors.push({
136
+ name: `inline-${property}`,
137
+ value,
138
+ type: property.includes('background') ? 'background' : 'text'
139
+ });
140
+ }
141
+ }
142
+
143
+ return colors;
144
+ }
145
+
146
+ /**
147
+ * Normalize color to hex format
148
+ */
149
+ normalizeColor(colorString) {
150
+ const trimmed = colorString.trim();
151
+
152
+ // Already hex
153
+ if (trimmed.startsWith('#')) {
154
+ return this.expandHex(trimmed);
155
+ }
156
+
157
+ // rgb/rgba to hex
158
+ if (trimmed.startsWith('rgb')) {
159
+ return this.rgbToHex(trimmed);
160
+ }
161
+
162
+ return null;
163
+ }
164
+
165
+ /**
166
+ * Expand 3-digit hex to 6-digit
167
+ */
168
+ expandHex(hex) {
169
+ if (hex.length === 4) {
170
+ return '#' + hex[1] + hex[1] + hex[2] + hex[2] + hex[3] + hex[3];
171
+ }
172
+ return hex.substring(0, 7); // Remove alpha if present
173
+ }
174
+
175
+ /**
176
+ * Convert rgb/rgba to hex
177
+ */
178
+ rgbToHex(rgb) {
179
+ const match = rgb.match(/rgba?\((\d+),\s*(\d+),\s*(\d+)/);
180
+ if (!match) return null;
181
+
182
+ const r = parseInt(match[1]);
183
+ const g = parseInt(match[2]);
184
+ const b = parseInt(match[3]);
185
+
186
+ return '#' + [r, g, b].map(x => {
187
+ const hex = x.toString(16);
188
+ return hex.length === 1 ? '0' + hex : hex;
189
+ }).join('');
190
+ }
191
+
192
+ /**
193
+ * Infer color type from variable name
194
+ */
195
+ inferColorType(name) {
196
+ const lowerName = name.toLowerCase();
197
+
198
+ if (lowerName.includes('bg') || lowerName.includes('background')) {
199
+ return 'background';
200
+ }
201
+
202
+ if (lowerName.includes('text') || lowerName.includes('color') || lowerName.includes('foreground')) {
203
+ return 'text';
204
+ }
205
+
206
+ if (lowerName.includes('border')) {
207
+ return 'border';
208
+ }
209
+
210
+ return 'unknown';
211
+ }
212
+
213
+ /**
214
+ * Check contrast ratios for common color pairs
215
+ */
216
+ checkContrastPairs(colors) {
217
+ const issues = [];
218
+
219
+ const backgrounds = colors.filter(c => c.type === 'background');
220
+ const texts = colors.filter(c => c.type === 'text');
221
+
222
+ // If no explicit categorization, try all pairs
223
+ if (backgrounds.length === 0 || texts.length === 0) {
224
+ const allColors = colors;
225
+ for (let i = 0; i < allColors.length; i++) {
226
+ for (let j = i + 1; j < allColors.length; j++) {
227
+ const ratio = this.calculateContrastRatio(allColors[i].value, allColors[j].value);
228
+
229
+ if (ratio < this.requirements.normalText) {
230
+ issues.push({
231
+ level: 'warning',
232
+ background: allColors[i].name,
233
+ backgroundHex: allColors[i].value,
234
+ foreground: allColors[j].name,
235
+ foregroundHex: allColors[j].value,
236
+ ratio: ratio.toFixed(2),
237
+ required: this.requirements.normalText,
238
+ wcagLevel: this.wcagLevel,
239
+ pass: false,
240
+ message: `Low contrast: ${allColors[i].name} + ${allColors[j].name} = ${ratio.toFixed(2)}:1 (need ${this.requirements.normalText}:1)`
241
+ });
242
+ }
243
+ }
244
+ }
245
+ } else {
246
+ // Check explicit bg + text pairs
247
+ for (const bg of backgrounds) {
248
+ for (const text of texts) {
249
+ const ratio = this.calculateContrastRatio(bg.value, text.value);
250
+
251
+ if (ratio < this.requirements.normalText) {
252
+ issues.push({
253
+ level: 'warning',
254
+ background: bg.name,
255
+ backgroundHex: bg.value,
256
+ foreground: text.name,
257
+ foregroundHex: text.value,
258
+ ratio: ratio.toFixed(2),
259
+ required: this.requirements.normalText,
260
+ wcagLevel: this.wcagLevel,
261
+ pass: false,
262
+ message: `Low contrast: ${text.name} on ${bg.name} = ${ratio.toFixed(2)}:1 (need ${this.requirements.normalText}:1 for normal text)`
263
+ });
264
+ }
265
+ }
266
+ }
267
+ }
268
+
269
+ return issues;
270
+ }
271
+
272
+ /**
273
+ * Calculate contrast ratio (WCAG formula)
274
+ * https://www.w3.org/TR/WCAG21/#dfn-contrast-ratio
275
+ */
276
+ calculateContrastRatio(color1, color2) {
277
+ const l1 = this.getLuminance(color1);
278
+ const l2 = this.getLuminance(color2);
279
+
280
+ const lighter = Math.max(l1, l2);
281
+ const darker = Math.min(l1, l2);
282
+
283
+ return (lighter + 0.05) / (darker + 0.05);
284
+ }
285
+
286
+ /**
287
+ * Get relative luminance
288
+ * https://www.w3.org/TR/WCAG21/#dfn-relative-luminance
289
+ */
290
+ getLuminance(hex) {
291
+ const rgb = this.hexToRgb(hex);
292
+ if (!rgb) return 0;
293
+
294
+ const [r, g, b] = rgb.map(val => {
295
+ val = val / 255;
296
+ return val <= 0.03928
297
+ ? val / 12.92
298
+ : Math.pow((val + 0.055) / 1.055, 2.4);
299
+ });
300
+
301
+ return 0.2126 * r + 0.7152 * g + 0.0722 * b;
302
+ }
303
+
304
+ /**
305
+ * Convert hex to RGB
306
+ */
307
+ hexToRgb(hex) {
308
+ const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
309
+ return result ? [
310
+ parseInt(result[1], 16),
311
+ parseInt(result[2], 16),
312
+ parseInt(result[3], 16)
313
+ ] : null;
314
+ }
315
+
316
+ /**
317
+ * Suggest better color
318
+ */
319
+ suggestBetterColor(background, foreground, targetRatio) {
320
+ // Simple algorithm: lighten or darken foreground to meet ratio
321
+ const bgLuminance = this.getLuminance(background);
322
+ const fgRgb = this.hexToRgb(foreground);
323
+
324
+ if (!fgRgb) return null;
325
+
326
+ // If bg is light, darken fg
327
+ if (bgLuminance > 0.5) {
328
+ const factor = 0.7; // Darken by 30%
329
+ const newRgb = fgRgb.map(v => Math.floor(v * factor));
330
+ return this.rgbToHex(`rgb(${newRgb.join(', ')})`);
331
+ } else {
332
+ // If bg is dark, lighten fg
333
+ const factor = 1.3; // Lighten by 30%
334
+ const newRgb = fgRgb.map(v => Math.min(255, Math.floor(v * factor)));
335
+ return this.rgbToHex(`rgb(${newRgb.join(', ')})`);
336
+ }
337
+ }
338
+
339
+ /**
340
+ * Format validation results for console output
341
+ */
342
+ formatResults(results) {
343
+ if (results.status === 'ok') {
344
+ console.log(chalk.green(`✅ All colors meet WCAG ${results.wcagLevel} contrast requirements`));
345
+ return;
346
+ }
347
+
348
+ console.log(chalk.yellow(`\n⚠️ Found ${results.filesWithIssues} file(s) with contrast issues (WCAG ${results.wcagLevel}):\n`));
349
+
350
+ for (const fileResult of results.results) {
351
+ console.log(chalk.cyan(`📄 ${fileResult.file}`));
352
+ console.log(chalk.gray(` Colors found: ${fileResult.colors.length}`));
353
+
354
+ if (fileResult.issues.length > 0) {
355
+ console.log(chalk.yellow(` ⚠️ ${fileResult.issues.length} contrast issue(s):`));
356
+
357
+ fileResult.issues.forEach(issue => {
358
+ console.log(chalk.yellow(`\n ${issue.foreground} on ${issue.background}`));
359
+ console.log(chalk.gray(` Ratio: ${issue.ratio}:1 (need ${issue.required}:1)`));
360
+ console.log(chalk.gray(` Colors: ${issue.foregroundHex} on ${issue.backgroundHex}`));
361
+
362
+ // Suggest fix
363
+ const suggestion = this.suggestBetterColor(issue.backgroundHex, issue.foregroundHex, issue.required);
364
+ if (suggestion) {
365
+ console.log(chalk.green(` Suggested: ${suggestion}`));
366
+ }
367
+ });
368
+ }
369
+
370
+ console.log('');
371
+ }
372
+
373
+ console.log(chalk.blue(`\n💡 Tip: Use tools like https://contrast-ratio.com to fine-tune colors\n`));
374
+ }
375
+
376
+ /**
377
+ * Get compliance summary
378
+ */
379
+ getComplianceSummary(results) {
380
+ if (results.status === 'ok') {
381
+ return {
382
+ compliant: true,
383
+ wcagLevel: results.wcagLevel,
384
+ filesChecked: results.totalFiles,
385
+ issues: 0
386
+ };
387
+ }
388
+
389
+ const totalIssues = results.results.reduce((sum, r) => sum + r.issues.length, 0);
390
+
391
+ return {
392
+ compliant: false,
393
+ wcagLevel: results.wcagLevel,
394
+ filesChecked: results.totalFiles,
395
+ filesWithIssues: results.filesWithIssues,
396
+ issues: totalIssues,
397
+ severity: totalIssues > 10 ? 'high' : totalIssues > 5 ? 'medium' : 'low'
398
+ };
399
+ }
400
+ }
401
+
402
+ /**
403
+ * Quick validation function (for imports)
404
+ */
405
+ export async function validateContrast(projectPath = '.', options = {}) {
406
+ const wcagLevel = options.wcagLevel || 'AA';
407
+ const validator = new UIContrastValidator(projectPath, wcagLevel);
408
+ const results = await validator.validateAll();
409
+
410
+ if (options.verbose) {
411
+ validator.formatResults(results);
412
+ }
413
+
414
+ if (options.summary) {
415
+ return {
416
+ ...results,
417
+ summary: validator.getComplianceSummary(results)
418
+ };
419
+ }
420
+
421
+ return results;
422
+ }
@@ -53,6 +53,32 @@ export async function readFile(path) {
53
53
  return fs.readFile(path, 'utf8');
54
54
  }
55
55
 
56
+ /**
57
+ * Create symlink with fallback to copy if symlink fails
58
+ * @param {string} target - Path to the original file/folder
59
+ * @param {string} link - Path where symlink should be created
60
+ * @param {string} type - 'file' or 'dir'
61
+ * @returns {Promise<'symlink' | 'copy'>} - Returns how the link was created
62
+ */
63
+ export async function createSymlink(target, link, type = 'file') {
64
+ await fs.ensureDir(dirname(link));
65
+
66
+ try {
67
+ // Try to create symlink
68
+ await fs.ensureSymlink(target, link, type);
69
+ return 'symlink';
70
+ } catch (error) {
71
+ // Fallback: copy the file/directory if symlink fails
72
+ // (Windows may require admin permissions for symlinks)
73
+ if (type === 'file') {
74
+ await copyFile(target, link);
75
+ } else {
76
+ await copyDirectory(target, link);
77
+ }
78
+ return 'copy';
79
+ }
80
+ }
81
+
56
82
  export async function updateGitignore(projectPath) {
57
83
  const gitignorePath = join(projectPath, '.gitignore');
58
84