remove the old showRoots config option

This commit is contained in:
Norbert de Langen 2022-10-11 18:06:31 +02:00
parent 19a6e89dc1
commit 1592862ab1
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -372,12 +372,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) {