index.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import React, { Component } from 'react'
  2. import { connect } from 'react-redux';
  3. import { bindActionCreators } from 'redux';
  4. import { signInRequest } from './../../actions/auth/signIn'
  5. import { signUpRequest } from './../../actions/auth/signUp'
  6. import { auth } from '../../firebase_config'
  7. class AuthPage extends Component {
  8. constructor(props) {
  9. super(props);
  10. }
  11. render() {
  12. const { isFetching, error, user } = this.props.auth;
  13. const { signInRequest } = this.props;
  14. console.log("<AuthPage> - props", this.props);
  15. return (
  16. <div className="auth-page">
  17. <button onClick={signInRequest} disabled={user ? true : false}>Auth</button>
  18. <h2>{isFetching ? 'wait a moment...' : error ? 'Looks like we\'ve in trouble...' : user && user.displayName}</h2>
  19. </div>
  20. )
  21. }
  22. }
  23. const
  24. mapStateToProps = state => ({
  25. auth: {
  26. ...state.signIn
  27. }
  28. }),
  29. mapDispatchToProps = dispatch => bindActionCreators({
  30. signInRequest,
  31. signUpRequest
  32. }, dispatch);
  33. export default connect(mapStateToProps, mapDispatchToProps)(AuthPage)