X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=resources%2Fjs%2Fcomponents%2Frounds%2FItem.js;h=33394f4140f5873bb2c00d4a4100501796e0e3e0;hb=d1f28ea443b090c7593791eba9631796ccaeafe1;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..33394f4 100644 --- a/resources/js/components/rounds/Item.js +++ b/resources/js/components/rounds/Item.js @@ -2,6 +2,9 @@ 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'; import ReportButton from '../results/ReportButton'; import { isParticipant } from '../../helpers/permissions'; @@ -16,21 +19,43 @@ const Item = ({ }) =>
  • -

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

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

    +

    + {round.code ? + <> + + {' '} + + : null} + +

    + {!round.locked && isParticipant(user, tournament) ? +

    + +

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