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()
    ...
  }

Below is an overview of that flow:

Untitled

On State Update

When a state update is triggered through variable re-assignment, it follows this flow:

Untitled

On State Disposal

When a DOM element is removed, the associated entity is then disposed which also disposes variables that are no longer used by other entities: