The SVG Renderer for Yoga Tree, implemented using Halogen.
- Allows user to specify their own component for rendering items in preview or directly in the tree;
- Supports keyboard navigation;
- Allows users to enter a section of the tree;
- Supports zoom;
- Allows pinning/unpinning items to a separate list;
- Shows node preview on hover;
- See
./screens
folder for Screenshots; - Allows user to turn on/off parts of the UI:
- History;
- Pinned items;
- Location / Selection;
- Preview;
- Editing tree as Text;
- Export to JSON/Text;
- Zoom controls;
- Fold view;
- Better layout;
- Take path of a section from URL
hash
as well; - Support optional depth render limit;
- Support optional children count limitl;
- Multiple selection;
- Better fold view:
- with ability to fold/unfold nodes;
- with the support of longer labels;
- Run demo with
sh serve.sh
or, if you are using Nix OS,sh ./nix-serve.sh
innix develop
; - Select the example using the hash in the URL:
#ex=init
- initial example;#ex=many
- many items example (more than 1.000?);#ex=simple
- simple example;#ex=letnum
- letters & numbers: a varierty of letter variants for latin alphabet;
- You can set focus to some path in the tree using integer indices like this:
#path=
- means just root;#path=0
- means the first item under the root;#path=2-5
- means focus on the third item (indices start at0
) under the root and then the sixth item under it;
- You can select theme:
#theme=dark
- for dark theme (not yet fully supported);#theme=light
- for dark theme (not yet fully supported);
- You can limit depth and/or children count:
#depth=1
- limit depth visibility to no more than one level deep;#children=5
- limit children to no more than 5 children visible;
- And, you can combine any options using comma:
#depth=1,ex=many,path=2-5,theme=dark