doc.silverstripe.org/src/utils/nodes.ts

184 lines
4.1 KiB
TypeScript

import { useStaticQuery } from 'gatsby';
import { graphql } from 'gatsby';
import { HierarchyQuery, SilverstripeDocument } from '../types';
import sortFiles from './sortFiles';
let __nodes: SilverstripeDocument[] | undefined;
let __currentNode: SilverstripeDocument | null = null;
let __currentVersion: string | null = null;
let __home: SilverstripeDocument | null = null;
const childrenMap = new Map();
const navChildrenMap = new Map();
const siblingMap = new Map();
const parentMap = new Map();
/**
* Get all documents in the source
*/
const getNodes = (): SilverstripeDocument[] => {
if (__nodes) {
return __nodes;
}
const result:HierarchyQuery = useStaticQuery(graphql`
{
allSilverstripeDocument {
nodes {
title
summary
isIndex
introduction
icon
iconBrand
hideChildren
unhideSelf
slug
parentSlug
fileTitle
fileAbsolutePath
}
}
}
`
);
__nodes = result.allSilverstripeDocument.nodes.map(node => ({
...node,
}));
return __nodes;
};
/**
* Get the children of a given node
*
* @param node
* @param includeFolders
*/
const getChildren = (
node: SilverstripeDocument,
includeFolders: boolean = true
): SilverstripeDocument[] => {
const sku = `${node.slug}${includeFolders ? '1' : '0'}`;
if (childrenMap.has(sku)) {
return childrenMap.get(sku);
}
const nodes = getNodes();
let children: SilverstripeDocument[] = [];
if (node.isIndex) {
children = nodes.filter(n => {
return n.parentSlug === node.slug && (includeFolders || !n.isIndex);
}).sort(sortFiles);
}
childrenMap.set(sku, children);
return childrenMap.get(sku);
}
/**
* Get children of a given node that should be shown in navigation
*
* @param node
*/
const getNavChildren = (node: SilverstripeDocument): SilverstripeDocument[] => {
if (navChildrenMap.has(node.slug)) {
return navChildrenMap.get(node.slug);
}
let children: SilverstripeDocument[] = [];
if (!node.hideChildren) {
children = getChildren(node, true).filter(n => !n.hideSelf);
}
getChildren(node, true).filter(n => n.unhideSelf).forEach(c => children.push(c));
navChildrenMap.set(node.slug, children);
return navChildrenMap.get(node.slug);
};
/**
* Get the siblings of a given node
*
* @param node
*/
const getSiblings = (node: SilverstripeDocument): SilverstripeDocument[] => {
if (siblingMap.has(node.slug)) {
return siblingMap.get(node.slug);
}
const nodes = getNodes();
const siblings = nodes.filter(n => n.parentSlug === node.parentSlug);
siblingMap.set(node.slug, siblings);
return siblingMap.get(node.slug);
};
/**
* Get the parent of a given node
* @param node
*/
const getParent = (node: SilverstripeDocument): SilverstripeDocument | null => {
if (parentMap.has(node.slug)) {
return parentMap.get(node.slug);
}
const nodes = getNodes();
const parent = nodes.find(n => n.slug === node.parentSlug) || null;
parentMap.set(node.slug, parent);
return parentMap.get(node.slug);
};
/**
* Get the current node. Must be set by setCurrentNode(string: slug)
*/
const getCurrentNode = (): SilverstripeDocument | null => __currentNode;
/**
* Get the home page
*/
const getHomePage = (): SilverstripeDocument | null => {
if (__home) {
return __home;
}
const nodes = getNodes();
const version = getCurrentVersion();
const homePage = nodes.find(n => n.slug === `/en/${version}/`) || null;
__home = homePage;
return __home;
};
/**
* Get the selected version
*/
const getCurrentVersion = (): string => __currentVersion || '4';
/**
* Set the current node by its slug.
* @param slug
*/
const setCurrentNode = (slug: string): void => {
const currentNode = getNodes().find(n => n.slug === slug) || null;
__currentNode = currentNode;
if (currentNode) {
const matches = currentNode.slug.match(/^\/en\/([0-9]+)\//);
if (matches) {
__currentVersion = matches[1];
}
}
};
export {
getNodes,
getChildren,
getSiblings,
getParent,
getCurrentNode,
getHomePage,
getNavChildren,
getCurrentVersion,
setCurrentNode
};