Skip to content

Commit 30e8c31

Browse files
joshblackfrancinelucca
andauthoredJan 3, 2025··
test: add check for story ids in generated docs (#5441)
* test: add check for story ids in generated docs * merge with main * fix: script path * fix: script path * fix: IconButton story id * fix: IconButton story id * fix: Hidden story id * Create hungry-mugs-stare.md * fix: InlineMessage story id * update Portal story docs * update TooltipV2 story docs * Revert "merge with main" This reverts commit 577bc64. * deps: package-lock fix --------- Co-authored-by: Marie Lucca <francinelucca@github.com> Co-authored-by: Marie Lucca <40550942+francinelucca@users.noreply.github.com>
1 parent 51065d6 commit 30e8c31

File tree

11 files changed

+85
-27
lines changed

11 files changed

+85
-27
lines changed
 

‎.changeset/hungry-mugs-stare.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/react": patch
3+
---
4+
5+
test: add check for story ids in generated docs

‎.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,12 @@ jobs:
408408
cache: 'npm'
409409
- name: Install dependencies
410410
run: npm ci
411+
- name: Build storybook to generate story IDs
412+
run: npm run build:storybook
413+
working-directory: packages/react
411414
- name: Build components.json
412-
run: npm run build:components.json
415+
run: npx tsx script/components-json/build.ts --storybook-data 'storybook-static/index.json'
416+
working-directory: packages/react
413417

414418
sizes:
415419
runs-on: ubuntu-latest

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"clean": "rimraf dist lib lib-esm css",
4040
"start": "concurrently npm:start:*",
4141
"start:storybook": "STORYBOOK=true storybook dev -p 6006",
42-
"build:storybook": "script/build-storybook",
42+
"build:storybook": "storybook build",
4343
"build:docs": "NODE_OPTIONS=--openssl-legacy-provider script/build-docs",
4444
"build:docs:preview": "NODE_OPTIONS=--openssl-legacy-provider script/build-docs preview",
4545
"build:components.json": "tsx script/components-json/build.ts",

‎packages/react/script/components-json/build.ts

+48
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import generate from '@babel/generator'
22
import {parse} from '@babel/parser'
33
import traverse from '@babel/traverse'
44
import type {ArrowFunctionExpression, Identifier, FunctionDeclaration} from '@babel/types'
5+
import path from 'node:path'
6+
import {parseArgs} from 'node:util'
57
import Ajv from 'ajv'
68
import {pascalCase, kebabCase} from 'change-case'
79
import glob from 'fast-glob'
@@ -11,6 +13,14 @@ import prettier from '@prettier/sync'
1113
import componentSchema from './component.schema.json'
1214
import outputSchema from './output.schema.json'
1315

16+
const args = parseArgs({
17+
options: {
18+
'storybook-data': {
19+
type: 'string',
20+
},
21+
},
22+
})
23+
1424
// Only includes fields we use in this script
1525
type Component = {
1626
name: string
@@ -40,6 +50,23 @@ const storyPrefix = {
4050
stable: '',
4151
}
4252

53+
let _storybookData: StorybookData | null = null
54+
55+
function getStorybookData(): StorybookData {
56+
const input = args.values['storybook-data']
57+
if (!input) {
58+
throw new Error('Unable to get value for --storybook-data')
59+
}
60+
61+
if (_storybookData === null) {
62+
const filepath = path.resolve(process.cwd(), args.values['storybook-data']!)
63+
const contents = fs.readFileSync(filepath, 'utf-8')
64+
_storybookData = JSON.parse(contents)
65+
}
66+
67+
return _storybookData as StorybookData
68+
}
69+
4370
const components = docsFiles.map(docsFilepath => {
4471
const docs = JSON.parse(fs.readFileSync(docsFilepath, 'utf-8'))
4572

@@ -114,6 +141,18 @@ const components = docsFiles.map(docsFilepath => {
114141
}
115142
}
116143

144+
if (args.values['storybook-data']) {
145+
const storybookData = getStorybookData()
146+
for (const story of docs.stories) {
147+
const match = Object.values(storybookData.entries).find(entry => {
148+
return entry.id === story.id
149+
})
150+
if (!match) {
151+
throw new Error(`Story "${story.id}" not found in storybook-data`)
152+
}
153+
}
154+
}
155+
117156
// TODO: Provide default type and description for sx and ref props
118157
return {
119158
source: `https://github.com/primer/react/tree/main/packages/react/${docsFilepath.substring(0, docsFilepath.lastIndexOf('/'))}`,
@@ -236,3 +275,12 @@ function getStoryIds(docs: Component, storyNames: string[]) {
236275

237276
return ids.map(id => ({id}))
238277
}
278+
279+
interface StorybookData {
280+
v: number
281+
entries: {
282+
[key: string]: {
283+
id: string
284+
}
285+
}
286+
}

‎packages/react/src/Button/IconButton.docs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"id": "components-iconbutton-features--external-tooltip"
3636
},
3737
{
38-
"id": "components-iconbutton-features--external-tooltip-version1"
38+
"id": "components-iconbutton-features--external-tooltip-version-1"
3939
},
4040
{
4141
"id": "components-iconbutton-features--as-a-menu-anchor"

‎packages/react/src/Button/IconButton.features.stories.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export const ExternalTooltip = () => (
3434
</Tooltip>
3535
)
3636

37-
export const ExternalTooltipVersion1 = () => (
37+
/* eslint-disable-next-line camelcase */
38+
export const ExternalTooltipVersion_1 = () => (
3839
<TooltipV1 text="this is a supportive description for icon button" direction="se">
3940
<IconButton icon={HeartIcon} aria-label="HeartIcon" />
4041
</TooltipV1>

‎packages/react/src/Hidden/Hidden.docs.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"a11yReviewed": false,
66
"stories": [
77
{
8-
"id": "drafts-components-hidden--default"
8+
"id": "experimental-components-hidden--default"
99
},
1010
{
11-
"id": "drafts-components-hidden-features--hide-content"
11+
"id": "experimental-components-hidden-features--hide-content"
1212
},
1313
{
14-
"id": "drafts-components-hidden-features--render-content-responsively"
14+
"id": "experimental-components-hidden-features--render-content-responsively"
1515
}
1616
],
1717
"importPath": "@primer/react/experimental",

‎packages/react/src/InlineMessage/InlineMessage.docs.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
"importPath": "@primer/react/experimental",
77
"stories": [
88
{
9-
"id": "components-inlinemessage--default"
9+
"id": "experimental-components-inlinemessage--default"
1010
},
1111
{
12-
"id": "components-inlinemessage-features--critical"
12+
"id": "experimental-components-inlinemessage-features--critical"
1313
},
1414
{
15-
"id": "components-inlinemessage-features--success"
15+
"id": "experimental-components-inlinemessage-features--success"
1616
},
1717
{
18-
"id": "components-inlinemessage-features--unavailable"
18+
"id": "experimental-components-inlinemessage-features--unavailable"
1919
},
2020
{
21-
"id": "components-inlinemessage-features--warning"
21+
"id": "experimental-components-inlinemessage-features--warning"
2222
},
2323
{
24-
"id": "components-inlinemessage-features--multiline"
24+
"id": "experimental-components-inlinemessage-features--multiline"
2525
}
2626
],
2727
"props": [

‎packages/react/src/Portal/Portal.docs.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
"a11yReviewed": false,
66
"stories": [
77
{
8-
"id": "components-portal--default"
8+
"id": "behaviors-portal--default"
99
},
1010
{
11-
"id": "components-portal-features--custom-portal-root-by-id"
11+
"id": "behaviors-portal-features--custom-portal-root-by-id"
1212
},
1313
{
14-
"id": "components-portal-features--custom-portal-root-by-registration"
14+
"id": "behaviors-portal-features--custom-portal-root-by-registration"
1515
},
1616
{
17-
"id": "components-portal-features--multiple-portal-roots"
17+
"id": "behaviors-portal-features--multiple-portal-roots"
1818
}
1919
],
2020
"importPath": "@primer/react",

‎packages/react/src/TooltipV2/Tooltip.docs.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@
77
"importPath": "@primer/react/next",
88
"stories": [
99
{
10-
"id": "components-tooltip--default"
10+
"id": "components-tooltipv2--default"
1111
},
1212
{
13-
"id": "components-tooltip-features--anchor-has-margin"
13+
"id": "components-tooltipv2-features--anchor-has-margin"
1414
},
1515
{
16-
"id": "components-tooltip-features--label-type"
16+
"id": "components-tooltipv2-features--label-type"
1717
},
1818
{
19-
"id": "components-tooltip-features--description-type"
19+
"id": "components-tooltipv2-features--description-type"
2020
},
2121
{
22-
"id": "components-tooltip-features--icon-button-with-description"
22+
"id": "components-tooltipv2-features--icon-button-with-description"
2323
},
2424
{
25-
"id": "components-tooltip-features--all-directions"
25+
"id": "components-tooltipv2-features--all-directions"
2626
},
2727
{
28-
"id": "components-tooltip-features--multiline-text"
28+
"id": "components-tooltipv2-features--multiline-text"
2929
},
3030
{
31-
"id": "components-tooltip-features--calculated-direction"
31+
"id": "components-tooltipv2-features--calculated-direction"
3232
},
3333
{
34-
"id": "components-tooltip-features--on-action-menu-anchor"
34+
"id": "components-tooltipv2-features--on-action-menu-anchor"
3535
}
3636
],
3737
"props": [

0 commit comments

Comments
 (0)
Please sign in to comment.