ZeroX-DG / SnippetStore

:tada: A snippet management app for developers :rocket:
https://zerox-dg.github.io/SnippetStoreWeb/
MIT License
869 stars 81 forks source link

Reduced performance for large collection of snippets. #47

Open bantya opened 5 years ago

bantya commented 5 years ago

Current Behavior

As the snippets collection grows, it seriously hampers the performance of the app! Simple usage of app feels sluggish.

Expected Behavior

The app should run relatively with same speed/performance no matter how many snippets are loaded.

Suggestions

According to the reason mentioned in #13, as the large number of CodeMirror instances make the app less performant.

For just previewing all the snippets, the lightweight solutions like Prism, HighlightJs should be used.

The HighlightJs looks promising. It supports multiple languages (185 as of now), it also renders the view in multiple themes (89 as of now).

The CodeMirror instance should be created only for editing the snippet. If the snippet is saved/edit cancelled/focus is lost, the instance should be destroyed.

System Info

image

References

13