raxy

Simple state manager

View the Project on GitHub Tetragius/raxy

Build Status npm version License: MIT

Chrome Firefox IE Opera Opera
49+ ✔ 18+ ✔ 18+ ✔ 36+ ✔ 10+ ✔

Can work in IE using polyfill @tetragius/raxy-polyfill

Raxy

Flow

A simple state manager to implement the SSOT approach , can be used with React or Vue

Works on the basis of the Proxy API in all browsers that support it.

The main difference from most state managers is to work with the storage as with an ordinary object, without using complex event mechanisms and selectors.

Supports debugging with Redux dev-tools


Table of contents::

Installation

npm install --save @tetragius/raxy

For React

npm install --save @tetragius/raxy-react

For Vue

npm install --save @tetragius/raxy @tetragius/raxy-vue

Demo

API

raxy

raxy(initState)

Returns an object with fields:

Each transaction in the queue has an abort method that aborts the current transaction and moves on to the next.

transaction

transaction<Store>(name: string, async (store: Store, progress: (n: number) => void))) => boolean

Creates a transaction to change several values ​​of the storage, if the transaction is not successful (if the function returns false) - all actions will be canceled.

Transactions are queued and executed strictly in the order they are called.

Transactions are Promise functions and can be chained.

transaction('transaction A', updater_A).then(transaction('transaction B', updater_B));

// или

await transaction('transaction A', updater_A);
await transaction('transaction B', updater_B);

A successful transaction returns - true.

The name of the transaction is for informational purposes only and can be chosen at the discretion of the developer.

The progress method - takes a number and sets the progress, also raises the transactionprogress event

The progress method contains:

interface ITransaction <S> {
    name: string; // transaction name
    pending: logical; // execution status
    aborted?: any; // reason for abort
    progress: number; // execution stage
    rollback: rollback []; // array of inverse operations
    store; // link to storage
    updater: Updater <S>; // storage update method
    resolve?: Resolver <S> // array of inverse operations
    abort: Abort; // method for completing the transaction - starts the rollback
}

subscribe/unsubscribe

export interface IDetail<S> {
    name?: string;
    complete?: string;
    store: S;
}
subscribe(on: 'update'|'transactionstart'|'transactionend', (event: CustomEvent<IDetail>) => void)

Subscribes to or unsubscribes from a repository update.

The event object contains the detail field of the IDetail interface.

Additional fields are specified for transactionstart and transactionend:

Additional fields are specified for transactionaborted:

Additional fields are specified for transactionaborted:

Additional fields are specified for connected:

connect

connect: <Store = any, State = any>(instanse: IRaxy<Store>, updateCallback: (state: State) => void, filter?: Filter<Store, State>, options?: IConnectorOptions<any> & Options<State>) => IConnector<Store, State>;

type Connector<S> = <State = any>(updateCallback: (state: State) => void, filter?: Filter<S, State>, options?: IConnectorOptions & Options<State>) => IConnector<S, State>;

Creates a connection to the repository

type Options<State = any> = {
    [P in keyof State]?: {
        ignoreTimeStamp?: boolean;
    };
};
interface IConnectorOptions<T = any> {
    elementRef?: RefObj<T>;
}

Пример опций

connect(
    (store) => ({
      todos: store.todos, /
      length: store.todos.length 
    }),
    {
      todos: { ignoreTimeStamp: true } // render does not take into account changes in the state of child elements
      elementRef: element // reference to the DOM node to optimize the updateCallback call
    }
  );

When elementRef is specified, it automatically disables checking the storage state change if the specified element is not visible on the page or in any viewport.

The connect method returns an object with fields

createConnector

createConnector: <Store = any>(initStore: Store) => IRaxyWithConnector<Store>;

interface IRaxyWithConnector<S> extends IRaxy<S> {
    connect: Connector<S>;
}

Creates a typed instance of the connect function can be used instead of calling raxy

logger

logger: (subscribe: IRaxy<any>['subscribe']) => void;

Displays the event log update, transactionstart, transactionend, addtransaction, transactionaborted, transactionprogress, connected to the console;

connectDevTools

connectDevTools: (instanse: IRaxy<any>) => void;

Enables support for Redux dev-tools

Polyfill

// Add to the beginning of the first file in the assembly
import "@babel/polyfill";
import '@tetragius/raxy-polyfill';

IE has some limitations