svelte-tree-viewer

1.0.1 • Public • Published

svelte-tree-viewer

Build Status License: MIT Bundle Size

Easy and compact svelte component library to generate tree view.

See Demo

https://user-images.githubusercontent.com/20151526/136652408-ad3a4a1b-4c89-43f0-9a9d-95e88f73fff3.mov

Installation

npm i svelte-tree-viewer

Usage

Creating a Tree structure that svelte-tree-viewer can interpret

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

  • key -> a unique key name that would be forwarded as the onSelectCallback parameter. Not required on a non-leaf node.
  • desc -> text to be shown on UI
  • child -> denotes children of the current node. Don't pass it on if a node does have any children.

import it in your svelte component

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

  • tree -> Tree
  • onSelectCallback(optional): (key) => {....your implementation} -> a callback function that will be called when any leaf node is clicked
  • secondaryIcon(optional): Fa icon or image src
  • faIcon: boolean -> - true: if the secondary icon is a font awesome icon - false: if it is an image url

Note: onSelectCallback will be called only when a click event is registered on the leaf nodes

Using secondary icons

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

  1. Using font awesome
 import { faBookDead } from '@fortawesome/free-solid-svg-icons';

 // Note: faIcon is true here since faBookDead is a font awesome icon
 <TreeViewer tree={tree} secondaryIcon={faBookDead} onSelectCallback={YOUR_CALLBACK_FUNCTION_HERE} faIcon={true}/>
  1. Using custom image url
 // Note: faIcon is false here
 <TreeViewer tree={tree} secondaryIcon={'[YOUR_IMAGE_SRC]'} onSelectCallback={YOUR_CALLBACK_FUNCTION_HERE} faIcon={false}/>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    16
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    16
  • 1.0.0
    1

Package Sidebar

Install

npm i svelte-tree-viewer

Weekly Downloads

16

Version

1.0.1

License

MIT

Unpacked Size

46 kB

Total Files

12

Last publish

Collaborators

  • pulkit29