]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
allow admins to lock/unlock rounds
[alttp.git] / resources / js / components / rounds / Item.js
index b227e9334798ffe89dae08775a3098458b47a8b1..33394f4140f5873bb2c00d4a4100501796e0e3e0 100644 (file)
@@ -1,8 +1,10 @@
 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 { isParticipant } from '../../helpers/permissions';
@@ -17,15 +19,23 @@ const Item = ({
 }) =>
 <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>
-                       </p>
-               : null}
-               {isParticipant(user, tournament) ?
+               <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>
+               {!round.locked && isParticipant(user, tournament) ?
                        <p className="report">
                                <ReportButton
                                        participant={findParticipant(tournament, user)}
@@ -34,13 +44,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({