]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
round titles
[alttp.git] / resources / js / components / rounds / Item.js
index b227e9334798ffe89dae08775a3098458b47a8b1..92f55a06791098adda7b299ebf241665874ccdff 100644 (file)
@@ -1,47 +1,98 @@
 import PropTypes from 'prop-types';
 import React from 'react';
-import { Button } from 'react-bootstrap';
 import { withTranslation } from 'react-i18next';
 
+import EditButton from './EditButton';
+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 { findParticipant } from '../../helpers/Tournament';
+import { mayEditRound, mayReportResult, isRunner } from '../../helpers/permissions';
+import { isComplete } from '../../helpers/Round';
+import { hasFinishedRound } from '../../helpers/User';
 import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
+const getClassName = (round, tournament, user) => {
+       const classNames = ['round'];
+       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">
-       <div className="info">
-               <p className="date">{i18n.t('rounds.date', { date: new Date(round.created_at) })}</p>
-               {round.seed ?
-                       <p className="seed">
-                               <Button href={round.seed} target="_blank" variant="primary">
-                                       {i18n.t('rounds.seed')}
-                               </Button>
+<li className={getClassName(round, tournament, user)}>
+       {round.title ?
+               <h3>{round.title}</h3>
+       : null}
+       <div className="d-flex">
+               <div className="info">
+                       <p className="date">
+                               {round.number ? `#${round.number} ` : '#?'}
+                               {i18n.t('rounds.date', { date: new Date(round.created_at) })}
                        </p>
-               : null}
-               {isParticipant(user, tournament) ?
-                       <p className="report">
-                               <ReportButton
-                                       participant={findParticipant(tournament, user)}
+                       <p className="seed">
+                               {round.code ?
+                                       <>
+                                               <SeedCode code={round.code} game={round.game || 'alttpr'} />
+                                               <br />
+                                       </>
+                               : null}
+                               <SeedButton
                                        round={round}
                                        tournament={tournament}
                                />
+                               {' '}
+                               <SeedRolledBy round={round} />
                        </p>
-               : null}
+                       {mayReportResult(user, tournament) ?
+                               <p className="report">
+                                       <ReportButton
+                                               round={round}
+                                               tournament={tournament}
+                                               user={user}
+                                       />
+                               </p>
+                       : null}
+                       <div className="button-bar">
+                               <LockButton round={round} tournament={tournament} />
+                               {mayEditRound(user, tournament, round) ?
+                                       <EditButton round={round} tournament={tournament} />
+                               : null}
+                       </div>
+               </div>
+               <List 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,
+               game: PropTypes.string,
+               locked: PropTypes.bool,
+               number: PropTypes.number,
                seed: PropTypes.string,
+               title: PropTypes.string,
        }),
        tournament: PropTypes.shape({
                participants: PropTypes.arrayOf(PropTypes.shape({