]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
add seed display
[alttp.git] / resources / js / components / rounds / Item.js
index 064c7dc992ead951105c661cd9dd861b3a557f69..b227e9334798ffe89dae08775a3098458b47a8b1 100644 (file)
@@ -1,13 +1,39 @@
 import PropTypes from 'prop-types';
 import React from 'react';
+import { Button } from 'react-bootstrap';
 import { withTranslation } from 'react-i18next';
 
 import List from '../results/List';
+import ReportButton from '../results/ReportButton';
+import { isParticipant } from '../../helpers/permissions';
+import { findParticipant } from '../../helpers/Tournament';
+import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
-const Item = ({ round, tournament }) => <li className="round d-flex">
-       <div className="date">
-               {i18n.t('rounds.date', { date: new Date(round.created_at) })}
+const Item = ({
+       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}
+               {isParticipant(user, tournament) ?
+                       <p className="report">
+                               <ReportButton
+                                       participant={findParticipant(tournament, user)}
+                                       round={round}
+                                       tournament={tournament}
+                               />
+                       </p>
+               : null}
        </div>
        <List round={round} tournament={tournament} />
 </li>;
@@ -15,11 +41,14 @@ const Item = ({ round, tournament }) => <li className="round d-flex">
 Item.propTypes = {
        round: PropTypes.shape({
                created_at: PropTypes.string,
+               seed: PropTypes.string,
        }),
        tournament: PropTypes.shape({
                participants: PropTypes.arrayOf(PropTypes.shape({
                })),
        }),
+       user: PropTypes.shape({
+       }),
 };
 
-export default withTranslation()(Item);
+export default withTranslation()(withUser(Item));