]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
display seed code
[alttp.git] / resources / js / components / rounds / Item.js
index b227e9334798ffe89dae08775a3098458b47a8b1..c17a5aa6f058cd438d657a79b3b0ac147e1f2725 100644 (file)
@@ -1,8 +1,9 @@
 import PropTypes from 'prop-types';
 import React from 'react';
-import { Button } from 'react-bootstrap';
 import { withTranslation } from 'react-i18next';
 
+import SeedButton from './SeedButton';
+import SeedCode from './SeedCode';
 import List from '../results/List';
 import ReportButton from '../results/ReportButton';
 import { isParticipant } from '../../helpers/permissions';
@@ -11,20 +12,26 @@ import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
 const Item = ({
+       index,
        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>
-                       </p>
-               : null}
+               <p className="date">
+                       {`#${index + 1} `}
+                       {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>
                {isParticipant(user, tournament) ?
                        <p className="report">
                                <ReportButton
@@ -39,7 +46,9 @@ const Item = ({
 </li>;
 
 Item.propTypes = {
+       index: PropTypes.number,
        round: PropTypes.shape({
+               code: PropTypes.arrayOf(PropTypes.string),
                created_at: PropTypes.string,
                seed: PropTypes.string,
        }),