type-safe-state-js
TypeScript icon, indicating that this package has built-in type declarations

1.2.8 • Public • Published

type-safe-state-js

License: MIT npm version Build Status Coverage Status

REACT NATIVE USERS, PLEASE READ THIS FIRST:

Since React Native only allows the state to be a normal key-value object, using this State will lead to errors when we call setState on a Component:

One of the sources for assign has an enumerable key on the prototype chain. Are you trying to assign a prototype property? We don't allow it, as this is an edge case that we do not support. This error is a performance optimization and not spec compliant.

The workaround for this issue is to convert the State to a normal KV object with flatten before setting state, and re-convert this.state back with State.fromKeyValue when we want to read data. When I define a Component, I usually do it as such:

import { Component } from 'react';
import { State, StateType } from 'type-safe-state-js';
 
class App extends Component<Props.Type, StateType<any>> {
  public constructor(props: Props.Type) {
    super(props);
  }
 
  private operationThatAccessesState(): void {
    let a = State.fromKeyValue(this.state).valueAtNode('a.b.c.d');
    ...
  }
 
  private operationThatSetsState(state: State.Self<any>): void {
    this.setState(this.convertStateForPlatform(state));
  }
 
  private convertStateForPlatform(state: State.Self<any>): StateType<any> {
    return this.platform === REACT_NATIVE ? state.flatten() : state;
  }
}

Since StateType is defined as:

type StateType<T> = State.Type<T> | {[key: string]: T};

Or as written in the source code:

type StateType<T> = State.Type<T> | JSObject<T>;

Using StateType as the state type for a component effectively takes care of both normal React.js and React Native. State.fromKeyValue checks whether the object is of class State.Self first before doing anything (and does nothing if it is), so we do not have to worry about unnecessary work.

WHAT IS IT?

Functional, type-safe nested state object that can be used for (but not limited to) Redux architectures. Since it is immutable by default (all update operations must be done via a limited selection of functions), we do not need to worry about shared state management.

To use this State:

import {State} from 'type-safe-state-js';
 
/// Note that we only expose the state interface for better encapsulation.
let state: State.Type<any> = State.empty<any>();

This State object contains the a key-value object of the current state values, as well as a key-value object of nested substates. To access the value at any node, use:

state.valueAtNode(string);

The parameter of this function should be a String whose components are joined with the specified substateSeparator (which is by default '.'). For example:

state.valueAtNode('a.b.c.d.e');

The above call will access the value at key 'e' of substate 'a.b.c.d'.

In order to update the value at some node, call:

state.updatingValue(string, Never<any>);

The State object will update the value at that node, and if necessary create new substates along the way.

This State is useful for Redux reducers because you will not need to check for existence of property keys before updating value at a node. A reducer can be as such:

function reduce(state: State.Type<any>, action: Action): State.Type<any> {
  return state
    .updatingValue('auth.login.username', action.username)
    .updatingValue('auth.login.password', action.password)
    .updatingValue('auth.login.email', action.email);
}

As a result, we have a robust, functional set of reducers.

Note that althought the source code defines a class called State.Self (which holds all implementations for State.Type), it is not exported in order to prevent unwanted state modifications. As a result, we would use State.Type for all state operations, and even cloneBuilder() (since it extends BuildableType). One limitation of this approach is that it becomes harder to provide a different implementation for State.Type due to the large number of required methods/properties, but I see little use in doing so.

Package Sidebar

Install

npm i type-safe-state-js

Weekly Downloads

1

Version

1.2.8

License

MIT

Unpacked Size

89.7 kB

Total Files

38

Last publish

Collaborators

  • haipham