]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
result layout
[alttp.git] / resources / js / components / rounds / Item.js
index c4e337419df5b12e469b989b2b51ba750312fe86..d352cd126263fb49044157ff31b093a1c658609e 100644 (file)
@@ -1,10 +1,12 @@
 import PropTypes from 'prop-types';
 import React from 'react';
+import { Button } from 'react-bootstrap';
 import { withTranslation } from 'react-i18next';
 
+import SeedButton from './SeedButton';
 import List from '../results/List';
 import ReportButton from '../results/ReportButton';
-import { isParticipant } from '../../helpers/permissions';
+import { maySetSeed, isParticipant } from '../../helpers/permissions';
 import { findParticipant } from '../../helpers/Tournament';
 import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
@@ -17,12 +19,20 @@ const Item = ({
 <li className="round d-flex">
        <div className="info">
                <p className="date">{i18n.t('rounds.date', { date: new Date(round.created_at) })}</p>
-               {isParticipant(user, tournament) ?
-                       <ReportButton
-                               participant={findParticipant(tournament, user)}
+               <p className="seed">
+                       <SeedButton
                                round={round}
                                tournament={tournament}
                        />
+               </p>
+               {isParticipant(user, tournament) ?
+                       <p className="report">
+                               <ReportButton
+                                       participant={findParticipant(tournament, user)}
+                                       round={round}
+                                       tournament={tournament}
+                               />
+                       </p>
                : null}
        </div>
        <List round={round} tournament={tournament} />
@@ -31,6 +41,7 @@ const Item = ({
 Item.propTypes = {
        round: PropTypes.shape({
                created_at: PropTypes.string,
+               seed: PropTypes.string,
        }),
        tournament: PropTypes.shape({
                participants: PropTypes.arrayOf(PropTypes.shape({