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

trim-redux

v2.3.0

Published

A tool for work simplify with the Redux in Reactjs

Downloads

37

Readme

trim-redux

Persian Documentary of Trim-Redux

trim-redux is a tool for work simplify with the Redux in Reactjs. trim-redux removed reducer, combineReducer and action in redux usage process
and let you work with redux like react component state!

use setStore() method for set new value of redux store state [ work with it like React setState() method ], and use getStore() for get value of redux store state.

install

npm i trim-redux

1) methods

1-1) createStore( stateObject , [options] )

create a redux store like createStore() method in Redux but the difference is that, in redux createStore you must pass combineReducer result and in trim-redux you pass an normal json object for set initial definition. (Like the react state initial definition).

params

@firstParam state : json object (REQUIRE). an object for first define state. default state value is the value of property.

exp: { user: null, payCount: 0 }

@secondParam [options] : the redux createStore() method options

@returns: redux store object (equal return of Redux createStore() method)

import {createStore} from 'trim-redux'

// . . . . in store.js file . . .

const state = {
    age : 0 // first value (default value)
}

export const store = createStore(state); 

1-2) setStore( [stateName] , [stateData] )

set value of state in redux store WITH two way binding

Have 2 way usage
  1. pass an object and work with it like React setState(). exp: setStore({ age: 20 })
  2. set state value directly with pass name of state as string in first parameter and value of it in second parameter. exp: setStore('age',20)
params

@firstParam [stateName] : string. name of state in store.

@secondParam [stateData] : any type. value of defined state in first parameter

example
import {setStore} from 'trim-redux'

// . . .  in react component  . . .  

componentDidMount(){
    setStore({
        age: 20
    })
}

1-3) getStore( [stateName])

get value of state in redux store WITH OUT two way binding

Have 2 way usag
  1. get all state (store object) and access to state with chain. like: getStore().user.name
  2. get state directly by pass state name as string. like: getStore('user').name

NOTICE: if you need to get value of state with out two way binding use getStore() else use connect()() method of react-redux with mapStateToProps.

params

@firstParam [stateName] : string, name of state in state. like: 'user' cls

@returns: state object || state vlaue. when pass param get the vlaue of passed state else get state object (contain all state value).

import {getStore} from 'trim-redux'

// . . .  in react component  . . .  
render(){
    const age = getStore().age;
    
    console.log(age);
}

1-4) reducerBuilder(stateObject)

convert state object to reducer functuion and at end combine reducerswith combineReducers method.

import {createStore} from 'redux';
import {reducerBuilder} from 'trim-redux';

// . . . . in store.js file . . .

const state = {
    age : 0 // first value (default value)
}

export const store = createStore(reducerBuilder(state)); 

2) FAQ

2-1) where is reducer and action?

we change structrue and remove this meanings of redux for convenience of working with Redux in react. when you pass an state object to createStore() method we build reducer with reducerBuilder and combine with combineReducer() method and build store with redux combineReducer().

so you do not need write reducer and this mean you do not need write action and also dont need write mapDispatchToProps!

2-2) how to write common operation (function, action or method) for state?

this is simple!

when an state change (setStore) in one place but use in multi place you do not need write action. you should write action and setStore locally like work with react setState().

when an state change in multi place and use in one place (or multi place) you need write independent action. for do this, you can create an action directory in /src directory and create an action.js ( or indepented for each actions ) and write the action and import in components. (if the state change place is on a one component can write the action as a component method).

example:

in '~/src/action/action.js'

import {setStore} from 'trim-redux';

export const setAge = (age) =>{
    
    if (age < 18)
        setStore("age", age);
    else
        alert("inserted age is not vaild!");
}

in React component like '~/src/app/app.js'

import React, { Component } from 'react';
import {setAge} from '../action/action.js';


export default class App extends Component {
    
  componentDidMount() {
      setAge(this.props.age)
  }
    
    render() { return ".. some value ..";  }
}

License

MIT