-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbinding.ts
More file actions
150 lines (137 loc) · 3.8 KB
/
binding.ts
File metadata and controls
150 lines (137 loc) · 3.8 KB
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
import { createRequire } from 'node:module';
import type {
CategoryCodegenConfig,
PluginAnswer,
PluginSetupBinding,
PluginSetupTree,
} from '@code-pushup/models';
import {
answerBoolean,
answerNonEmptyArray,
answerString,
singleQuote,
} from '@code-pushup/utils';
import {
AXE_DEFAULT_PRESET,
AXE_PLUGIN_SLUG,
AXE_PLUGIN_TITLE,
AXE_PRESET_NAMES,
} from './constants.js';
const { name: PACKAGE_NAME } = createRequire(import.meta.url)(
'../../package.json',
) as typeof import('../../package.json');
const DEFAULT_URL = 'http://localhost:4200';
const PLUGIN_VAR = 'axe';
const SETUP_SCRIPT_PATH = './axe-setup.ts';
const CATEGORIES: CategoryCodegenConfig[] = [
{
slug: 'a11y',
title: 'Accessibility',
description: 'Tests website **accessibility** in accordance with WCAG',
refsExpression: `axeGroupRefs(${PLUGIN_VAR})`,
},
];
const PRESET_CHOICES = Object.entries(AXE_PRESET_NAMES).map(
([value, name]) => ({ name, value }),
);
const SETUP_SCRIPT_CONTENT = `import type { Page } from 'playwright-core';
export default async function (page: Page): Promise<void> {
// ... add your custom logic here ...
}
`;
type AxeOptions = {
urls: [string, ...string[]];
preset: string;
setupScript: boolean;
categories: boolean;
};
export const axeSetupBinding = {
slug: AXE_PLUGIN_SLUG,
title: AXE_PLUGIN_TITLE,
packageName: PACKAGE_NAME,
prompts: async () => [
{
key: 'axe.urls',
message: 'Target URL(s) (comma-separated):',
type: 'input',
default: DEFAULT_URL,
},
{
key: 'axe.preset',
message: 'Accessibility preset:',
type: 'select',
choices: [...PRESET_CHOICES],
default: AXE_DEFAULT_PRESET,
},
{
key: 'axe.setupScript',
message: 'Create setup script for auth-protected app?',
type: 'confirm',
default: false,
},
{
key: 'axe.categories',
message: 'Add categories?',
type: 'confirm',
default: true,
},
],
generateConfig: async (
answers: Record<string, PluginAnswer>,
tree: PluginSetupTree,
) => {
const options = parseAnswers(answers);
if (options.setupScript) {
await tree.write(SETUP_SCRIPT_PATH, SETUP_SCRIPT_CONTENT);
}
const hasCategories = options.categories;
const imports = [
{
moduleSpecifier: PACKAGE_NAME,
defaultImport: 'axePlugin',
...(hasCategories ? { namedImports: ['axeGroupRefs'] } : {}),
},
];
const pluginCall = formatPluginCall(options);
if (!hasCategories) {
return {
imports,
pluginInit: [`${pluginCall},`],
};
}
return {
imports,
pluginDeclaration: {
identifier: PLUGIN_VAR,
expression: pluginCall,
},
pluginInit: [`${PLUGIN_VAR},`],
categories: CATEGORIES,
};
},
} satisfies PluginSetupBinding;
function parseAnswers(answers: Record<string, PluginAnswer>): AxeOptions {
return {
urls: answerNonEmptyArray(answers, 'axe.urls', DEFAULT_URL),
preset: answerString(answers, 'axe.preset') || AXE_DEFAULT_PRESET,
setupScript: answerBoolean(answers, 'axe.setupScript'),
categories: answerBoolean(answers, 'axe.categories'),
};
}
function formatPluginCall({ urls, preset, setupScript }: AxeOptions): string {
const formattedUrls = formatUrls(urls);
const options = [
preset !== AXE_DEFAULT_PRESET && `preset: ${singleQuote(preset)}`,
setupScript && `setupScript: ${singleQuote(SETUP_SCRIPT_PATH)}`,
].filter(Boolean);
if (options.length === 0) {
return `axePlugin(${formattedUrls})`;
}
return `axePlugin(${formattedUrls}, { ${options.join(', ')} })`;
}
function formatUrls([first, ...rest]: [string, ...string[]]): string {
if (rest.length === 0) {
return singleQuote(first);
}
return `[${[first, ...rest].map(singleQuote).join(', ')}]`;
}