Merge pull request #19440 from storybookjs/deprecate/old-stories-root

remove the old showRoots config option
This commit is contained in:
Norbert de Langen 2022-10-13 16:15:57 +03:00 committed by GitHub
commit c42e9a6d43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -222,14 +222,6 @@ export interface StoryIndex {
entries: Record<StoryId, IndexEntry>;
}
const warnLegacyShowRoots = deprecate(
() => {},
dedent`
The 'showRoots' config option is deprecated and will be removed in Storybook 7.0. Use 'sidebar.showRoots' instead.
Read more about it in the migration guide: https://github.com/storybookjs/storybook/blob/master/MIGRATION.md
`
);
const warnChangedDefaultHierarchySeparators = deprecate(
() => {},
dedent`
@ -372,12 +364,9 @@ export const transformStoryIndexToStoriesHash = (
const v4Index = index.v === 4 ? index : transformStoryIndexV3toV4(index as any);
const entryValues = Object.values(v4Index.entries);
const { sidebar = {}, showRoots: deprecatedShowRoots } = provider.getConfig();
const { showRoots = deprecatedShowRoots, collapsedRoots = [], renderLabel } = sidebar;
const { sidebar = {} } = provider.getConfig();
const { showRoots, collapsedRoots = [], renderLabel } = sidebar;
const usesOldHierarchySeparator = entryValues.some(({ title }) => title.match(/\.|\|/)); // dot or pipe
if (typeof deprecatedShowRoots !== 'undefined') {
warnLegacyShowRoots();
}
const setShowRoots = typeof showRoots !== 'undefined';
if (usesOldHierarchySeparator && !setShowRoots && FEATURES?.warnOnLegacyHierarchySeparator) {