1
0
Fork 0
This repository has been archived on 2022-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
sudoscientist-js-frontend/src/components/User.js

52 lines
1.4 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { connect } from 'react-redux';
import { fetchUserProfile } from '../actions';
class User extends React.Component {
constructor (props) {
super(props)
this.state = {
isLoading: true
}
}
componentDidMount() {
const { user } = this.props.match.params
this.props.fetchUserProfile(user)
.then(() => this.setState({isLoading: false}))
}
render () {
const {user} = this.props
const {isLoading} = this.state
if (isLoading) {
return <p>Loading</p>
} else {
const currentUser = user.currentUser
return (
<div className="item" key={currentUser.username}>
<div className="content">
<div className="description">
<h1><b>{currentUser.username}</b></h1>
<h3><u>Email: {currentUser.email}</u></h3>
<div>Location: {currentUser.location}</div>
<div>About Me: {currentUser.bio}</div>
</div>
</div>
</div>
);
}
}
}
const mapStateToProps = (state) => {
return {
user: state.user,
};
}
export default connect(
mapStateToProps,
{ fetchUserProfile }
)(User);