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 getScoreTable = tournament => {
34 if (!tournament || !tournament.rounds || !tournament.rounds.length) return [];
35 const runners = getRunners(tournament);
36 if (!runners.length) return [];
38 runners.forEach(participant => {
39 running[participant.id] = 0;
41 const data = [...tournament.rounds, {}].reverse().map(round => {
42 const entry = { number: round.number ? `#${round.number}` : '' };
43 runners.forEach(participant => {
44 const result = Participant.findResult(participant, round);
45 if (result && result.score) {
46 running[participant.id] += result.score;
48 entry[Participant.getUserName(participant)] = running[participant.id];
55 export const getTournamentAdmins = tournament => {
56 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
57 return tournament.participants
58 .filter(Participant.isTournamentAdmin)
59 .sort(Participant.compareUsername);
62 export const getTournamentCrew = tournament => {
63 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
64 return tournament.participants
65 .filter(Participant.isTournamentCrew)
66 .sort(Participant.compareUsername);
69 export const getTournamentMonitors = tournament => {
70 if (!tournament || !tournament.participants || !tournament.participants.length) return [];
71 return tournament.participants
72 .filter(Participant.isTournamentMonitor)
73 .sort(Participant.compareUsername);
76 export const hasRunners = tournament => {
77 return getRunners(tournament).length > 0;
80 export const hasTournamentAdmins = tournament => {
81 return getTournamentAdmins(tournament).length > 0;
84 export const hasTournamentCrew = tournament => {
85 return getTournamentCrew(tournament).length > 0;
88 export const hasTournamentMonitors = tournament => {
89 return getTournamentMonitors(tournament).length > 0;
92 export const patchApplication = (tournament, application) => {
93 if (!tournament) return tournament;
94 if (!tournament.applications || !tournament.applications.length) {
97 applications: [application],
100 if (!tournament.applications.find(a => a.user_id == application.user_id)) {
103 applications: [...tournament.applications, application],
108 applications: tournament.applications.map(
109 a => a.user_id === application.user_id ? application : a,
114 export const patchParticipant = (tournament, participant) => {
115 if (!tournament) return tournament;
116 if (!tournament.participants || !tournament.participants.length) {
119 participants: [participant],
122 if (!tournament.participants.find(p => p.id === participant.id)) {
125 participants: [...tournament.participants, participant],
130 participants: tournament.participants.map(
131 p => p.id === participant.id ? participant : p,
136 export const patchResult = (tournament, result) => {
137 if (!tournament || !tournament.rounds) return tournament;
140 rounds: tournament.rounds.map(round =>
141 round.id === result.round_id
142 ? Round.patchResult(round, result)
148 export const patchRound = (tournament, round) => {
149 if (!tournament) return tournament;
152 rounds: tournament.rounds.map(r => r.id === round.id ? { ...r, ...round } : r),
156 export const patchUser = (tournament, user) => {
157 if (!tournament || !tournament.participants || !user) return tournament;
158 if (!tournament.participants.find(p => p.user_id == user.id)) return tournament;
161 participants: tournament.participants.map(p => Participant.patchUser(p, user)),
165 export const removeApplication = (tournament, id) => {
166 if (!tournament || !tournament.applications || !tournament.applications.find(a => a.id == id)) {
171 applications: tournament.applications.filter(a => a.id != id),
175 export const sortParticipants = tournament => {
176 if (!tournament || !tournament.participants || !tournament.participants.length) {
181 participants: tournament.participants.sort(Participant.compareUsername),
191 getTournamentMonitors,
195 hasTournamentMonitors,