1 import Application from './Application';
2 import Participant from './Participant';
3 import Round from './Round';
5 export const compareScore = (a, b) => {
6 const a_score = a && a.score ? a.score : 0;
7 const b_score = b && b.score ? b.score : 0;
8 if (a_score < b_score) return -1;
9 if (b_score < a_score) return 1;
10 return Participant.compareUsername(a.participant, b.participant) * -1;
13 export const findParticipant = (tournament, user) => {
14 if (!tournament || !tournament.participants || !tournament.participants.length) return null;
15 if (!user || !user.id) return null;
16 return tournament.participants.find(p => p.user_id == user.id);
19 export const getPendingApplications = tournament => {
20 if (!tournament || !tournament.applications || !tournament.applications.length) return [];
21 return tournament.applications
22 .filter(Application.isPending)
23 .sort(Application.compareUsername);
26 export const getRunners = tournament => {
27 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
28 return tournament.participants
29 .filter(Participant.isRunner)
30 .sort(Participant.compareUsername);
33 export const hasScoreboard = tournament => !!(tournament && tournament.type === 'signup-async');
35 export const hasSignup = tournament => !!(tournament && tournament.type === 'signup-async');
37 export const getScoreTable = tournament => {
38 if (!tournament || !tournament.rounds || !tournament.rounds.length) return [];
39 const runners = getRunners(tournament);
40 if (!runners.length) return [];
42 runners.forEach(participant => {
43 running[participant.id] = 0;
45 const data = [...tournament.rounds, {}].reverse().map(round => {
46 const entry = { number: round.number ? `#${round.number}` : '' };
47 runners.forEach(participant => {
48 const result = Participant.findResult(participant, round);
49 if (result && result.score) {
50 running[participant.id] += result.score;
52 entry[Participant.getUserName(participant)] = running[participant.id];
59 export const getTournamentAdmins = tournament => {
60 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
61 return tournament.participants
62 .filter(Participant.isTournamentAdmin)
63 .sort(Participant.compareUsername);
66 export const getTournamentCrew = tournament => {
67 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
68 return tournament.participants
69 .filter(Participant.isTournamentCrew)
70 .sort(Participant.compareUsername);
73 export const getTournamentMonitors = tournament => {
74 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
75 return tournament.participants
76 .filter(Participant.isTournamentMonitor)
77 .sort(Participant.compareUsername);
80 export const hasRunners = tournament => {
81 return getRunners(tournament).length > 0;
84 export const hasTournamentAdmins = tournament => {
85 return getTournamentAdmins(tournament).length > 0;
88 export const hasTournamentCrew = tournament => {
89 return getTournamentCrew(tournament).length > 0;
92 export const hasTournamentMonitors = tournament => {
93 return getTournamentMonitors(tournament).length > 0;
96 export const patchApplication = (tournament, application) => {
97 if (!tournament) return tournament;
98 if (!tournament.applications || !tournament.applications.length) {
101 applications: [application],
104 if (!tournament.applications.find(a => a.user_id == application.user_id)) {
107 applications: [...tournament.applications, application],
112 applications: tournament.applications.map(
113 a => a.user_id === application.user_id ? application : a,
118 export const patchParticipant = (tournament, participant) => {
119 if (!tournament) return tournament;
120 if (!tournament.participants || !tournament.participants.length) {
123 participants: [participant],
126 if (!tournament.participants.find(p => p.id === participant.id)) {
129 participants: [...tournament.participants, participant],
134 participants: tournament.participants.map(
135 p => p.id === participant.id ? participant : p,
140 export const patchResult = (tournament, result) => {
141 if (!tournament || !tournament.rounds) return tournament;
144 rounds: tournament.rounds.map(round =>
145 round.id === result.round_id
146 ? Round.patchResult(round, result)
152 export const patchRound = (tournament, round) => {
153 if (!tournament) return tournament;
156 rounds: tournament.rounds.map(r => r.id === round.id ? { ...r, ...round } : r),
160 export const patchUser = (tournament, user) => {
161 if (!tournament || !tournament.participants || !user) return tournament;
162 if (!tournament.participants.find(p => p.user_id == user.id)) return tournament;
165 participants: tournament.participants.map(p => Participant.patchUser(p, user)),
169 export const removeApplication = (tournament, id) => {
170 if (!tournament || !tournament.applications || !tournament.applications.find(a => a.id == id)) {
175 applications: tournament.applications.filter(a => a.id != id),
179 export const sortParticipants = tournament => {
180 if (!tournament || !tournament.participants || !tournament.participants.length) {
185 participants: tournament.participants.sort(Participant.compareUsername),
195 getTournamentMonitors,
201 hasTournamentMonitors,