8

Javascript classes: state management - The Startup - Medium

 3 years ago
source link: http://brianyang.com/javascript-classes-state-management-the-startup-medium/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Javascript classes: state management - The Startup - Medium

February 22, 2020

Javascript classes: state management - The Startup - Medium

In case you are working with the ES6+ class system, you most likely want to use configs (properties) for your own classes. Since the class system is still lacking to define these inline, you could use the constructor:

1*UcIQBeLUoPrbg-LiNB6l6A.png

You will most likely notice right away, that this approach is not really helpful, since you have no change listeners for your class configs. Defining the properties via get & set can help with this:

1*PiOPThrqOX0qEal3aSojkA.png

Both class definitions are pretty similar, but the 2nd one allows us to use myInstance.a = 2; for automatically triggering the setter. As a design pattern, saving the content of each property inside a underscore prefixed version does make sense (e.g. a => a). You could add more logic into each setter, but as soon as you want to extend your own classes again, this will cause problems. So calling new methods which you can extend or override makes more sense:

1*KZ9SJCtv2RXlJQKUdKPa8g.png

Passing the new & the old value makes a lot of sense. As a design pattern, I recommend to use method names like afterSetMyConfig(). In case you want to extend your class now, you can override afterSetA and use the superclass call (super.afterSetA(value, oldValue);) as needed.

In case you are using the neo.mjs framework, you can shorten this code quite a bit:

1*0EEgLDwKtJtVPt2xywkQjw.png

applyClassConfig will generate something similar to the previous version, with the difference that you can change the default values for your properties more easily when extending classes.

Chicken or egg?

You might have noticed that afterSetA() is using this.b internally. You could flip the order of a & b_ inside the getConfig() method to change the order in which the configs do get applied. Since afterSetB() is using this.a internally, we ended up with a circular reference, so we can not solve this issue just using the config order. In neo.mjs, i solved it like this:

1*wx4Wq9ghodxKGTYAjqnZLg.png

=> https://github.com/neomjs/neo/blob/dev/src/Neo.mjs#L540

The important part is that in case not all configs got applied yet, the afterSet methods will not get executed but get stored inside an afterSetQueue instead. Once all configs did get applied, the afterSetQueue will get processed and this ensures that circular references when creating classes / instances are no longer a problem.

How to define an instance state?

I have seen several different approaches and personally prefer to see a state as a permutation of class configs (properties).

1*cxQresy_Tp8xWyCMcoDvfg.png

After creating an instance (you can use “new” if not working with the neo.mjs class system), you can change each config directly as an assignment, triggering the setter:

1*jbI2vDoPRcHBSfMShCpABQ.png

In our simple TestClass example, a state could be:
{a:1, b:2}
and another one could be:
{a:2, b:3}

To switch from the initial state to the second one, you could use:

1*A0Dzqm4ddy434-g-8mIp3g.png

Chicken or egg version 2

Although you can flip the order of the configs, we are still dealing with our circular dependency inside the afterSet methods, so using Object.assign() might cause issues.

The solution is to create a set() method, which will use the afterSetQueue for dynamic changes as well:

1*K2h0NO9MujQyFGH6eA5A6A.png
1*8DquQ5lD8ntUElYhxa1IbA.png

You can define the logic like this, in case you don’t want to use neo.mjs:
https://github.com/neomjs/neo/blob/dev/src/core/Base.mjs

A fully working test could look like this one:

1*agUaG7-cpxB8ivmn04V2pw.png

https://github.com/neomjs/neo/blob/dev/test/siesta/tests/ClassSystem.mjs

Running it will generate the following results:

1*yJhKPdLmGKHFGVkhaDVFCQ.png

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK