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

react-store-builder

v1.0.9

Published

this library relies on react hooks to create scalable stores to share data through the application

Downloads

18

Readme

React Store Builder Build Status npm

this library relies on react hooks to create scalable stores to share data through the application

Contents

Pending documentation

Installation

npm install react-store-builder

Quickstart

Create the app store applicationStore.js

import React, { useContext } from 'react';
import { StoreBuilder } from 'react-store-builder';

export const initialState = () => ({
  isLoading: false,
  user: null,
  error: null,
  successMessage: null,
});

const reducer = (state, { type, payload }) => {
  switch (type) {
    case 'SET_LOADING':
      return { ...state, isLoading: payload };
    case 'SET_ERROR':
      return { ...state, error: payload };
    case 'SET_SUCCESS':
      return { ...state, successMessage: payload };
    default:
      throw new Error();
  }
};

export const useApplicationStore = new StoreBuilder(initialState(), reducer)
  .build();

export const ApplicationStoreContext = React.createContext(initialState());

export const useApplicationStoreContext = () => useContext(ApplicationStoreContext);

Initialize from the app component

import { ApplicationStoreContext, useApplicationStore } from './applicationStore';
import { mapState } from 'react-store-builder';

function App() {
  const store = useApplicationStore();
  const { isLoading } = mapState(store);
  return (
    <ApplicationStoreContext.Provider value={store}>
      {/* routes, components, etc */}
    </ApplicationStoreContext.Provider>
  );
}

Using dispatch to update state

Before using dispatch on any component different thant the app component first need to call the application store hook we created

import { useApplicationStoreContext } from './applicationStore';
import { mapState, getDispatch } from 'react-store-builder';

const Home = (props) => {
  const store = useApplicationStoreContext();
  const dispatch = getDispatch(store);
  const { user } = mapState(store);
  useEffect(() => {
    const load = async () => {
      dispatch({ type: 'SET_LOADING', payload: true });
      // retrieve user data, await, set user in the state etc
      dispatch({ type: 'SET_LOADING', payload: false });
    };
    if (user) {
      load();
    }
  }, [user, dispatch]);

Actions

Actions methods are useful when submitting a form or kind of action where interaction has an interaction, these actions can encapsulate dispatch calls but also api calls so you can wait data to be returned and reflect it into the state

Create actions

Can be created by using withActions (as argument is callback function containing the following object { dispatch, state, getters, rootStore, dispatchAction }) during the store setup:

import { todoAPI } from 'app/common/api/todo';
import { StoreBuilder } from 'react-store-builder';

export const initialState = () => ({
  list: [],
});

const reducer = (state, { type, payload }) => {
  switch (type) {
    case 'ADD_TODO': {
      const { todo } = payload;
      return { ...state, list: [ ...state.list, todo ] };
    }
    default:
      throw new Error();
  }
};

export const useTodosStore = new StoreBuilder(initialState(), reducer)
  .withActions(({ dispatch, rootStore }) => ({
    addTodo: async (payload) => {
      let todo;
      try {
        todo = await todoAPI.addTodo(payload);
        await dispatch({ type: 'ADD_TODO', payload: { todo } });
      } catch (e) {
        console.error(e); // or call an error dispatch here
      }
      return todo;
    },
  }))
  .build();

Using actions

Similar to mapState there is also a mapActions:

import { useApplicationStoreContext } from './applicationStore';
import { mapState } from 'react-store-builder';

const Todos = (props) => {
  const store = useApplicationStoreContext();
  const { addTodo } = mapActions(store);
  const { list } = mapState(store);
  return (
    <button onClick={() => addTodo({ title: `New Todo ${list.length}` })}>
  );
};

Composed actions

Also is possible to compose multiple actions for complex scenarios where store behaviour is split across multiple actions, so is possible to call an action, and from that action, call another by using dispatchAction(actionName, payload) method.

...

.withActions(({ dispatch, dispatchAction }) => ({
  search: (keywords) => dispatchAction('getItemsByType', { itemType: 'food' }),
  getItemsByType: async ({ itemType }) => dispatch({ type: 'SET_ITEMS', payload: { items: [ ... ], itemType } }),
}))