2017-11-13 19:37:43 +00:00
|
|
|
import React from 'react'
|
|
|
|
import { connect } from 'react-redux'
|
|
|
|
|
2018-08-05 17:56:04 +00:00
|
|
|
const CharacterInfo = ({ character, error, fetchCharacter, isFetchedOnServer = false }) => (
|
2017-11-13 19:37:43 +00:00
|
|
|
<div className='CharacterInfo'>
|
|
|
|
{
|
|
|
|
error ? <p>We encountered and error.</p>
|
|
|
|
: <article>
|
|
|
|
<h3>Character: {character.name}</h3>
|
|
|
|
<p>birth year: {character.birth_year}</p>
|
|
|
|
<p>gender: {character.gender}</p>
|
|
|
|
<p>skin color: {character.skin_color}</p>
|
|
|
|
<p>eye color: {character.eye_color}</p>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
}
|
|
|
|
<p>
|
2018-08-05 17:56:04 +00:00
|
|
|
(was character fetched on server? -{' '}
|
2017-11-13 19:37:43 +00:00
|
|
|
<b>{isFetchedOnServer.toString()})</b>
|
|
|
|
</p>
|
|
|
|
<style jsx>{`
|
|
|
|
article {
|
|
|
|
background-color: #528CE0;
|
|
|
|
border-radius: 15px;
|
|
|
|
padding: 15px;
|
|
|
|
width: 250px;
|
|
|
|
margin: 15px 0;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
`}</style>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
state => ({
|
|
|
|
character: state.character,
|
|
|
|
error: state.error,
|
|
|
|
isFetchedOnServer: state.isFetchedOnServer
|
2018-03-27 18:11:03 +00:00
|
|
|
})
|
2017-11-13 19:37:43 +00:00
|
|
|
)(CharacterInfo)
|