X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FItem.js;h=a2ee8e392b82a392b76236b8bab92e4e7806d6f7;hb=8d97d023740e438361e659c6e133418e33343178;hp=d99d93f75eea34eca456b0d668127f28038ef85b;hpb=80befc9403845a0f41f5f7e766938b0bbf607d7e;p=alttp.git diff --git a/resources/js/components/results/Item.js b/resources/js/components/results/Item.js index d99d93f..a2ee8e3 100644 --- a/resources/js/components/results/Item.js +++ b/resources/js/components/results/Item.js @@ -1,68 +1,59 @@ import PropTypes from 'prop-types'; -import React from 'react'; -import { withTranslation } from 'react-i18next'; +import React, { useState } from 'react'; +import { Button } from 'react-bootstrap'; -import Icon from '../common/Icon'; +import DetailDialog from './DetailDialog'; import Box from '../users/Box'; -import { formatTime } from '../../helpers/Result'; +import { getIcon, getTime } from '../../helpers/Result'; import { findResult } from '../../helpers/Participant'; import { maySeeResults } from '../../helpers/permissions'; import { withUser } from '../../helpers/UserContext'; -const getIcon = (result, index, maySee) => { - if (!result || !result.has_finished) { - return ; +const getClassName = result => { + const classNames = ['status']; + if (result && result.has_finished) { + classNames.push('finished'); + if (result.comment) { + classNames.push('has-comment'); + } + } else { + classNames.push('pending'); } - if (result.forfeit && maySee) { - return ; - } - if (index === 0) { - return ; - } - if (index === 1) { - return ; - } - if (index === 2) { - return ; - } - return ; -}; - -const getTime = (result, maySee) => { - if (!result || !maySee) { - return null; - } - if (result.time) { - return formatTime(result); - } - if (result.forfeit) { - return 'DNF'; - } - return '?'; + return classNames.join(' '); }; const Item = ({ - index, participant, round, tournament, user, }) => { + const [showDialog, setShowDialog] = useState(false); const result = findResult(participant, round); const maySee = maySeeResults(user, tournament, round); return
-
+
+ {getIcon(result, maySee)} + + setShowDialog(false)} + participant={participant} + round={round} + show={showDialog} + tournament={tournament} + />
; }; Item.propTypes = { - index: PropTypes.number, participant: PropTypes.shape({ user: PropTypes.shape({ }), @@ -75,4 +66,4 @@ Item.propTypes = { }), }; -export default withTranslation()(withUser(Item)); +export default withUser(Item);