mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Extract funcs from fillHierarchy
This commit is contained in:
parent
cfd7d9b14d
commit
419cc68233
@ -14,21 +14,34 @@ function findMatches(matches, type, value) {
|
||||
return matchForNamespace.indices;
|
||||
}
|
||||
|
||||
function createComponentNode(namespace, story) {
|
||||
return {
|
||||
name: story.name,
|
||||
namespaces: story.namespaces,
|
||||
highlight: findMatches(story.matches, 'namespaces', namespace),
|
||||
kind: story.kind,
|
||||
stories: story.stories.map(s => ({
|
||||
name: s,
|
||||
highlight: findMatches(story.matches, 'stories', s),
|
||||
})),
|
||||
};
|
||||
}
|
||||
|
||||
function createNamespaceNode(namespace, hierarchy, story) {
|
||||
return {
|
||||
isNamespace: true,
|
||||
name: namespace,
|
||||
namespaces: [...hierarchy.namespaces, namespace],
|
||||
highlight: findMatches(story.matches, 'namespaces', namespace),
|
||||
map: new Map(),
|
||||
};
|
||||
}
|
||||
|
||||
function fillHierarchy(namespaces, hierarchy, story) {
|
||||
if (namespaces.length === 1) {
|
||||
const namespace = namespaces[0];
|
||||
const childItems = hierarchy.map.get(namespace) || [];
|
||||
|
||||
const component = {
|
||||
kind: story.kind,
|
||||
name: story.name,
|
||||
namespaces: story.namespaces,
|
||||
stories: story.stories.map(s => ({
|
||||
name: s,
|
||||
highlight: findMatches(story.matches, 'stories', s),
|
||||
})),
|
||||
highlight: findMatches(story.matches, 'namespaces', namespace),
|
||||
};
|
||||
const component = createComponentNode(namespace, story);
|
||||
|
||||
childItems.push(component);
|
||||
hierarchy.map.set(namespace, childItems);
|
||||
@ -40,15 +53,7 @@ function fillHierarchy(namespaces, hierarchy, story) {
|
||||
let childHierarchy = childItems.find(item => item.isNamespace);
|
||||
|
||||
if (!childHierarchy) {
|
||||
childHierarchy = {
|
||||
isNamespace: true,
|
||||
name: namespace,
|
||||
namespaces: [...hierarchy.namespaces, namespace],
|
||||
firstKind: story.kind,
|
||||
highlight: findMatches(story.matches, 'namespaces', namespace),
|
||||
map: new Map(),
|
||||
};
|
||||
|
||||
childHierarchy = createNamespaceNode(namespace, hierarchy, story);
|
||||
childItems.push(childHierarchy);
|
||||
hierarchy.map.set(namespace, childItems);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user