mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
2.3 KiB
2.3 KiB
name, description
| name | description |
|---|---|
| write-api-reference | Write generated Video.js API reference pages. Use for components, hooks, controllers, factories, builder compatibility, demos, or extracted JSDoc. |
API reference
Treat TypeScript source and the builder E2E test as the specification. Generated JSON is diagnostic output, not an editable source.
Workflow
- Identify the export and read its implementation, public export path, tests, and any matching design record.
- Read
site/scripts/api-docs-builder/src/tests/e2e.test.tsto confirm the builder contract involved in the change. - Load only the needed reference:
- Component discovery or naming failure:
references/builder-conventions.md - Hook, controller, mixin, factory, or other utility:
references/util-conventions.md - New MDX reference page:
references/mdx-structure.md - New interactive example:
references/demo-patterns.md
- Component discovery or naming failure:
- Run
pnpm -F site api-docsand inspect the corresponding file undersite/src/content/generated-*-reference/. - Fix missing metadata at the TypeScript/JSDoc source or in the builder. Do not hand-edit generated JSON.
- Create or update
site/src/content/docs/reference/<slug>.mdxand the matchingsite/src/docs.config.tsentry when a page is required. - Verify the page for every supported framework/style combination it targets.
Component pages
- Derive props, state, data attributes, parts, tag names, and behavior from source.
- Add prose only for non-obvious behavior, styling contracts, accessibility, or platform constraints.
- Include basic HTML and React demos when both platforms expose the component; follow existing neighboring demos when the reference guide leaves room for judgment.
Utility pages
- Confirm the export is reachable from a builder-scanned public entry point.
- Add
@publiconly when the export intentionally belongs in reference docs and naming-based discovery does not include it. - Verify generated overloads, parameters, and return data before authoring prose.
Validation
Run the builder E2E test for builder changes, pnpm -F site api-docs, and the narrowest site check that renders the affected page.
Example
Input: “Add the Menu component API reference.”
Output: Source JSDoc and builder-compatible metadata, verified generated output, MDX examples, navigation config, and site checks.