X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Frounds%2FItem.js;h=c17a5aa6f058cd438d657a79b3b0ac147e1f2725;hb=2110d91bc5016fd78aec02578b09506b6d67f45e;hp=c4e337419df5b12e469b989b2b51ba750312fe86;hpb=d748feb96453d74aeffec648d6f5f68d9ef3b520;p=alttp.git diff --git a/resources/js/components/rounds/Item.js b/resources/js/components/rounds/Item.js index c4e3374..c17a5aa 100644 --- a/resources/js/components/rounds/Item.js +++ b/resources/js/components/rounds/Item.js @@ -2,6 +2,8 @@ import PropTypes from 'prop-types'; import React from 'react'; 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'; @@ -10,27 +12,45 @@ import { withUser } from '../../helpers/UserContext'; import i18n from '../../i18n'; const Item = ({ + index, round, tournament, user, }) =>
  • -

    {i18n.t('rounds.date', { date: new Date(round.created_at) })}

    - {isParticipant(user, tournament) ? - + {`#${index + 1} `} + {i18n.t('rounds.date', { date: new Date(round.created_at) })} +

    +

    + {round.code ? + + : null} + +

    + {isParticipant(user, tournament) ? +

    + +

    : null}
  • ; Item.propTypes = { + index: PropTypes.number, round: PropTypes.shape({ + code: PropTypes.arrayOf(PropTypes.string), created_at: PropTypes.string, + seed: PropTypes.string, }), tournament: PropTypes.shape({ participants: PropTypes.arrayOf(PropTypes.shape({