-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
695 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
{ | ||
"presets": [ | ||
"next/babel", | ||
"stage-2" | ||
"presets": ["next/babel", "stage-2"], | ||
"plugins": [ | ||
[ | ||
"styled-components", | ||
{ | ||
"ssr": true | ||
} | ||
] | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
import React, { Component } from "react" | ||
import dataJson from "../../data/en.1.json" | ||
|
||
const newTeam = { | ||
played: 0, | ||
won: 0, | ||
drawn: 0, | ||
lost: 0, | ||
goalFor: 0, | ||
goalAgainst: 0, | ||
point: 0 | ||
} | ||
|
||
class LeagueTable extends Component { | ||
constructor() { | ||
super() | ||
this.state = { | ||
round: 38 | ||
} | ||
} | ||
|
||
onSliderChange = e => { | ||
this.setState({ round: e.target.value }) | ||
} | ||
|
||
renderRow = json => { | ||
let teams = {} | ||
for (let i = 0; i < this.state.round; i++) { | ||
const round = json[i] | ||
round.forEach(function(match) { | ||
const team1 = match.substring(0, 3) | ||
const score1 = match.substring(3, 4) * 1 // performant string to number conversion | ||
const score2 = match.substring(5, 6) * 1 | ||
const team2 = match.substring(6, 9) | ||
if (!teams[team1]) { | ||
teams[team1] = Object.assign({}, newTeam) | ||
} | ||
if (!teams[team2]) { | ||
teams[team2] = Object.assign({}, newTeam) | ||
} | ||
teams[team1].played += 1 | ||
teams[team2].played += 1 | ||
teams[team1].goalFor += score1 | ||
teams[team2].goalFor += score2 | ||
teams[team1].goalAgainst += score2 | ||
teams[team2].goalAgainst += score1 | ||
if (score1 - score2 > 0) { | ||
teams[team1].won += 1 | ||
teams[team1].lost += 1 | ||
teams[team1].point += 3 | ||
} else if (score1 - score2 === 0) { | ||
teams[team1].drawn += 1 | ||
teams[team2].drawn += 1 | ||
teams[team1].point += 1 | ||
teams[team2].point += 1 | ||
} else { | ||
teams[team1].lost += 1 | ||
teams[team2].won += 1 | ||
teams[team2].point += 3 | ||
} | ||
}, this) | ||
} | ||
const sortedTeams = Object.entries(teams).sort((teamA, teamB) => { | ||
if (teamA[1].point > teamB[1].point) { | ||
return -1 | ||
} else if (teamA[1].point < teamB[1].point) { | ||
return 1 | ||
} else { | ||
return -1 | ||
} | ||
}) | ||
return sortedTeams.map((team, index) => | ||
<LeagueTableRow | ||
key={index} | ||
position={index + 1} | ||
name={team[0]} | ||
{...team[1]} | ||
/> | ||
) | ||
} | ||
|
||
render() { | ||
return ( | ||
<div> | ||
<input | ||
name="round-slider" | ||
type="range" | ||
min="1" | ||
max="38" | ||
step="1" | ||
value={this.state.round} | ||
onChange={this.onSliderChange} | ||
/> | ||
<table> | ||
<thead> | ||
<tr> | ||
<th>Position</th> | ||
<th>Team</th> | ||
<th>Played</th> | ||
<th>Won</th> | ||
<th>Drawn</th> | ||
<th>Lost</th> | ||
<th>GF</th> | ||
<th>GA</th> | ||
<th>GD</th> | ||
<th>Point</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{this.renderRow(dataJson)} | ||
</tbody> | ||
</table> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default LeagueTable | ||
|
||
const LeagueTableRow = ({ | ||
position, | ||
name, | ||
played, | ||
won, | ||
drawn, | ||
lost, | ||
goalFor, | ||
goalAgainst, | ||
point | ||
}) => { | ||
return ( | ||
<tr> | ||
<td> | ||
{position} | ||
</td> | ||
<td> | ||
{name} | ||
</td> | ||
<td> | ||
{played} | ||
</td> | ||
<td> | ||
{won} | ||
</td> | ||
<td> | ||
{drawn} | ||
</td> | ||
<td> | ||
{lost} | ||
</td> | ||
<td> | ||
{goalFor} | ||
</td> | ||
<td> | ||
{goalAgainst} | ||
</td> | ||
<td> | ||
{goalFor - goalAgainst} | ||
</td> | ||
<td> | ||
{point} | ||
</td> | ||
</tr> | ||
) | ||
} |
Oops, something went wrong.