]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
force break after seed code
[alttp.git] / resources / js / components / rounds / Item.js
index 33394f4140f5873bb2c00d4a4100501796e0e3e0..8a4694603eb010ae076f5201f2fa7f315aef3f6c 100644 (file)
@@ -5,19 +5,42 @@ import { withTranslation } from 'react-i18next';
 import LockButton from './LockButton';
 import SeedButton from './SeedButton';
 import SeedCode from './SeedCode';
+import SeedRolledBy from './SeedRolledBy';
 import List from '../results/List';
 import ReportButton from '../results/ReportButton';
-import { isParticipant } from '../../helpers/permissions';
+import { isRunner } from '../../helpers/permissions';
+import { isComplete } from '../../helpers/Round';
 import { findParticipant } from '../../helpers/Tournament';
+import { hasFinishedRound } from '../../helpers/User';
 import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
+const getClassName = (round, tournament, user) => {
+       const classNames = ['round', 'd-flex'];
+       if (round.locked) {
+               classNames.push('is-locked');
+       } else {
+               classNames.push('is-unlocked');
+       }
+       if (isComplete(tournament, round)) {
+               classNames.push('is-complete');
+       } else {
+               classNames.push('is-incomplete');
+       }
+       if (hasFinishedRound(user, round)) {
+               classNames.push('has-finished');
+       } else if (isRunner(user, tournament)) {
+               classNames.push('has-not-finished');
+       }
+       return classNames.join(' ');
+};
+
 const Item = ({
        round,
        tournament,
        user,
 }) =>
-<li className="round d-flex">
+<li className={getClassName(round, tournament, user)}>
        <div className="info">
                <p className="date">
                        {round.number ? `#${round.number} ` : '#?'}
@@ -27,15 +50,17 @@ const Item = ({
                        {round.code ?
                                <>
                                        <SeedCode code={round.code} />
-                                       {' '}
+                                       <br />
                                </>
                        : null}
                        <SeedButton
                                round={round}
                                tournament={tournament}
                        />
+                       {' '}
+                       <SeedRolledBy round={round} />
                </p>
-               {!round.locked && isParticipant(user, tournament) ?
+               {isRunner(user, tournament) ?
                        <p className="report">
                                <ReportButton
                                        participant={findParticipant(tournament, user)}