1
0
Fork 0
cmdui/frontend/src/blocks/user.js

53 lines
1.3 KiB
JavaScript

import React, { Component } from 'react'
import { api, httpGET } from '../http.js'
import './user.css'
export default class User extends Component {
constructor(props) {
super(props)
this.state = {user: undefined}
}
componentDidMount() {
if (!this.props.id) {
return
}
httpGET(api("/users/"+ this.props.id),
(status, body) => {
this.setState({user: JSON.parse(body)})
},
(error) => {
console.log("Failed to load user details:", error)
}
)
}
render() {
let details = this.state.user
if (!this.props.id || details === undefined) {
return null
}
if (details === null) {
return this.renderUnknownUser()
}
return (
<div className="user-details">
<img src={details.picture} alt={details.name +" picture"} />
<div className="name">{details.name}</div>
</div>
)
}
renderUnknownUser() {
let shortID = this.props.id.substring(0, 8)
return (
<div className="user-details">
User
<div className="user-id">{shortID}</div>
</div>
)
}
}