kopia lustrzana https://github.com/shoelace-style/shoelace
76 wiersze
1.7 KiB
JavaScript
76 wiersze
1.7 KiB
JavaScript
//
|
|
// This script generates vscode.html-custom-data.json (for IntelliSense).
|
|
//
|
|
// You must generate dist/custom-elements.json before running this script.
|
|
//
|
|
import chalk from 'chalk';
|
|
import fs from 'fs';
|
|
|
|
const metadata = JSON.parse(fs.readFileSync('./dist/custom-elements.json', 'utf8'));
|
|
|
|
function getAllComponents() {
|
|
const allComponents = [];
|
|
|
|
metadata.modules.map(module => {
|
|
module.declarations?.map(declaration => {
|
|
if (declaration.customElement) {
|
|
const component = declaration;
|
|
|
|
if (component) {
|
|
allComponents.push(component);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
return allComponents;
|
|
}
|
|
|
|
console.log('Generating custom data for VS Code');
|
|
|
|
const components = getAllComponents();
|
|
const vscode = { tags: [] };
|
|
|
|
components.map(component => {
|
|
const name = component.tag;
|
|
const attributes = component.attributes?.map(attr => {
|
|
const type = attr.type?.text;
|
|
let values = [];
|
|
|
|
if (type) {
|
|
type.split('|').map(val => {
|
|
val = val.trim();
|
|
|
|
// Only accept values that are strings and numbers
|
|
const isString = val.startsWith(`'`);
|
|
const isNumber = Number(val).toString() === val;
|
|
|
|
if (isString) {
|
|
// Remove quotes
|
|
val = val.replace(/^'/, '').replace(/'$/, '');
|
|
}
|
|
|
|
if (isNumber || isString) {
|
|
values.push({ name: val });
|
|
}
|
|
});
|
|
}
|
|
|
|
if (values.length === 0) {
|
|
values = undefined;
|
|
}
|
|
|
|
return {
|
|
name: attr.name,
|
|
description: attr.description,
|
|
values
|
|
};
|
|
});
|
|
|
|
vscode.tags.push({ name, attributes });
|
|
});
|
|
|
|
fs.writeFileSync('./dist/vscode.html-custom-data.json', JSON.stringify(vscode, null, 2), 'utf8');
|
|
|
|
console.log(chalk.cyan(`Successfully generated custom data for VS Code 🔮\n`));
|