123 lines
4.1 KiB
JavaScript
123 lines
4.1 KiB
JavaScript
import Head from 'next/head';
|
|
import React from 'react';
|
|
import {connect} from 'react-redux';
|
|
import Navbar from 'react-bootstrap/Navbar';
|
|
|
|
|
|
import {ErrorPageComponent} from '../js/components/ErrorComponents';
|
|
import {Footer} from '../js/components/Footer';
|
|
import {TurniereNavigation} from '../js/components/Navigation';
|
|
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
|
|
|
import '../static/css/everypage.css';
|
|
import '../static/css/tournament.css';
|
|
import {PlayoffStages} from '../js/components/PlayoffStages';
|
|
import GroupStage from '../js/components/GroupStage';
|
|
import {TournamentBigImage} from '../js/components/TournamentBigImage';
|
|
import {EditButton, TournamentStatusBar, TournamentStatusBarButton} from '../js/components/TournamentStatusBar';
|
|
import {LoadingPage} from '../js/components/LoadingPage';
|
|
import {getTournament} from '../js/redux/tournamentApi';
|
|
|
|
class PrivateTournamentPage extends React.Component {
|
|
render() {
|
|
const {ownerUsername, playoffStages, groupStage} = this.props.tournament;
|
|
const {isSignedIn, username} = this.props;
|
|
const isOwner = username === ownerUsername;
|
|
|
|
return (<div className='pb-5'>
|
|
<TournamentBigImage {...this.props.tournament}/>
|
|
<StatusBar tournament={this.props.tournament} isOwner={isOwner} isSignedIn={isSignedIn}/>
|
|
<div className='stages'>
|
|
{groupStage != null &&
|
|
<div><GroupStage groups={groupStage.groups} isSignedIn={isSignedIn} isOwner={isOwner}
|
|
showMatches={playoffStages !== null}/></div>}
|
|
<PlayoffStages playoffStages={playoffStages} isSignedIn={isSignedIn}
|
|
isOwner={isOwner}/>
|
|
</div>
|
|
</div>);
|
|
}
|
|
}
|
|
|
|
function StatusBar(props) {
|
|
return (<TournamentStatusBar>
|
|
<Navbar.Brand>
|
|
{props.tournament.name}
|
|
<EditButton tournamentId={props.tournament.id} isOwner={props.isOwner} isSignedIn={props.isSignedIn}/>
|
|
<StatisticsButton tournamentId={props.tournament.id}/>
|
|
</Navbar.Brand>
|
|
</TournamentStatusBar>);
|
|
}
|
|
|
|
function StatisticsButton(props) {
|
|
return (<TournamentStatusBarButton href={'/t/' + props.tournamentId + '/statistics'}>
|
|
Statistiken
|
|
</TournamentStatusBarButton>);
|
|
}
|
|
|
|
|
|
function mapStateToTournamentPageProperties(state) {
|
|
const {isSignedIn, username} = state.userinfo;
|
|
return {isSignedIn, username};
|
|
}
|
|
|
|
const TournamentPage = connect(mapStateToTournamentPageProperties)(PrivateTournamentPage);
|
|
|
|
class Main extends React.Component {
|
|
static async getInitialProps({query}) {
|
|
return {query};
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
tournament: null,
|
|
loaded: false
|
|
};
|
|
this.onTournamentRequestSuccess = this.onTournamentRequestSuccess.bind(this);
|
|
this.onTournamentRequestError = this.onTournamentRequestError.bind(this);
|
|
}
|
|
|
|
componentDidMount() {
|
|
getTournament(this.props.query.code, this.onTournamentRequestSuccess, this.onTournamentRequestError);
|
|
}
|
|
|
|
onTournamentRequestSuccess(requestStatus, tournament) {
|
|
this.setState({status: requestStatus, tournament: tournament, loaded: true});
|
|
}
|
|
|
|
onTournamentRequestError(error) {
|
|
if (error.response) {
|
|
this.setState({status: error.response.status, loaded: true});
|
|
} else {
|
|
this.setState({status: -1, loaded: true});
|
|
}
|
|
}
|
|
|
|
|
|
render() {
|
|
const tournamentName = this.state.tournament === null ? 'Turnier' : this.state.tournament.name;
|
|
|
|
const {status, tournament} = this.state;
|
|
|
|
if (status === 200) {
|
|
return (<div>
|
|
<Head>
|
|
<title>{tournamentName}: turnie.re</title>
|
|
</Head>
|
|
<TurniereNavigation/>
|
|
<TournamentPage tournament={tournament}/>
|
|
<Footer/>
|
|
</div>);
|
|
} else {
|
|
if (!this.state.loaded) {
|
|
return <LoadingPage title='turnie.re' text='Turnier wird geladen...'/>;
|
|
}
|
|
return <ErrorPageComponent code={status}/>;
|
|
}
|
|
}
|
|
}
|
|
|
|
export default Main;
|