import { fileURLToPath } from 'url'; import { dirname, resolve } from 'path'; import { readFileSync } from 'fs'; const __dirname = dirname(fileURLToPath(import.meta.url)); const manifest = JSON.parse(readFileSync(resolve(__dirname, '../../dist/custom-elements.json'), 'utf-8')); /** * @returns Fetches components from custom-elements.json and returns them in more sane format. */ export function getComponents() { const components = []; manifest.modules?.forEach(module => { module.declarations?.forEach(declaration => { if (declaration.customElement) { // Generate the dist path based on the src path and attach it to the component declaration.path = module.path.replace(/^src\//, 'dist/').replace(/\.ts$/, '.js'); // Remove private members and those that lack a description const members = declaration.members?.filter(member => member.description && member.privacy !== 'private'); const methods = members?.filter(prop => prop.kind === 'method' && prop.privacy !== 'private'); const properties = members?.filter(prop => { // Look for a corresponding attribute const attribute = declaration.attributes?.find(attr => attr.fieldName === prop.name); if (attribute) { prop.attribute = attribute.name || attribute.fieldName; } return prop.kind === 'field' && prop.privacy !== 'private'; }); components.push({ ...declaration, methods, properties }); } }); }); // Build dependency graphs components.forEach(component => { const dependencies = []; // Recursively fetch sub-dependencies function getDependencies(tag) { const cmp = components.find(c => c.tagName === tag); if (!cmp || !Array.isArray(component.dependencies)) { return; } cmp.dependencies?.forEach(dependentTag => { if (!dependencies.includes(dependentTag)) { dependencies.push(dependentTag); } getDependencies(dependentTag); }); } getDependencies(component.tagName); component.dependencies = dependencies.sort(); }); // Sort by name return components.sort((a, b) => { if (a.name < b.name) return -1; if (a.name > b.name) return 1; return 0; }); }