lib/state.js
manages the logic related to state.
Last updated at Feb 29, 2024 by Joeylene
TABLE OF CONTENTS
During Mini’s initialization, an instance of the state class is created:
// lib/main.js
export class Mini {
constructor() {
this.state = new State(this)
...
}
async init() {
...
this.state.setProxyWindow()
...
this._initializeGlobalVariables()
...
this.state.evaluate()
...
}
state.setProxyWindow
stage*.* We use JavaScript Proxies to trigger DOM updates when a state has been re-assigned.window[variable]
.window[entityID][variable]
. It starts with el.
and scope.
window[variable
. It starts with $
.state.js
tracks which entities depends on specific variables, which is used for state updates later. You can view which entities depends on certain variables by checking MiniJS.state.variables
and MiniJS.state.entityVariables
for entity variables:
, are evaluated.Below is an overview of that flow:
When a state update is triggered through variable re-assignment, it follows this flow:
Variables
Variable Dependencies
Entities that depends on a variable are tracked via MiniJS.state.variables
and MiniJS.state.entityVariables
.
This is used when re-evaluating a variable’s dependencies.
For example:
<input :value="firstName" /> // EntityID1
<p :text="firstName"></p> // EntityID2
<input :value="lastName" /> // EntityID3
<p :text="lastName"></p> // EntityID4
// state updates:
firstName = 'Arya'
// state.js gets the entities that depends on that variable
// that would be the first <input /> and <p /> tags
const dependencies = state.variables.get("firstName")
// returns [EntityID1, EntityID2]
// state.js will now re-evaluate the DOM
dependencies.forEach((entityID) => {
const entity = state.entities.get(entityID)
entity?.attributes.evaluate()
// will evaluate :value for <input /> and :text for <p />
})
Attaching Helper Methods
When a DOM element is removed, the associated entity is then disposed which also disposes variables that are no longer used by other entities: