2023-03-19 06:22:14 -07:00
|
|
|
import * as fs from 'node:fs/promises';
|
2023-03-19 22:58:24 -07:00
|
|
|
import { basename, dirname } from 'node:path/posix';
|
2023-03-19 06:22:14 -07:00
|
|
|
import { promisify } from 'node:util';
|
|
|
|
import { generate } from 'astring';
|
|
|
|
import type * as estree from 'estree';
|
|
|
|
import * as glob from 'glob';
|
|
|
|
import { format } from 'prettier';
|
|
|
|
|
|
|
|
function h<T extends estree.Node>(component: T['type'], props: Omit<T, 'type'>): T {
|
|
|
|
const type = component.replace(/(?:^|-)([a-z])/g, (_, c) => c.toUpperCase());
|
|
|
|
return Object.assign(props, { type }) as T;
|
|
|
|
}
|
|
|
|
|
2023-03-19 22:56:34 -07:00
|
|
|
function toStories(component: string): string {
|
|
|
|
const base = basename(component);
|
|
|
|
const dir = dirname(component);
|
2023-03-19 06:22:14 -07:00
|
|
|
const literal = (
|
2023-03-19 22:56:34 -07:00
|
|
|
<literal value={component.slice('src/'.length, -'.vue'.length)} />
|
2023-03-19 06:22:14 -07:00
|
|
|
) as unknown as estree.Literal;
|
|
|
|
const identifier = (
|
2023-03-19 22:56:34 -07:00
|
|
|
<identifier name={base.slice(0, -'.vue'.length).replace(/[-.]|^(?=\d)/g, '_')} />
|
2023-03-19 06:22:14 -07:00
|
|
|
) as unknown as estree.Identifier;
|
2023-03-19 22:56:34 -07:00
|
|
|
const parameters = (
|
|
|
|
<object-expression
|
|
|
|
properties={[
|
|
|
|
<property
|
|
|
|
key={<identifier name="layout" />}
|
|
|
|
value={<literal value={`${dir}/`.startsWith('src/pages/') || base === 'MkAnalogClock.vue' ? 'fullscreen' : 'centered'} />}
|
|
|
|
kind="init"
|
|
|
|
/>
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
);
|
2023-03-19 06:22:14 -07:00
|
|
|
const program = (
|
|
|
|
<program
|
|
|
|
body={[
|
|
|
|
<import-declaration
|
|
|
|
source={<literal value="@storybook/vue3" />}
|
|
|
|
specifiers={[
|
|
|
|
<import-specifier
|
|
|
|
local={<identifier name="Meta" />}
|
|
|
|
imported={<identifier name="Meta" />}
|
|
|
|
/>,
|
|
|
|
<import-specifier
|
|
|
|
local={<identifier name="Story" />}
|
|
|
|
imported={<identifier name="Story" />}
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>,
|
|
|
|
<import-declaration
|
2023-03-19 22:56:34 -07:00
|
|
|
source={<literal value={`./${base}`} />}
|
2023-03-19 06:22:14 -07:00
|
|
|
specifiers={[
|
|
|
|
<import-default-specifier
|
|
|
|
local={identifier}
|
|
|
|
imported={identifier}
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>,
|
|
|
|
<variable-declaration
|
|
|
|
kind="const"
|
|
|
|
declarations={[
|
|
|
|
<variable-declarator
|
|
|
|
id={<identifier name="meta" />}
|
|
|
|
init={
|
|
|
|
<object-expression
|
|
|
|
properties={[
|
|
|
|
<property
|
|
|
|
key={<identifier name="title" />}
|
|
|
|
value={literal}
|
|
|
|
kind="init"
|
|
|
|
/>,
|
|
|
|
<property
|
|
|
|
key={<identifier name="component" />}
|
|
|
|
value={identifier}
|
|
|
|
kind="init"
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>,
|
|
|
|
<export-named-declaration
|
|
|
|
declaration={
|
|
|
|
<variable-declaration
|
|
|
|
kind="const"
|
|
|
|
declarations={[
|
|
|
|
<variable-declarator
|
|
|
|
id={<identifier name="Default" />}
|
|
|
|
init={
|
|
|
|
<object-expression
|
|
|
|
properties={[
|
|
|
|
<property
|
|
|
|
key={<identifier name="components" />}
|
|
|
|
value={
|
|
|
|
<object-expression
|
|
|
|
properties={[
|
|
|
|
<property
|
|
|
|
key={identifier}
|
|
|
|
value={identifier}
|
|
|
|
kind="init"
|
|
|
|
shorthand
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
kind="init"
|
|
|
|
/>,
|
|
|
|
<property
|
|
|
|
key={<identifier name="template" />}
|
2023-03-19 06:31:18 -07:00
|
|
|
value={<literal value={`<${identifier.name} />`} />}
|
2023-03-19 06:22:14 -07:00
|
|
|
kind="init"
|
|
|
|
/>,
|
2023-03-19 22:56:34 -07:00
|
|
|
<property
|
|
|
|
key={<identifier name="parameters" />}
|
|
|
|
value={parameters}
|
|
|
|
kind="init"
|
|
|
|
/>,
|
2023-03-19 06:22:14 -07:00
|
|
|
]}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
/>,
|
|
|
|
<export-default-declaration
|
|
|
|
declaration={<identifier name="meta" />}
|
|
|
|
/>,
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
) as unknown as estree.Program;
|
|
|
|
return format(
|
|
|
|
generate(program),
|
|
|
|
{
|
|
|
|
parser: 'babel-ts',
|
|
|
|
singleQuote: true,
|
|
|
|
useTabs: true,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
promisify(glob)('src/{components,pages,ui,widgets}/**/*.vue').then((components) => Promise.all(
|
|
|
|
components.map((component) => {
|
|
|
|
const stories = component.replace(/\.vue$/, '.stories.ts');
|
|
|
|
fs.stat(stories).then(
|
|
|
|
() => {},
|
|
|
|
() => {
|
2023-03-19 22:56:34 -07:00
|
|
|
fs.writeFile(stories, toStories(component));
|
2023-03-19 06:22:14 -07:00
|
|
|
}
|
|
|
|
);
|
|
|
|
})
|
|
|
|
));
|