Extract funcs from fillHierarchy

This commit is contained in:
igor 2017-08-12 19:20:37 +03:00
parent cfd7d9b14d
commit 419cc68233

View File

@ -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);
}