-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathcustom-elements-manifest.js
More file actions
112 lines (100 loc) · 3.68 KB
/
custom-elements-manifest.js
File metadata and controls
112 lines (100 loc) · 3.68 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
import { jsxTypesPlugin } from '@wc-toolkit/jsx-types';
import { parse } from 'comment-parser';
import { customElementSolidJsPlugin } from 'custom-element-solidjs-integration';
import { readFileSync } from 'fs';
const packageData = JSON.parse(readFileSync('./package.json', 'utf8'));
const { name, description, version, author, homepage, license } = packageData;
const outdir = 'dist';
export default {
globs: ['src/components/**/*.ts'],
exclude: ['**/*.styles.ts', '**/*.test.ts'],
litelement: true,
outdir,
packagejson: false,
plugins: [
// Append package data
{
name: 'append-package-data',
packageLinkPhase({ customElementsManifest }) {
customElementsManifest.package = { name, description, version, author, homepage, license };
}
},
// Parse custom jsDoc tags
{
name: 'parse-custom-tags',
analyzePhase({ ts, node, moduleDoc }) {
switch (node.kind) {
case ts.SyntaxKind.ClassDeclaration: {
const className = node.name.getText();
const classDoc = moduleDoc?.declarations?.find(declaration => declaration.name === className);
const customTags = ['dependency', 'documentation', 'since', 'status', 'title'];
let customComments = '/**';
node.jsDoc?.forEach(jsDoc => {
jsDoc?.tags?.forEach(tag => {
const tagName = tag.tagName.getText();
if (customTags.includes(tagName)) {
customComments += `\n * @${tagName} ${tag.comment}`;
}
});
});
const parsed = parse(`${customComments}\n */`);
parsed[0].tags?.forEach(t => {
switch (t.tag) {
// Dependencies
case 'dependency':
if (!Array.isArray(classDoc['dependencies'])) {
classDoc['dependencies'] = [];
}
classDoc['dependencies'].push(t.name);
break;
// Value-only metadata tags
case 'documentation':
case 'since':
case 'status':
classDoc[t.tag] = t.name;
break;
// All other tags
default:
if (!Array.isArray(classDoc[t.tag])) {
classDoc[t.tag] = [];
}
classDoc[t.tag].push({
name: t.name,
description: t.description,
type: t.type || undefined
});
}
});
}
}
}
},
// The analyzer eagerly looks for any `this.dispatchEvent()` and populates events with ones we don't actually want
// in the docs. This removes any event that doesn't have a name or description.
{
name: 'filter-events',
packageLinkPhase({ customElementsManifest }) {
customElementsManifest.modules?.forEach(module => {
module.declarations?.forEach(declaration => {
if (declaration.events) {
declaration.events = declaration.events.filter(event => event.name && event.description);
}
});
});
}
},
// Generate JSX types (see https://wc-toolkit.com/integrations/jsx/)
jsxTypesPlugin({
fileName: 'custom-elements-jsx.d.ts',
outdir,
componentTypePath: (_name, _tag, modulePath) => {
return `.${modulePath.replace(/^src/, '')}`;
}
}),
// Generate Solid.js types (see https://github.com/break-stuff/cem-tools/tree/main/packages/solidjs-integration)
customElementSolidJsPlugin({
fileName: 'solid-integration.d.ts',
outdir
})
]
};