X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Frounds%2FItem.js;h=1b1edb22111233a63d13023a26d94523850cafff;hb=537b998e8059c56e3a20ee2a89d42c3bbfbb80b8;hp=1832edb4c13bb5e08f90f1731f1866884ffcd452;hpb=0f171dfffd9c0c2cc895c9f282c5f4550844cc5a;p=alttp.git diff --git a/resources/js/components/rounds/Item.js b/resources/js/components/rounds/Item.js index 1832edb..1b1edb2 100644 --- a/resources/js/components/rounds/Item.js +++ b/resources/js/components/rounds/Item.js @@ -1,51 +1,85 @@ import PropTypes from 'prop-types'; import React from 'react'; -import { Button } from 'react-bootstrap'; import { withTranslation } from 'react-i18next'; +import LockButton from './LockButton'; import SeedButton from './SeedButton'; +import SeedCode from './SeedCode'; +import SeedRolledBy from './SeedRolledBy'; import List from '../results/List'; import ReportButton from '../results/ReportButton'; -import { maySetSeed, isParticipant } from '../../helpers/permissions'; -import { findParticipant } from '../../helpers/Tournament'; +import { mayReportResult, isRunner } from '../../helpers/permissions'; +import { isComplete } from '../../helpers/Round'; +import { hasFinishedRound } from '../../helpers/User'; import { withUser } from '../../helpers/UserContext'; import i18n from '../../i18n'; +const getClassName = (round, tournament, user) => { + const classNames = ['round', 'd-flex']; + if (round.locked) { + classNames.push('is-locked'); + } else { + classNames.push('is-unlocked'); + } + if (isComplete(tournament, round)) { + classNames.push('is-complete'); + } else { + classNames.push('is-incomplete'); + } + if (hasFinishedRound(user, round)) { + classNames.push('has-finished'); + } else if (isRunner(user, tournament)) { + classNames.push('has-not-finished'); + } + return classNames.join(' '); +}; + const Item = ({ - index, round, tournament, user, }) => -
  • +
  • - {`#${index + 1} `} + {round.number ? `#${round.number} ` : '#?'} {i18n.t('rounds.date', { date: new Date(round.created_at) })}

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

    - {isParticipant(user, tournament) ? + {mayReportResult(user, tournament) ?

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