npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

painless-redux

v4.1.17

Published

Reducers-actions-selectors free reactive state management in redux-way

Downloads

78

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

  1. To be familiar with redux
  2. To be familiar with RxJS

Documentation

Here

Plain use

  1. install using npm: npm i painless-redux

  2. create an store:

    import { createPainlessRedux, RxStore } from 'painless-redux';
    const store: RxStore = <use any implementation you want>;
    export const PAINLESS_REDUX_STORE = createPainlessRedux(store);
  3. 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;
  4. add new entity

    PaintersEntity.add({ id: 1, fullName: 'Vincent van Gogh', born: 1853 });
  5. 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);
    }