mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
Merge branch 'next' into feat/configDir-automigrations
This commit is contained in:
commit
74ed92badb
@ -148,7 +148,6 @@ const storyIndexers = (indexers: StoryIndexer[] | null) => {
|
||||
const docs = (docsOptions: DocsOptions) => {
|
||||
return {
|
||||
...docsOptions,
|
||||
disable: false,
|
||||
defaultName: 'Docs',
|
||||
autodocs: 'tag',
|
||||
};
|
||||
|
@ -53,7 +53,7 @@ const options = {
|
||||
] as StoryIndexer[],
|
||||
storiesV2Compatibility: false,
|
||||
storyStoreV7: true,
|
||||
docs: { disable: false, defaultName: 'docs', autodocs: false },
|
||||
docs: { defaultName: 'docs', autodocs: false },
|
||||
};
|
||||
|
||||
describe('StoryIndexGenerator', () => {
|
||||
@ -270,37 +270,6 @@ describe('StoryIndexGenerator', () => {
|
||||
}
|
||||
`);
|
||||
});
|
||||
it('does not add docs entry with docs disabled', async () => {
|
||||
const specifier: NormalizedStoriesSpecifier = normalizeStoriesEntry(
|
||||
'./src/A.stories.js',
|
||||
options
|
||||
);
|
||||
|
||||
const generator = new StoryIndexGenerator([specifier], {
|
||||
...options,
|
||||
docs: { disable: true },
|
||||
});
|
||||
await generator.initialize();
|
||||
|
||||
expect(await generator.getIndex()).toMatchInlineSnapshot(`
|
||||
Object {
|
||||
"entries": Object {
|
||||
"a--story-one": Object {
|
||||
"id": "a--story-one",
|
||||
"importPath": "./src/A.stories.js",
|
||||
"name": "Story One",
|
||||
"tags": Array [
|
||||
"story-tag",
|
||||
"story",
|
||||
],
|
||||
"title": "A",
|
||||
"type": "story",
|
||||
},
|
||||
},
|
||||
"v": 4,
|
||||
}
|
||||
`);
|
||||
});
|
||||
});
|
||||
|
||||
describe('autodocs', () => {
|
||||
@ -841,36 +810,6 @@ describe('StoryIndexGenerator', () => {
|
||||
`);
|
||||
});
|
||||
|
||||
it('generates no docs entries when docs are disabled', async () => {
|
||||
const generator = new StoryIndexGenerator([storiesSpecifier, docsSpecifier], {
|
||||
...options,
|
||||
docs: {
|
||||
...options.docs,
|
||||
disable: true,
|
||||
},
|
||||
});
|
||||
await generator.initialize();
|
||||
|
||||
expect(await generator.getIndex()).toMatchInlineSnapshot(`
|
||||
Object {
|
||||
"entries": Object {
|
||||
"a--story-one": Object {
|
||||
"id": "a--story-one",
|
||||
"importPath": "./src/A.stories.js",
|
||||
"name": "Story One",
|
||||
"tags": Array [
|
||||
"story-tag",
|
||||
"story",
|
||||
],
|
||||
"title": "A",
|
||||
"type": "story",
|
||||
},
|
||||
},
|
||||
"v": 4,
|
||||
}
|
||||
`);
|
||||
});
|
||||
|
||||
it('Allows you to override default name for docs files', async () => {
|
||||
const generator = new StoryIndexGenerator([storiesSpecifier, docsSpecifier], {
|
||||
...options,
|
||||
|
@ -185,11 +185,9 @@ export class StoryIndexGenerator {
|
||||
this.isDocsMdx(absolutePath) ? false : this.extractStories(specifier, absolutePath)
|
||||
);
|
||||
|
||||
if (!this.options.docs.disable) {
|
||||
await this.updateExtracted(async (specifier, absolutePath) =>
|
||||
this.extractDocs(specifier, absolutePath)
|
||||
);
|
||||
}
|
||||
await this.updateExtracted(async (specifier, absolutePath) =>
|
||||
this.extractDocs(specifier, absolutePath)
|
||||
);
|
||||
|
||||
return this.specifiers.flatMap((specifier) => {
|
||||
const cache = this.specifierToCache.get(specifier);
|
||||
@ -254,7 +252,7 @@ export class StoryIndexGenerator {
|
||||
}
|
||||
});
|
||||
|
||||
if (!this.options.docs.disable && csf.stories.length) {
|
||||
if (csf.stories.length) {
|
||||
const { autodocs } = this.options.docs;
|
||||
const componentAutodocs = componentTags.includes(AUTODOCS_TAG);
|
||||
const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs);
|
||||
|
@ -62,7 +62,7 @@ const getInitializedStoryIndexGenerator = async (
|
||||
workingDir,
|
||||
storiesV2Compatibility: false,
|
||||
storyStoreV7: true,
|
||||
docs: { disable: false, defaultName: 'docs', autodocs: false },
|
||||
docs: { defaultName: 'docs', autodocs: false },
|
||||
...overrides,
|
||||
});
|
||||
await generator.initialize();
|
||||
|
@ -201,7 +201,7 @@ export class StoryStoreFacade<TRenderer extends Renderer> {
|
||||
const { autodocs } = docsOptions;
|
||||
const componentAutodocs = componentTags.includes(AUTODOCS_TAG);
|
||||
const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs);
|
||||
if (!docsOptions.disable && storyExports.length) {
|
||||
if (storyExports.length) {
|
||||
if (componentTags.includes(STORIES_MDX_TAG) || autodocsOptedIn) {
|
||||
const name = docsOptions.defaultName;
|
||||
const docsId = toId(componentId || title, name);
|
||||
|
@ -34,9 +34,7 @@ jest.mock('@storybook/global', () => ({
|
||||
FEATURES: {
|
||||
breakingChangesV7: true,
|
||||
},
|
||||
DOCS_OPTIONS: {
|
||||
disable: false,
|
||||
},
|
||||
DOCS_OPTIONS: {},
|
||||
},
|
||||
}));
|
||||
|
||||
@ -111,7 +109,7 @@ function makeRequireContext(importMap: Record<Path, ModuleExports>) {
|
||||
|
||||
describe('start', () => {
|
||||
beforeEach(() => {
|
||||
global.DOCS_OPTIONS = { disable: true };
|
||||
global.DOCS_OPTIONS = {};
|
||||
// @ts-expect-error (setting this to undefined is indeed what we want to do)
|
||||
global.__STORYBOOK_CLIENT_API__ = undefined;
|
||||
// @ts-expect-error (setting this to undefined is indeed what we want to do)
|
||||
@ -962,7 +960,7 @@ describe('start', () => {
|
||||
|
||||
describe('docs', () => {
|
||||
beforeEach(() => {
|
||||
global.DOCS_OPTIONS = { disable: false };
|
||||
global.DOCS_OPTIONS = {};
|
||||
});
|
||||
|
||||
// NOTE: MDX files are only ever passed as CSF
|
||||
@ -1149,7 +1147,7 @@ describe('start', () => {
|
||||
|
||||
describe('autodocs', () => {
|
||||
beforeEach(() => {
|
||||
global.DOCS_OPTIONS = { disable: false, autodocs: 'tag', defaultName: 'Docs' };
|
||||
global.DOCS_OPTIONS = { autodocs: 'tag', defaultName: 'Docs' };
|
||||
});
|
||||
|
||||
it('adds stories for each component with autodocs tag', async () => {
|
||||
@ -1309,7 +1307,7 @@ describe('start', () => {
|
||||
});
|
||||
describe('when docsOptions.autodocs = true', () => {
|
||||
beforeEach(() => {
|
||||
global.DOCS_OPTIONS = { disable: false, autodocs: true, defaultName: 'Docs' };
|
||||
global.DOCS_OPTIONS = { autodocs: true, defaultName: 'Docs' };
|
||||
});
|
||||
|
||||
it('adds stories for each component with autodocs tag', async () => {
|
||||
|
@ -241,10 +241,6 @@ type CoreCommon_StorybookRefs = Record<
|
||||
>;
|
||||
|
||||
export type DocsOptions = {
|
||||
/**
|
||||
* Should we disable generate docs entries at all under any circumstances? (i.e. can they be rendered)
|
||||
*/
|
||||
disable?: boolean;
|
||||
/**
|
||||
* What should we call the generated docs entries?
|
||||
*/
|
||||
|
@ -57,7 +57,6 @@ By default, Storybook offers zero-config support for documentation and automatic
|
||||
|
||||
| Option | Description |
|
||||
| ------------- | ------------------------------------------------------------------------------------------------ |
|
||||
| `disable` | Toggles support for all documentation pages <br/> `docs: { disable:true }` |
|
||||
| `autodocs` | Disables auto-generated documentation pages created via `tags` <br/> `docs: { autodocs: false }` |
|
||||
| `true` | Enables auto-generated documentation pages for every component <br/> `docs: { autodocs: true }` |
|
||||
| `defaultName` | Renames the auto-generated documentation page<br/> `docs: { defaultName: 'Documentation' }` |
|
||||
|
Loading…
x
Reference in New Issue
Block a user