biigle / label-trees

:m: BIIGLE module to create, edit and manage label trees
0 stars 0 forks source link

More performant label tree widget #6

Closed mzur closed 8 years ago

mzur commented 8 years ago

If a label tree gets very large, the current implementation of the label tree widget (which displays the labels in a tree-like structure) gets very slow. This is because the tree is initialized with all labels which are appended to the DOM (=slow).

A more performant implementation might lazy load the labels when a single item is expanded. This must work with the search feature of the annotation tool (and later the image annotations) as well.

@dlangenk Do you think this is important for v1.0.0?