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

redux-repository

v0.6.3

Published

A versatile set of pure functions to simplify the management of remote resources with Redux

Downloads

23

Readme

redux-repository

npm CI CD Coverage Status

A versatile set of pure functions to simplify the management of remote resources with Redux.

  • A single resource consists of:
    • ID
    • status: requested, received, failed
    • data, if the status is received
    • error, if the status is failed
    • timestamp of the data or error acquisition
  • The same resource can be requested from multiple places at the same time, it will only be fetched once
  • Resources are stored in the normalized state shape
  • Resources can be cached to skip consequent fetching
  • Read-only operations are supported so far: fetch and reset (remove local copy)

Quick Start

Install

npm install redux-repository

Use

Implement action creators first:

import { createFetchResource, createResetResources } from 'redux-repository/lib/actions';
import { Action } from 'redux-repository/lib/types';
import { ThunkAction } from 'redux-thunk';

import { Product } from './Product';
import { State } from './State';

export interface FetchProductAction {
  (id: string): void;
}

export interface ResetProductsAction {
  (): void;
}

export const fetchProduct = (id: string): ThunkAction<void, State, null, Action<Product, string>> => (
  createFetchResource(
    'product',
    id,
    ({ catalog: { products } }) => products,
    (dispatchReceived, dispatchFailed) => {
      fetch(`https://example.com/api/products/${id}`)
        .then(response => response.json())
        .then(data => dispatchReceived(data))
        .catch(error => dispatchFailed(error.toString()));
    },
    {
      silentAlready: true, // skip "already received" messages, optional
      ttl: 60 * 1000, // cache for 1 minute, optional
    },
  )
);

export const resetProducts = (): ThunkAction<void, State, null, Action<Product, string>> => (
  createResetResources('product')
);

Then, inject the repository reducer:

import { Action } from 'redux';
import { isResourceAction, repositoryReducer } from 'redux-repository/lib/reducer';
import { createInitialState } from 'redux-repository/lib/repository';
import { Action as ReduxRepositoryAction } from 'redux-repository/lib/types';

import { Product } from './Product';
import { State } from './State';

const initialState: State = {
  // ...
  catalog: {
    // ...
    products: createInitialState(),
  },
};

export default (state: State = initialState, action: Action): State => {
  if (isResourceAction('product', action as ReduxRepositoryAction<Product, string>)) {
    return {
      ...state,
      catalog: {
        ...state.catalog,
        products: repositoryReducer(state.catalog.products, action as ReduxRepositoryAction<Product, string>),
      },
    };
  }

  switch (action.type) {
    // ...
    default:
      return state;
  }
};

That's it! Now you can trigger fetchProduct, resetProducts and wire components to the repository via state:

import { connect } from 'react-redux';
import { Repository } from 'redux-repository/lib/interfaces';

import { fetchProduct, FetchProductAction } from './actions';
import { Product } from './Product';
import { State } from './State';

interface StateProps {
  products: Repository<Product, string>;
}

interface DispatchProps {
  fetchProduct: FetchProductAction;
}

const mapStateToProps = ({ catalog: { products } }: State): StateProps => ({ products });
const mapDispatchToProps: DispatchProps = { fetchProduct };

export const connect = connect(mapStateToProps, mapDispatchToProps);

The full list of exported entities that might be useful:

import {
  createFetchResource,
  createResetResources,
} from 'redux-repository/lib/actions';

import {
  RequestedResource,
  ReceivedResource,
  FailedResource,
  Resource,
  Repository,
} from 'redux-repository/lib/interfaces';

import {
  isResourceAction,
  repositoryReducer,
} from 'redux-repository/lib/reducer';

import {
  createInitialState,
  getResourceById,
  getResourcesArrayByIds,
  pushResource,
  pushResourcesArray,
  mergeRepositories,
} from 'redux-repository/lib/repository';

import {
  createFailed,
  createReceived,
  createRequested,
  extractData,
  extractError,
  isExpired,
  isFailed,
  isReceived,
  isRequested,
} from 'redux-repository/lib/resource';

import {
  Action,
} from 'redux-repository/lib/types';

// Examples:
const productResource = getResourceById(productsRepository, productId);
const productData = extractData(productResource);
const productProgress = isRequested(productResource);