Merge branch 'next' into feat/configDir-automigrations

This commit is contained in:
Yann Braga 2023-02-20 09:38:48 +01:00
commit 74ed92badb
8 changed files with 12 additions and 83 deletions

View File

@ -148,7 +148,6 @@ const storyIndexers = (indexers: StoryIndexer[] | null) => {
const docs = (docsOptions: DocsOptions) => { const docs = (docsOptions: DocsOptions) => {
return { return {
...docsOptions, ...docsOptions,
disable: false,
defaultName: 'Docs', defaultName: 'Docs',
autodocs: 'tag', autodocs: 'tag',
}; };

View File

@ -53,7 +53,7 @@ const options = {
] as StoryIndexer[], ] as StoryIndexer[],
storiesV2Compatibility: false, storiesV2Compatibility: false,
storyStoreV7: true, storyStoreV7: true,
docs: { disable: false, defaultName: 'docs', autodocs: false }, docs: { defaultName: 'docs', autodocs: false },
}; };
describe('StoryIndexGenerator', () => { 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', () => { 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 () => { it('Allows you to override default name for docs files', async () => {
const generator = new StoryIndexGenerator([storiesSpecifier, docsSpecifier], { const generator = new StoryIndexGenerator([storiesSpecifier, docsSpecifier], {
...options, ...options,

View File

@ -185,11 +185,9 @@ export class StoryIndexGenerator {
this.isDocsMdx(absolutePath) ? false : this.extractStories(specifier, absolutePath) this.isDocsMdx(absolutePath) ? false : this.extractStories(specifier, absolutePath)
); );
if (!this.options.docs.disable) { await this.updateExtracted(async (specifier, absolutePath) =>
await this.updateExtracted(async (specifier, absolutePath) => this.extractDocs(specifier, absolutePath)
this.extractDocs(specifier, absolutePath) );
);
}
return this.specifiers.flatMap((specifier) => { return this.specifiers.flatMap((specifier) => {
const cache = this.specifierToCache.get(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 { autodocs } = this.options.docs;
const componentAutodocs = componentTags.includes(AUTODOCS_TAG); const componentAutodocs = componentTags.includes(AUTODOCS_TAG);
const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs); const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs);

View File

@ -62,7 +62,7 @@ const getInitializedStoryIndexGenerator = async (
workingDir, workingDir,
storiesV2Compatibility: false, storiesV2Compatibility: false,
storyStoreV7: true, storyStoreV7: true,
docs: { disable: false, defaultName: 'docs', autodocs: false }, docs: { defaultName: 'docs', autodocs: false },
...overrides, ...overrides,
}); });
await generator.initialize(); await generator.initialize();

View File

@ -201,7 +201,7 @@ export class StoryStoreFacade<TRenderer extends Renderer> {
const { autodocs } = docsOptions; const { autodocs } = docsOptions;
const componentAutodocs = componentTags.includes(AUTODOCS_TAG); const componentAutodocs = componentTags.includes(AUTODOCS_TAG);
const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs); const autodocsOptedIn = autodocs === true || (autodocs === 'tag' && componentAutodocs);
if (!docsOptions.disable && storyExports.length) { if (storyExports.length) {
if (componentTags.includes(STORIES_MDX_TAG) || autodocsOptedIn) { if (componentTags.includes(STORIES_MDX_TAG) || autodocsOptedIn) {
const name = docsOptions.defaultName; const name = docsOptions.defaultName;
const docsId = toId(componentId || title, name); const docsId = toId(componentId || title, name);

View File

@ -34,9 +34,7 @@ jest.mock('@storybook/global', () => ({
FEATURES: { FEATURES: {
breakingChangesV7: true, breakingChangesV7: true,
}, },
DOCS_OPTIONS: { DOCS_OPTIONS: {},
disable: false,
},
}, },
})); }));
@ -111,7 +109,7 @@ function makeRequireContext(importMap: Record<Path, ModuleExports>) {
describe('start', () => { describe('start', () => {
beforeEach(() => { beforeEach(() => {
global.DOCS_OPTIONS = { disable: true }; global.DOCS_OPTIONS = {};
// @ts-expect-error (setting this to undefined is indeed what we want to do) // @ts-expect-error (setting this to undefined is indeed what we want to do)
global.__STORYBOOK_CLIENT_API__ = undefined; global.__STORYBOOK_CLIENT_API__ = undefined;
// @ts-expect-error (setting this to undefined is indeed what we want to do) // @ts-expect-error (setting this to undefined is indeed what we want to do)
@ -962,7 +960,7 @@ describe('start', () => {
describe('docs', () => { describe('docs', () => {
beforeEach(() => { beforeEach(() => {
global.DOCS_OPTIONS = { disable: false }; global.DOCS_OPTIONS = {};
}); });
// NOTE: MDX files are only ever passed as CSF // NOTE: MDX files are only ever passed as CSF
@ -1149,7 +1147,7 @@ describe('start', () => {
describe('autodocs', () => { describe('autodocs', () => {
beforeEach(() => { 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 () => { it('adds stories for each component with autodocs tag', async () => {
@ -1309,7 +1307,7 @@ describe('start', () => {
}); });
describe('when docsOptions.autodocs = true', () => { describe('when docsOptions.autodocs = true', () => {
beforeEach(() => { 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 () => { it('adds stories for each component with autodocs tag', async () => {

View File

@ -241,10 +241,6 @@ type CoreCommon_StorybookRefs = Record<
>; >;
export type DocsOptions = { 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? * What should we call the generated docs entries?
*/ */

View File

@ -57,7 +57,6 @@ By default, Storybook offers zero-config support for documentation and automatic
| Option | Description | | 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 }` | | `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 }` | | `true` | Enables auto-generated documentation pages for every component <br/> `docs: { autodocs: true }` |
| `defaultName` | Renames the auto-generated documentation page<br/> `docs: { defaultName: 'Documentation' }` | | `defaultName` | Renames the auto-generated documentation page<br/> `docs: { defaultName: 'Documentation' }` |