Add content loading message to TournamentList (both public and private)

This commit is contained in:
Felix Hamme 2019-06-20 16:11:07 +02:00
parent 5589e8c97e
commit f8180e2b98
1 changed files with 27 additions and 11 deletions

View File

@ -1,33 +1,49 @@
import React from 'react';
import {requestTournamentList} from '../api';
import {Spinner} from 'react-bootstrap';
export default class TournamentList extends React.Component {
constructor(props) {
super(props);
this.state = {
tournaments: []
tournaments: [],
loaded: false
};
}
componentDidMount() {
requestTournamentList(this.props.type, tournaments => {
this.setState({
tournaments: tournaments
tournaments: tournaments,
loaded: true
});
}, () => {
this.setState({loaded: true});
});
}, () => {});
}
render() {
if (!this.state.loaded) {
return (<EmptyList>
<Spinner animation='border' role='status' size='sm'/>
<span className='ml-3'>lade Turnier-Liste</span>
</EmptyList>);
}
if (this.state.tournaments.length === 0) {
return <p className="text-center border-light font-italic text-secondary border-top border-bottom p-1">keine
Turniere vorhanden</p>;
} else {
return <EmptyList>keine Turniere vorhanden</EmptyList>;
}
return this.state.tournaments.map(item => (
// The code should be item.code but the api just supports it this way by now
<TournamentListEntry name={item.name} code={item.id} key={item.id}/>
));
}
}
function EmptyList(props) {
return (<p className="text-center border-light font-italic text-secondary border-top border-bottom p-1">
{props.children}
</p>);
}
function TournamentListEntry(props) {