]> 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 c17a5aa6f058cd438d657a79b3b0ac147e1f2725..33394f4140f5873bb2c00d4a4100501796e0e3e0 100644 (file)
@@ -2,6 +2,7 @@ import PropTypes from 'prop-types';
 import React from 'react';
 import { withTranslation } from 'react-i18next';
 
+import LockButton from './LockButton';
 import SeedButton from './SeedButton';
 import SeedCode from './SeedCode';
 import List from '../results/List';
@@ -12,7 +13,6 @@ import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
 const Item = ({
-       index,
        round,
        tournament,
        user,
@@ -20,19 +20,22 @@ const Item = ({
 <li className="round d-flex">
        <div className="info">
                <p className="date">
-                       {`#${index + 1} `}
+                       {round.number ? `#${round.number} ` : '#?'}
                        {i18n.t('rounds.date', { date: new Date(round.created_at) })}
                </p>
                <p className="seed">
                        {round.code ?
-                               <SeedCode code={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)}
@@ -41,15 +44,17 @@ const Item = ({
                                />
                        </p>
                : null}
+               <LockButton round={round} tournament={tournament} />
        </div>
        <List round={round} tournament={tournament} />
 </li>;
 
 Item.propTypes = {
-       index: PropTypes.number,
        round: PropTypes.shape({
                code: PropTypes.arrayOf(PropTypes.string),
                created_at: PropTypes.string,
+               locked: PropTypes.bool,
+               number: PropTypes.number,
                seed: PropTypes.string,
        }),
        tournament: PropTypes.shape({