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

faster-create-redux

v1.0.3

Published

create redux faster

Downloads

3

Readme

faster-create-redux

create reducers and actions quickly with types ('START_LOADING','STOP_LOADING','ERROR') will be create automaticaly

NPM JavaScript Style Guide

Install

npm install --save faster-create-redux
# For typescript
npm install --save faster-create-redux-ts

# OR
yarn add  faster-create-redux
# For typescript
yarn add faster-create-redux-ts

See Full Example (see in folder example)

https://github.com/maamountoj/faster/tree/main/example

Create actions with dispatchActions and dispatchActionsWithApi

import { dispatchActionsWithApi } from 'faster-create-redux'

const API_POSTS_URL = 'https://jsonplaceholder.typicode.com/posts'
const API_POSTS_URL_BY_USER_ID =
  'https://jsonplaceholder.typicode.com/posts?userId=[userId]' //replace userId with object params
const API_POSTS_UPDATE_URL = 'https://jsonplaceholder.typicode.com/posts/[id]'
export const { getPostsAction,getPostsByUserIdAction, addPostAction,updatePostAction } = dispatchActionsWithApi([
  {
    name: 'getPosts',
    url: API_POSTS_URL,
    method: 'GET',

    //** if you must to add config axios *//
    config: {
      headers: {
        'Content-type': 'application/json'
        //Authorization: 'Your Token' // if you have token
      }
    }
  },
  {
    name: 'getPostsByUserId',
    url: API_POSTS_URL,
    method: 'GET',
  },
  {
    name: 'addPost',
    url: API_POSTS_URL,
    method: 'POST',
    //**** if you must to modify payload after call api ***//
    setPayload: ({ data, res }) => {
      // data : data come from component ==> {title:'React', body:'Awesome Framewok',userId: 1}
      // res : response from api axios

      return res.data // value of action.payload
    }
    //** End Modify ***//
  }
])

const Posts = ()=>{
  ............
  useEffect(() => {
    dispatch(getPostsAction())
  }, [dispatch])
  const getPostByUser = () => {
   dispatch(getPostByUserIdAction({ params: { id } })) // replace id in variable API_POSTS_URL_BY_USER_ID
  }
  const addPost = () => {
    dispatch(
      addPostAction({
        title:'React',
        body:'Awesome Framewok',
        userId: 1
      })
    )
  }
  const updatePost = () => {
    dispatch(
      updatePostAction({
        body: { title, body },// body api
        params: { id: post?.id }// replace id in variable API_POSTS_URL_BY_USER_ID
      })
    )
  }
  return ........
}

dispatchActionsWithApi

dispatchActionsWithApi is function to create actions with call api.

| Options | Description | | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | | api | (option) The instance of axios with a custom config | | name | (required) The name (camelCase) of the function action (Required to be the same name of stateKey from dispatchActionsWithApi or dispatchActions) | | url | (required) The url of api | | method | (required) The method to fetch api | | config | (option) The config options for making requests | | setPayload | (option) The callback to modify payload and return with new value. arg(data:data come from component and res come from api) |

dispatchActions

dispatchActions is function to create simple actions.

| Options | Description | | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | | name | (required) The name (camelCase) of the function action (Required to be the same name of stateKey from dispatchActionsWithApi or dispatchActions) | | setPayload | (option) The callback to modify payload and return with new value |

Create reducers with actionsCondition

actionsCondition

actionsCondition is function to create simple reducer.

| Options | Description | | ---------- | ----------------------------------------------------------------------------------------------------------------------- | | name | (required) The name (camelCase) of the function action (Required to be the same name of stateKey from actionsCondition) | | setPayload | (option) The callback to modify payload and return with new value |

License

MIT © maamountoj