Home > Web Front-end > JS Tutorial > body text

Living without \'lifecycle hooks\'

王林
Release: 2024-09-06 18:31:01
Original
941 people have browsed it

Living without

Nearly every JavaScript UI library &/| framework I've seen has some sort of lifecycle hooks: onmount, willmount, beforemount, aftermount, onunmount, onwhatever.

Do you really need them? Are they good or bad? Is it possible to live without?

So, why do these exist, in the first place?

  const oninit = (e: Element) => {
    e.style.prop = value;
    e.addEventListener('mouseover', handler);
    e.setAttribute('data-key', value);
  }
Copy after login

This is the typical (boring) initialisation boilerplate many components for the web come with and make use of. The declarative nature of HTML and CSS are aimed to make these redundant, except some times it's hard if not impossible to preset some functionality with the intended values (think of disabled="${()=>false}" which doesn't just behave as one would expect).

So what we do? Imperatively set whatever we're left with in an init handler. It works and the world can move forward.

There is an important issue with th approach, though. If something goes wrong, it's hard to guarantee event listeners and other things are properly cleaned up. The given framework can of course expose any onunmount hook, but if there is an error in the application logic then you have a bug, or worst, a memory leak.


Imperative programming is an unfortunate programming paradigm that is totally exposed to these situations. You can do nearly everything, including breaking stuff.

The solution comes with Inversion of Control and Functional Programming, which doesn't happen to be how HTML and JavaScript have been conceived, but there is good news: we can still implement the some of the foundational design patterns of FP and provide a strategic solution to the problem.

rimmel.js is a reference implementation of a conceptual superset of HTML called Reactive Markup, which works a little like TypeScript for JavaScript, but it's aimed at making HTML and the DOM functional/functional-reactive.

This is achieved by treating everything as a stream: style? It's a stream. DOM events? Of course they are streams. HTML attributes? Streams, too. Whenever they emit a value, that's set.

Let's see how it works.

  const style = CreateStream({color: 'red'});
  const key = CreateStream('red', value);
  const handler = CreateStream();

  const template = rml`
    <div style="${style}" data-key="${key}" onmouseover="${handler}">
    </div>
  `;
Copy after login

CreateStream is just a hypothetical stream creation utility. Typically you'd want to use Promises, Observables RxJS streams more in general instead, as they best model UI interactions.

If you check the code again, you'll soon realise there's no onmount call. In fact, there is just no need for it, since every operation an onmount callback was performing earlier, will be now done as soon as those streams emit.

Any given framework or UI library will be in charge of unmounting every single stream that's defined or bound in the templates: style, data-key, onmouseover. There is no risk of you forgetting to clean up and the chances of creating memory leaks is substantially reduced.

If you are new to functional programming you will likely spend some time understanding how to reformulate your problems in terms of streams, but when you manage to, there will be many more benefits waiting for you in exchange, such as a dramatically reduced code size (50% to 90% less code), much more testable and less error-prone logic and implementation.

Ready for a bit of an exotic experience? Check out rimmel.js

The above is the detailed content of Living without \'lifecycle hooks\'. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!