]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
round titles
[alttp.git] / resources / js / components / rounds / Item.js
index 064c7dc992ead951105c661cd9dd861b3a557f69..92f55a06791098adda7b299ebf241665874ccdff 100644 (file)
@@ -2,24 +2,104 @@ import PropTypes from 'prop-types';
 import React from 'react';
 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 { 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 Item = ({ round, tournament }) => <li className="round d-flex">
-       <div className="date">
-               {i18n.t('rounds.date', { date: new Date(round.created_at) })}
+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={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>
+                       <p className="seed">
+                               {round.code ?
+                                       <>
+                                               <SeedCode code={round.code} game={round.game || 'alttpr'} />
+                                               <br />
+                                       </>
+                               : null}
+                               <SeedButton
+                                       round={round}
+                                       tournament={tournament}
+                               />
+                               {' '}
+                               <SeedRolledBy round={round} />
+                       </p>
+                       {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({
                })),
        }),
+       user: PropTypes.shape({
+       }),
 };
 
-export default withTranslation()(Item);
+export default withTranslation()(withUser(Item));