Skip to content

Commit

Permalink
2.1 support: Prune future-version SCs from technique titles
Browse files Browse the repository at this point in the history
  • Loading branch information
kfranqueiro committed Nov 8, 2024
1 parent 312c92a commit 895e0b1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
33 changes: 30 additions & 3 deletions 11ty/techniques.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export interface Technique extends TechniqueFrontMatter {
* Used to generate index table of contents.
* (Functionally equivalent to "techniques-list" target in build.xml)
*/
export async function getTechniquesByTechnology() {
export async function getTechniquesByTechnology(guidelines: FlatGuidelinesMap) {
const paths = await glob("*/*.html", { cwd: "techniques" });
const techniques = technologies.reduce(
(map, technology) => ({
Expand All @@ -208,6 +208,9 @@ export async function getTechniquesByTechnology() {
}),
{} as Record<Technology, Technique[]>
);
const scNumbers = Object.values(guidelines)
.filter((entry): entry is SuccessCriterion => entry.type === "SC")
.map(({ num }) => num);

// Check directory data files (we don't have direct access to 11ty's data cascade here)
const technologyData: Partial<Record<Technology, any>> = {};
Expand Down Expand Up @@ -237,13 +240,37 @@ export async function getTechniquesByTechnology() {
if (!h1Match || !h1Match[1]) throw new Error(`No h1 found in techniques/${path}`);
const $h1 = load(h1Match[1], null, false);

const title = $h1.text();
let title = $h1.text();
let titleHtml = $h1.html();
if (process.env.WCAG_VERSION) {
// Check for invalid SC references for the WCAG version being built
const multiScPattern = /(?:\d\.\d+\.\d+(,?) )+and \d\.\d+\.\d+/;
if (multiScPattern.test(title)) {
const scPattern = /\d\.\d+\.\d+/g;
const criteria: typeof scNumbers = [];
let match;
while ((match = scPattern.exec(title)))
criteria.push(match[0] as `${number}.${number}.${number}`);
const filteredCriteria = criteria.filter((sc) => scNumbers.includes(sc));
if (filteredCriteria.length) {
const finalSeparator =
filteredCriteria.length > 2 && multiScPattern.exec(title)?.[1] ? "," : "";
const replacement = `${filteredCriteria.slice(0, -1).join(", ")}${finalSeparator} and ${
filteredCriteria[filteredCriteria.length - 1]
}`;
title = title.replace(multiScPattern, replacement);
titleHtml = titleHtml.replace(multiScPattern, replacement);
}
// If all SCs were filtered out, do nothing - should be pruned when associations are checked
}
}

techniques[technology].push({
...data, // Include front-matter
id: basename(filename, ".html"),
technology,
title,
titleHtml: $h1.html(),
titleHtml,
truncatedTitle: title.replace(/\s*\n[\s\S]*\n\s*/, " … "),
});
}
Expand Down
2 changes: 1 addition & 1 deletion eleventy.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ for (const [key, value] of Object.entries(allFlatGuidelines)) {
if (value.version > version) futureGuidelines[key] = value;
}

const techniques = await getTechniquesByTechnology();
const techniques = await getTechniquesByTechnology(flatGuidelines);
const flatTechniques = getFlatTechniques(techniques);

/** Maps technique IDs to SCs found in target version */
Expand Down

0 comments on commit 895e0b1

Please sign in to comment.