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-standalone-component

v0.0.5

Published

simple standalone component boilerplate for react/redux

Downloads

4

Readme

redux-standalone-component

It's a simple example of how we can create a standalone React component in combination with Redux. As far as Redux is used as a single global store in React app, we have to adjust all our components with its actions and reducers to the current app configuration. But what if we want to use the same components in different React apps with different Redux stores?

Here we create some component boilerplate, that can be used in a different apps. The basic idea is to pass the mapStateToProps function as a props to our component from the parent component

demoComponentMapStateToProps(state, props){
  return {
    // data, x, y, ... or any other properties and its format are predefined by the component
    // so that the component can use it like for example
    //     const { data, x, y } = this.props
    //     data.map(d => x(d) + y(d)) 
    data: state.demoComponentData,
    x: d => d.prop1,
    y: d => d.prop2
  }
}
...
<DemoComponent mapStateToProps={this.demoComponentMapStateToProps}/>

And also combine reducers by data key

const reducers = combineReducers({ 
  demoComponentData: demoReducer,
  someOtherData: otherReducer   
})

Inside a standalone demo component we define mapStateToProps function as

function mapStateToProps(state, props) {
  return props.mapStateToProps(state, props)
}

Install

npm install redux-standalone-component

Usage

Simple example of usage

import React from 'react'
import { render } from 'react-dom'
import { createStore, combineReducers } from 'redux'
import { Provider } from 'react-redux'
import App from './containers/App'
import { demoReducer } from 'redux-standalone-component'

const initialState = {
  demoComponentData: [
    { prop1: 1, prop2: 2 },
    { prop1: 3, prop2: 4 },
    { prop1: 5, prop2: 6 },
    { prop1: 7, prop2: 8 }
  ]
}

const reducers = combineReducers({ demoComponentData: demoReducer })

const store = createStore(reducers, initialState)
    
render(
  <Provider store={store}>
    <App />
  </Provider>,
  document.getElementById('root')
)

Class App

import React, { Component } from 'react'
import { connect } from 'react-redux'
import { DemoComponent } from 'redux-standalone-component'

class App extends Component {
  constructor(props){
    super(props)
  }
  demoComponentMapStateToProps(state, props){
    return {
      data: state.demoComponentData,
      x: d => d.prop1,
      y: d => d.prop2
    }
  }
  render(){
    return <DemoComponent mapStateToProps={this.demoComponentMapStateToProps}/>
  }
}

export default connect()(App)

Example

Locally,

  1. Clone the repo
  2. $cd examples
  3. $npm install
  4. $npm start
  5. go to localhost:3000

You should see a simple list of sums: prop1+prop2

License

MIT