Easy and compact svelte component library to generate tree view.
npm i svelte-tree-viewer
type Node = {
desc: string;
key?: string;
child?: Array<Node>;
}
const Tree: Array<Node> = [{
desc: 'parent',
child: [{
key: 'child',
desc: 'child'
}]
}, {
desc: 'parent 2 it is',
child: [{
desc: 'child 2 it is',
child: [{
desc: 'child 2-1 it is',
key: 'child-2-1'
}]
}]
}]
Should be an array of objects where each object denotes a tree node and can have the following properties
import { TreeViewer } from "svelte-tree-viewer";
then use it in you component
<TreeViewer tree={tree} onSelectCallback={YOUR_CALLBACK_FUNCTION_HERE}/>
This component will expect the following props
Note: onSelectCallback will be called only when a click event is registered on the leaf nodes
svelte-tree-viewer supports font awesome icons and uses svelte-fa to render those. if you want the secondary icon to be visible on the screen, then there are two possible ways to pass it on to svelte-tree-viewer
// Note: faIcon is true here since faBookDead is a font awesome icon
2. Using custom image url
// Note: faIcon is false here <TreeViewer tree={tree} secondaryIcon={'[YOUR_IMAGE_SRC]'} onSelectCallback={YOUR_CALLBACK_FUNCTION_HERE} faIcon={false}/>