]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
round titles
[alttp.git] / resources / js / components / rounds / Item.js
index 1b1edb22111233a63d13023a26d94523850cafff..92f55a06791098adda7b299ebf241665874ccdff 100644 (file)
@@ -2,20 +2,21 @@ 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 { mayReportResult, isRunner } from '../../helpers/permissions';
+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', 'd-flex'];
+       const classNames = ['round'];
        if (round.locked) {
                classNames.push('is-locked');
        } else {
@@ -40,37 +41,47 @@ const Item = ({
        user,
 }) =>
 <li className={getClassName(round, tournament, user)}>
-       <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.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}
-                                       user={user}
                                />
+                               {' '}
+                               <SeedRolledBy round={round} />
                        </p>
-               : null}
-               <LockButton round={round} tournament={tournament} />
+                       {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 = {
@@ -81,6 +92,7 @@ Item.propTypes = {
                locked: PropTypes.bool,
                number: PropTypes.number,
                seed: PropTypes.string,
+               title: PropTypes.string,
        }),
        tournament: PropTypes.shape({
                participants: PropTypes.arrayOf(PropTypes.shape({