Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@superstructure.net/s

hatsumatsu26MIT0.0.7

Lean subscription-based state management.

readme

    //////
  ///     ´
    ///
      /////
  ,     ///
   //////

Lean subscription-based state management.

Installation

npm install @superstructure.net/s

Note: This library comes as es6 module only. If you use a transpiler like babel or swc make sure to include `/node_modules/@superstructure.net/s` in your transpiler’s config.

Usage

import { S } from '@superstructure.net/s';

// Init state object with key:value pairs
const state = new S({
    x: 0,
    message: 'Hi!',
});

// Set value
state.set('x', 1);

// Get value
state.get('x'); // 1

// Subscribe to changes
// - single key
const onChangeX = () => {
    console.log(`x changed: ${state.get('x')}`);
};

state.on('x', onChangeX);

// - multiple keys
const onChangeAnything = () => {
    console.log(`x or message changed: ${state.get('x')}, ${state.get('message')}`);
};

state.on('x message', onChangeAnything);

// - optional context for bulk unsubscription
state.on('x', onChangeX, 'myContext');

// Unsubscribe ...
// ... key + callback
state.off('x', onChangeX);
// ... key + context
state.off('x', 'myContext');
// ... key
state.off('x');
// ... callback
state.off(null, onChangeX);
// ... context
state.off(null, 'myContext');
// ... all
state.off();

// Destroy instance
state.destroy();

Subscriptions are debounced per key by default. Updating a key’s value frequently only calls its subscriptions once:

state.on('x', () => {
    console.log(`x changed: ${state.get('x')}`);
});

state.set('x', 1);
state.set('x', 2);
state.set('x', 3);
state.set('x', 4);

// Only logs 'x changed: 4'

Be aware that debouncing means subscriptions are async:

state.on('x', () => {
    console.log(`x changed: ${state.get('x')}`);
});

console.log('A');

state.set('x', 1);

console.log('B');

// Logs:
//    'A'
//    'B'
//    'x changed: 1'

You can opt-out of this behavior by using the immediate flag when setting a value (See API).

API

set( key, value, immediate = false, triggerWhenEqual = false )

  • key
  • value
  • immediate By default subscriptions are debounced by key. Set to true to trigger subscriptions immediately instead.
  • triggerWhenEqual By default subscriptions are not triggered if new value === previous value. Set to true to always call subscriptions.

get( key )

  • key

toggle( key, immediate = false, triggerWhenEqual = false )

Same as set() but toggles a boolean value.

on( keys, callback, context = undefined )

  • keys one or more keys separated by space
  • callback
  • context optional context string for bulk unsubscription

off()

  • key Optional. Set to select which subscriptions to unsubscribe.
  • (callback|context) Optional. Set to select which subscriptions to unsubscribe.

Atomic state

Instead of having a state tree with key:value pairs you can also use atomic state items with s instead of S.

import { s } from '@superstructure.net/s';

// Init state
const x = new s(0);
const message = new s('Hi!');

// Set value
x.set(1);

// Get value
x.get(); // 1

// Subscribe to changes
const onChangeX = () => {
    console.log(`x changed: ${x.get()}`);
};

x.on(onChangeX);

// add an optional context to unsubscribe granulary:
x.on(onChangeX, 'myContext');

// Unsubscribe ...
// ... specific callback
x.off(onChangeX);
// ... specific context
x.off('myContext');
// ... Unsubscribe all callbacks
x.off();

// Destroy instance
state.destroy();

API

set( value, immediate = false, triggerWhenEqual = false )

  • value
  • immediate By default subscriptions are debounced. Set to true to trigger subscriptions immediately instead.
  • triggerWhenEqual By default subscriptions are not triggered if new value === previous value. Set to true to call always subscriptions.

get()

on( callback, context )

  • callback
  • context Optional. Context for graunlar unsubscription.

off( callback = undefined )

  • (callback|context) Optional. Set to select which subscriptions to unsubscribe.