Merge pull request #19716 from storybookjs/tom/sb-896-automigration-to-set-autodocspage-true

Add automigration to set docsPage = 'automatic' for existing Storybooks
This commit is contained in:
Tom Coleman 2022-11-03 11:44:03 +11:00 committed by GitHub
commit 5e8417c3b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,61 @@
import chalk from 'chalk';
import { dedent } from 'ts-dedent';
import type { ConfigFile } from '@storybook/csf-tools';
import { readConfig, writeConfig } from '@storybook/csf-tools';
import { getStorybookInfo } from '@storybook/core-common';
import type { Fix } from '../types';
const logger = console;
interface DocsPageAutomaticFrameworkRunOptions {
main: ConfigFile;
}
/**
* Set the docs.docsPage option to automatic if it isn't already set
*/
export const docsPageAutomatic: Fix<DocsPageAutomaticFrameworkRunOptions> = {
id: 'docsPageAutomatic',
async check({ packageManager }) {
const packageJson = packageManager.retrievePackageJson();
const { mainConfig } = getStorybookInfo(packageJson);
if (!mainConfig) {
logger.warn('Unable to find storybook main.js config, skipping');
return null;
}
const main = await readConfig(mainConfig);
const docs = main.getFieldValue(['docs']);
return docs?.docsPage === undefined ? { main } : null;
},
prompt() {
const docsPageAutomaticFormatted = chalk.cyan(`docs: { docsPage: 'automatic' }`);
return dedent`
We've detected that your main.js configuration file has not configured docsPage. In 6.x we
we defaulted to having a docsPage for every story, in 7.x you need to opt in per-component.
However, we can set the \`docs.docsPage\` to 'automatic' to approximate the old behaviour:
${docsPageAutomaticFormatted}
More info: ${chalk.yellow(
'https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#docs-page'
)}
`;
},
async run({ result: { main }, dryRun }) {
logger.info(`✅ Setting 'docs.docsPage' to 'automatic' in main.js`);
if (!dryRun) {
main.setFieldValue(['docsPage', 'docs'], 'automatic');
await writeConfig(main);
}
},
};

View File

@ -12,6 +12,7 @@ import { sbScripts } from './sb-scripts';
import { newFrameworks } from './new-frameworks';
import { removedGlobalClientAPIs } from './remove-global-client-apis';
import { mdx1to2 } from './mdx-1-to-2';
import { docsPageAutomatic } from './docsPage-automatic';
export * from '../types';
@ -28,4 +29,5 @@ export const fixes: Fix[] = [
newFrameworks,
removedGlobalClientAPIs,
mdx1to2,
docsPageAutomatic,
];