How to clean up data in components to prevent memory leaks? #428
-
As far as I can tell, data creating inside a 'Component' function will never be inherently cleaned up? For example, in this basic component: function Counter() {
const foo = van.state(123)
return button({ onclick: () => (foo.val += 1) }, foo)
} If the Is there any standard method of getting around this? Because while I love the simplicity of the 'just return the DOM element' approach, it seems quite easy to create memory leaks without the extra scaffolding that (hefty) reactive frameworks implement. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
VanJS has Garbage Collection |
Beta Was this translation helpful? Give feedback.
Ah... this is indeed tricky.
For @sirenkovladd's specific example, this can be fixed with https://jsfiddle.net/6eump4rj/. Basically for a derivation defined in a function to be properly GC-ed, that function needs to be a standard component (which means the function needs to return a DOM element).
I understand this is a little bit error-prone. I will keep this issue on mind to see improvement can be made.