Merge pull request #38 from turniere/ticket/TURNIERE-239

Ticket/turniere 239
This commit is contained in:
betanummeric 2019-06-14 21:32:36 +02:00 committed by GitHub
commit 0fe6e9e196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 114 additions and 32 deletions

View File

@ -0,0 +1,48 @@
import React from 'react';
import PropTypes from 'prop-types';
import {Button, InputGroup, InputGroupAddon, Input} from 'reactstrap';
import '../../static/css/numericinput.css';
export default class NumericInput extends React.Component {
render() {
return (<InputGroup>
<InputGroupAddon addonType="prepend">
<Button onClick={this.props.decrementCallback} className="btn-width" color={this.props.decrementColor}
outline={this.props.decrementOutline}>{this.props.decrementText}</Button>
</InputGroupAddon>
<Input className='font-weight-bold' value={this.props.value}
disabled type='number'/>
<InputGroupAddon addonType="append">
<Button onClick={this.props.incrementCallback} className="btn-width" color={this.props.incrementColor}
outline={this.props.incrementOutline}>{this.props.incrementText}</Button>
</InputGroupAddon>
</InputGroup>);
}
}
NumericInput.propTypes = {
decrementText: PropTypes.string.isRequired,
decrementCallback: PropTypes.func.isRequired,
decrementColor: PropTypes.oneOf([
'primary', 'secondary', 'success', 'info', 'warning', 'danger'
]),
decrementOutline: PropTypes.bool,
incrementText: PropTypes.string.isRequired,
incrementCallback: PropTypes.func.isRequired,
incrementColor: PropTypes.oneOf([
'primary', 'secondary', 'success', 'info', 'warning', 'danger'
]),
incrementOutline: PropTypes.bool,
value: PropTypes.number.isRequired
};
NumericInput.defaultProps = {
decrementColor: 'primary',
decrementOutline: true,
incrementColor: 'primary',
incrementOutline: true
};

View File

