Sorting and filtering are quite fast. However, there few cases (e.g., when a whole library is selected) where it takes a couple of hundreds milliseconds to perform it and UI freezes. Consider splitting the work in chunks and schedule them via setTimeout(fn, 0);
Sorting and filtering are quite fast. However, there few cases (e.g., when a whole library is selected) where it takes a couple of hundreds milliseconds to perform it and UI freezes. Consider splitting the work in chunks and schedule them via
setTimeout(fn, 0)
;