mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:21:15 +08:00
Merge pull request #19440 from storybookjs/deprecate/old-stories-root
remove the old showRoots config option
This commit is contained in:
commit
c42e9a6d43
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user