@tetragius/raxy

raxy

Usage no npm install needed!

<script type="module">
  import tetragiusRaxy from 'https://cdn.skypack.dev/@tetragius/raxy';
</script>

README

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:

  • store - proxied store
  • transaction - method for conducting transactions
  • subscribe - method for subscribing to store change events (update, transactionstart, transactionend)
  • unsubscribe - method for unsubscribing storage update events
  • transactions - transaction queue

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:

  • field progress.target with type ITransaction
  • field progress.prev of type ITransaction - result of the previous transaction
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: S; // 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.

  • update - Any update to the repository.
  • transactionstart - Transaction started.
  • transactionend - Transaction completed.
  • addtransaction - Transaction added to the queue
  • transactionaborted - Transaction canceled
  • transactionprogress - Transaction progress
  • connected- A new object is connected to the storage

Additional fields are specified for transactionstart and transactionend:

  • name - the name of the transaction
  • complete - transaction status ( true - completed)

Additional fields are specified for transactionaborted:

  • aborted - {status: any} - an object describing the reason for the cancellation

Additional fields are specified for transactionaborted:

  • progress - Percentage of progress, set by the user - type number

Additional fields are specified for connected:

  • value - Link to the new connected storage

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

  • instanse - an instance created by calling the raxy method
  • updateCallback - a function that will be called every time the state changes
  • filter - a function that determines when changing which parts of the storage to call updateCallback
  • options - a set of options to optimize work
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

  • state - reference to the state returned by the filter method
  • store - link to store
  • transaction - a method for making transactions
  • mountCallback - the method that should be called to enable the subscription
  • unmountCallback - the method that should be called to disable the subscription

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

  • Mutations do not work correctly - changes must be immutable
  • It is necessary to subscribe to the property being changed, since the subscription to the object does not work