]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
highlight "todo" rounds
[alttp.git] / resources / js / components / rounds / Item.js
index d352cd126263fb49044157ff31b093a1c658609e..f85492de8b1e6c9de0c838335e8a49bb9db22dc9 100644 (file)
@@ -1,31 +1,63 @@
 import PropTypes from 'prop-types';
 import React from 'react';
-import { Button } from 'react-bootstrap';
 import { withTranslation } from 'react-i18next';
 
+import LockButton from './LockButton';
 import SeedButton from './SeedButton';
+import SeedCode from './SeedCode';
 import List from '../results/List';
 import ReportButton from '../results/ReportButton';
-import { maySetSeed, isParticipant } from '../../helpers/permissions';
+import { isParticipant, 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">{i18n.t('rounds.date', { date: new Date(round.created_at) })}</p>
+               <p className="date">
+                       {round.number ? `#${round.number} ` : '#?'}
+                       {i18n.t('rounds.date', { date: new Date(round.created_at) })}
+               </p>
                <p className="seed">
+                       {round.code ?
+                               <>
+                                       <SeedCode code={round.code} />
+                                       {' '}
+                               </>
+                       : null}
                        <SeedButton
                                round={round}
                                tournament={tournament}
                        />
                </p>
-               {isParticipant(user, tournament) ?
+               {!round.locked && isParticipant(user, tournament) ?
                        <p className="report">
                                <ReportButton
                                        participant={findParticipant(tournament, user)}
@@ -34,13 +66,17 @@ const Item = ({
                                />
                        </p>
                : null}
+               <LockButton round={round} tournament={tournament} />
        </div>
        <List round={round} tournament={tournament} />
 </li>;
 
 Item.propTypes = {
        round: PropTypes.shape({
+               code: PropTypes.arrayOf(PropTypes.string),
                created_at: PropTypes.string,
+               locked: PropTypes.bool,
+               number: PropTypes.number,
                seed: PropTypes.string,
        }),
        tournament: PropTypes.shape({