'use strict'; /** * @typedef {import('../lib/types').XastElement} XastElement */ const { visitSkip } = require('../lib/xast.js'); const { referencesProps } = require('./_collections.js'); exports.type = 'visitor'; exports.name = 'cleanupIDs'; exports.active = true; exports.description = 'removes unused IDs and minifies used'; const regReferencesUrl = /\burl\(("|')?#(.+?)\1\)/; const regReferencesHref = /^#(.+?)$/; const regReferencesBegin = /(\w+)\./; const generateIDchars = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ]; const maxIDindex = generateIDchars.length - 1; /** * Check if an ID starts with any one of a list of strings. * * @type {(string: string, prefixes: Array) => boolean} */ const hasStringPrefix = (string, prefixes) => { for (const prefix of prefixes) { if (string.startsWith(prefix)) { return true; } } return false; }; /** * Generate unique minimal ID. * * @type {(currentID: null | Array) => Array} */ const generateID = (currentID) => { if (currentID == null) { return [0]; } currentID[currentID.length - 1] += 1; for (let i = currentID.length - 1; i > 0; i--) { if (currentID[i] > maxIDindex) { currentID[i] = 0; if (currentID[i - 1] !== undefined) { currentID[i - 1]++; } } } if (currentID[0] > maxIDindex) { currentID[0] = 0; currentID.unshift(0); } return currentID; }; /** * Get string from generated ID array. * * @type {(arr: Array, prefix: string) => string} */ const getIDstring = (arr, prefix) => { return prefix + arr.map((i) => generateIDchars[i]).join(''); }; /** * Remove unused and minify used IDs * (only if there are no any