painless-redux
v4.1.17
Published
Reducers-actions-selectors free reactive state management in redux-way
Downloads
12
Readme
painless-redux
Reducers-actions-selectors free reactive state management in redux-way
Overview
This package allows you to use CRUD (Create, Read, Update and Delete) manipulations with entities and workspaces.
General features:
- It provides several simple methods such as get, create, remove, change etc. for using on Entity instance.
- It provides loading state management (i.e. isLoading and error).
- Underhood it uses any redux-like library you want to (e.g. @ngrx/store), so it means you can use Redux DevTools but with this library you don't have to create boilerplate code (e.g. reducers, actions, selectors, action creators etc.).
- All methods working with outer data sources (e.g. requests passed to
get$
method) are RxJS powered. - It supports optimistic change, remove, add
- It provides Workspace (documentation will be ready soon) which allows you store filter, sorting, ui states etc.
Requirements
Documentation
Plain use
install using npm:
npm i painless-redux
create an store:
import { createPainlessRedux, RxStore } from 'painless-redux'; const store: RxStore = <use any implementation you want>; export const PAINLESS_REDUX_STORE = createPainlessRedux(store);
create an entity:
import { createEntity } from 'painless-redux'; import { PAINLESS_REDUX_STORE } from './store'; export interface Painter { id: number | string; fullName: string; born: number; } const PaintersEntity = createEntity<Painter>({ name: 'painters' }); PAINLESS_REDUX_STORE.registerSlot(PaintersEntity); export PaintersEntity;
add new entity
PaintersEntity.add({ id: 1, fullName: 'Vincent van Gogh', born: 1853 });
get entity or all entities
PaintersEntity.getById$(1).subscribe((painter: Painter) => {}); PaintersEntity.get$().subscribe((painters: Painter[]) => {});
Use with Angular
This adapter will help you to connect painless-redux
to your Angular project, who uses @ngrx/store.
Use with React
This adapter will help you to connect painless-redux
to your React project, who uses @reduxjs/toolkit.
Common use
This part can be difficult to understand, but this is main feature of this library.
Commonly you need to load some entities from outer source (e.g. your backend api) with given filter. To achieve this you need to prepare your data source using RxJS's observable and use Entity.get$
method like this:
import { Observable, of } from 'rxjs';
import { PaintersEntity } from './painters';
const init = () => {
const config = {};
getPainters$(config).subscribe((painters: Painter[]) => {
// emits:
// 1. undefined immediately
// 2. painters array when getPaintersFromApi$'s observable emits.
});
}
const getPainters$ = (config: unknown): Observable<Painter[]> {
const dataSource$ = getPaintersFromApi$(config);
return PaintersEntity.get$(config, dataSource$);
}
const getPaintersFromApi$ = (config: unknown): Observable<Painter[]> => {
// use can use any data source you need, this is for demo purposes.
const painters: Painter[] = [
{ id: 1, fullName: 'Leonardo da Vinci', born: 1452 },
{ id: 2, fullName: 'Vincent van Gogh', born: 1853 },
{ id: 3, fullName: 'Pablo Picasso', born: 1881 },
];
return of(painters);
}
Entity.get$
algorithm is described here
Pagination
Entity.get$
method supports pagination. For this you have to pass paginator
BehaviorSubject as the last argument:
import { Observable, of, BehaviorSubject } from 'rxjs';
import { Pagination } from 'painless-redux';
import { PaintersEntity } from './painters';
const init = () => {
const paginator = new BehaviorSubject(false);
const config = {};
getPainters$(config, paginator).subscribe((painters: Painter[]) => {
// emits:
// 1. undefined immediately
// 2. painters array when getPaintersFromApi$'s observable emits.
// idle 3000ms
// 3. painters array from second emit merged with another getPaintersFromApi$'s observable emits.
});
setTimeout(() => {
paginator.next(true);
}, 3000)
}
const getPainters$ = (config: unknown, paginator: BehaviorSubject<boolean>): Observable<Painter[]> {
const dataSource = ({ from, to, size, index }: Pagination) => getPaintersFromApi$(config, from, to);
return PaintersEntity.get$(config, dataSource, null, paginator);
}
const getPaintersFromApi$ = (config: unknown, from: number, to: number): Observable<Painter[]> => {
// use can use any data source you need, this is for demo purposes.
const painters: Painter[] = [
{ id: 1, fullName: 'Leonardo da Vinci', born: 1452 },
{ id: 2, fullName: 'Vincent van Gogh', born: 1853 },
{ id: 3, fullName: 'Pablo Picasso', born: 1881 },
].slice(from, to);
return of(painters);
}