-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: export the list of components to storybook-static/components.json…
… after building storybook
- Loading branch information
Showing
3 changed files
with
107 additions
and
1 deletion.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
packages/lsd-react/.storybook/scripts/export-components.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
import type { ArgTypes } from '@storybook/react' | ||
import * as fs from 'fs' | ||
import * as fsp from 'fs/promises' | ||
import { glob } from 'glob' | ||
import path from 'path' | ||
import { fileURLToPath } from 'url' | ||
|
||
const DIRNAME = fileURLToPath(import.meta.url) | ||
const ROOT_DIR = path.resolve(DIRNAME, '../../../') | ||
const BUILD_DIR = path.resolve(ROOT_DIR, 'storybook-static') | ||
const STORIES_JSON = path.resolve(BUILD_DIR, 'stories.json') | ||
|
||
type StoryInfo = { | ||
id: string | ||
name: string | ||
title: string | ||
kind: string | ||
importPath: string | ||
tags: string[] | ||
story: string | ||
parameters: { | ||
__id: string | ||
docsOnly: boolean | ||
fileName: string | ||
} | ||
} | ||
|
||
type StoriesJson = { | ||
v: number | ||
stories: StoryInfo[] | ||
} | ||
|
||
export const fromStories = async (storiesJson: StoriesJson) => { | ||
const { stories: storiesMap } = storiesJson | ||
const stories = Object.values(storiesMap).filter( | ||
(story) => !story.parameters.docsOnly, | ||
) | ||
|
||
const components: Record< | ||
string, | ||
{ | ||
stories: StoryInfo[] | ||
argTypes: ArgTypes | ||
__docgenInfo: any | ||
} | ||
> = {} | ||
|
||
const storyFiles = await glob( | ||
path.join(BUILD_DIR, 'assets') + `/*.stories-*.js`, | ||
) | ||
|
||
for (const file of storyFiles) { | ||
const mod = await import(file) | ||
const { title, component, argTypes } = mod.default | ||
|
||
components[component.displayName] = { | ||
argTypes, | ||
stories: stories.filter((story) => story.kind === title), | ||
__docgenInfo: component.__docgenInfo, | ||
} | ||
} | ||
|
||
return Object.entries(components) | ||
.map(([name, details]) => ({ | ||
name, | ||
...details, | ||
})) | ||
.sort((a, b) => a.name.localeCompare(b.name)) | ||
} | ||
|
||
export const run = async () => { | ||
if (!fs.existsSync(BUILD_DIR)) { | ||
console.error('The storybook-static dir not found!') | ||
process.exit(1) | ||
} | ||
if (!fs.existsSync(STORIES_JSON)) { | ||
console.error('The stories.json file not found!') | ||
process.exit(1) | ||
} | ||
|
||
const stories = await import(STORIES_JSON, { assert: { type: 'json' } }) | ||
|
||
await fsp.writeFile( | ||
path.join(BUILD_DIR, 'package.json'), | ||
Buffer.from( | ||
JSON.stringify({ | ||
type: 'module', | ||
}), | ||
), | ||
) | ||
|
||
const result = await fromStories(stories.default) | ||
|
||
await fsp.writeFile( | ||
path.join(BUILD_DIR, 'components.json'), | ||
Buffer.from(JSON.stringify(result)), | ||
) | ||
|
||
fs.unlinkSync(path.join(BUILD_DIR, 'package.json')) | ||
} | ||
|
||
run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "module" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters