Skip to content

Jackong/redux-authentication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

redux-authentication

NPM version build status David deps node version Gittip

authentication component for redux

Install

NPM

Examples

import authentication from 'redux-authentication'
import {connect} from 'react-redux'
import React, { PropTypes } from 'react'
import {goToLogin} from 'your-actions'

@connect(state => ({
  isAuthenticated: state.isAuthenticated
}), {
  goToLogin,//map to props.goToLogin OR props.actions.goToLogin
})
@authentication
class App extends React.Component {
  // will be called until isAuthenticated is updated to true
  render() {
    return (
      <div>
        App
      </div>
    )
  }
}

export default App