@ -3,9 +3,7 @@ import React from 'react';
import {notify} from 'react-notify-toast'; import {notify} from 'react-notify-toast';
import {connect} from 'react-redux'; import {connect} from 'react-redux';
import posed from 'react-pose'; import posed from 'react-pose';
import {Button, Card, CardBody, Col, Container, CustomInput, Form, FormGroup, Input, Label} from 'reactstrap';
import {Button, Card, CardBody, Container, CustomInput, Form, FormGroup, Input, Label} from 'reactstrap';
import {TurniereNavigation} from '../js/components/Navigation'; import {TurniereNavigation} from '../js/components/Navigation';
import {Footer} from '../js/components/Footer'; import {Footer} from '../js/components/Footer';
import EditableStringList from '../js/components/EditableStringList'; import EditableStringList from '../js/components/EditableStringList';
@ -13,6 +11,7 @@ import {createTournament} from '../js/api';
import '../static/css/everypage.css'; import '../static/css/everypage.css';
import RequireLogin from '../js/components/RequireLogin'; import RequireLogin from '../js/components/RequireLogin';
import NumericInput from '../js/components/NumericInput';
class CreatePage extends React.Component { class CreatePage extends React.Component {
render() { render() {
@ -74,8 +73,11 @@ class CreateTournamentForm extends React.Component {
this.handleNameInput = this.handleNameInput.bind(this); this.handleNameInput = this.handleNameInput.bind(this);
this.handleDescriptionInput = this.handleDescriptionInput.bind(this); this.handleDescriptionInput = this.handleDescriptionInput.bind(this);
this.handlePublicInput = this.handlePublicInput.bind(this); this.handlePublicInput = this.handlePublicInput.bind(this);
this.handleGroupSizeInput = this.handleGroupSizeInput.bind(this); this.increaseGroupAdvance = this.increaseGroupAdvance.bind(this);
this.handleGroupAdvanceInput = this.handleGroupAdvanceInput.bind(this); this.decreaseGroupAdvance = this.decreaseGroupAdvance.bind(this);
this.increaseGroupSize = this.increaseGroupSize.bind(this);
this.decreaseGroupSize = this.decreaseGroupSize.bind(this);
this.generateTournamentCreationObject = this.generateTournamentCreationObject.bind(this);
this.create = this.create.bind(this); this.create = this.create.bind(this);
} }
@ -106,14 +108,20 @@ class CreateTournamentForm extends React.Component {
className="groupphasefader"> className="groupphasefader">
<FormGroup> <FormGroup>
<Label for="teams-per-group">Anzahl Teams pro Gruppe</Label> <Label for="teams-per-group">Anzahl Teams pro Gruppe</Label>
<Input type="number" name="teams-per-group" min="3" <Col xs="3" className="pl-0">
value={this.state.groupSize} onChange={this.handleGroupSizeInput}/> <NumericInput value={this.state.groupSize}
incrementText="+1" incrementCallback={this.increaseGroupSize}
decrementText="-1" decrementCallback={this.decreaseGroupSize}/>
</Col>
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<Label for="teams-group-to-playoff">Wie viele Teams sollen nach der Gruppenphase <Label for="teams-group-to-playoff">Wie viele Teams sollen nach der Gruppenphase
weiterkommen?</Label> weiterkommen?</Label>
<Input type="number" name="teams-group-to-playoff" min="1" max={this.state.groupSize - 1} <Col xs="3" className="pl-0">
value={this.state.groupAdvance} onChange={this.handleGroupAdvanceInput}/> <NumericInput value={this.state.groupAdvance}
incrementText="&#215;2" incrementCallback={this.increaseGroupAdvance}
decrementText="&#247;2" decrementCallback={this.decreaseGroupAdvance}/>
</Col>
</FormGroup> </FormGroup>
</GroupphaseFader> </GroupphaseFader>
</Form> </Form>
@ -142,31 +150,43 @@ class CreateTournamentForm extends React.Component {
this.setState({groups: list}); this.setState({groups: list});
} }
handleGroupSizeInput(input) { increaseGroupAdvance() {
const newSize = input.target.value; const newGroupAdvance = this.state.groupAdvance * 2;
if (newSize === undefined || newSize < 2) { if (newGroupAdvance <= this.state.groupSize) {
return;
}
if (newSize <= this.state.groupAdvance) {
this.setState({ this.setState({
groupSize: newSize, groupAdvance: newSize - 1 groupAdvance: newGroupAdvance
}); });
} else {
this.setState({groupSize: newSize});
} }
} }
handleGroupAdvanceInput(input) { decreaseGroupAdvance() {
const newAdvance = input.target.value; const newGroupAdvance = Math.floor(this.state.groupAdvance / 2);
if (newAdvance === undefined || newAdvance <= 0 || if (newGroupAdvance >= 1) {
newAdvance >= this.state.groupSize) { this.setState({
return; groupAdvance: newGroupAdvance
});
} }
}
this.setState({groupAdvance: newAdvance}); increaseGroupSize() {
this.setState({groupSize: this.state.groupSize+1});
}
decreaseGroupSize() {
const newGroupSize = this.state.groupSize - 1;
if (newGroupSize >= 3) {
if (newGroupSize >= this.state.groupAdvance) {
this.setState({groupSize: newGroupSize});
} else {
this.setState({
groupSize: newGroupSize,
groupAdvance: Math.floor(this.state.groupAdvance / 2)
});
}
}
} }
handleGroupPhaseEnabledInput(input) { handleGroupPhaseEnabledInput(input) {
@ -186,17 +206,27 @@ class CreateTournamentForm extends React.Component {
} }
create() { create() {
createTournament({ createTournament(this.generateTournamentCreationObject(), () => {
notify.show('Das Turnier wurde erfolgreich erstellt.', 'success', 5000);
}, () => {
notify.show('Das Turnier konnte nicht erstellt werden.', 'warning', 5000);
});
}
generateTournamentCreationObject() {
const tournament = {
'name': this.state.name, 'name': this.state.name,
'description': this.state.description, 'description': this.state.description,
'public': this.state.public, 'public': this.state.public,
'group_stage': this.state.groupPhaseEnabled, 'group_stage': this.state.groupPhaseEnabled,
'teams': createTeamArray(this.state.groupPhaseEnabled, this.state.groups, this.state.teams) 'teams': createTeamArray(this.state.groupPhaseEnabled, this.state.groups, this.state.teams)
}, () => { };
notify.show('Das Turnier wurde erfolgreich erstellt.', 'success', 5000);
}, () => { if (this.state.groupPhaseEnabled) {
notify.show('Das Turnier konnte nicht erstellt werden.', 'warning', 5000); tournament.playoff_teams_amount = this.state.groupAdvance;
}); }
return tournament;
} }
} }

View File

@ -0,0 +1,4 @@
.btn-width {
width: 48px;
}