X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FItem.js;h=2e29d752afd2bd6938e82a5123c3b607bdea7308;hb=4c5a82cb876e96c72c50e8bc12bd8a43a9afe847;hp=993a3823fd2cfd5a1058b749d67ac1ec81fa4ba8;hpb=edd0e97bfdc544114f30bf4c13a929631c44a555;p=alttp.git diff --git a/resources/js/components/results/Item.js b/resources/js/components/results/Item.js index 993a382..2e29d75 100644 --- a/resources/js/components/results/Item.js +++ b/resources/js/components/results/Item.js @@ -1,38 +1,116 @@ 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 { useTranslation } from 'react-i18next'; +import DetailDialog from './DetailDialog'; +import Icon from '../common/Icon'; import Box from '../users/Box'; -import { formatTime } from '../../helpers/Result'; -import { findResult } from '../../helpers/Participant'; -import i18n from '../../i18n'; +import { getIcon, getTime } from '../../helpers/Result'; +import { maySeeResults } from '../../helpers/permissions'; +import { findResult } from '../../helpers/User'; +import { useUser } from '../../hooks/user'; + +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'); + } + return classNames.join(' '); +}; + +const twitchReg = /^https?:\/\/(www\.)?twitch\.tv/; +const youtubeReg = /^https?:\/\/(www\.)?youtu(\.be|be\.)/; + +const getVoDVariant = result => { + if (!result || !result.vod) return 'outline-secondary'; + if (twitchReg.test(result.vod)) { + return 'twitch'; + } + if (youtubeReg.test(result.vod)) { + return 'outline-youtube'; + } + return 'outline-secondary'; +}; + +const getVoDIcon = result => { + const variant = getVoDVariant(result); + if (variant === 'twitch') { + return ; + } + if (variant === 'outline-youtube') { + return ; + } + return ; +}; const Item = ({ - participant, round, + tournament, + user, }) => { - const result = findResult(participant, round); - return ( -
- - {result ? -
- {i18n.t('results.time', { time: formatTime(result) })} -
+ const [showDialog, setShowDialog] = useState(false); + + const { t } = useTranslation(); + const { user: authUser } = useUser(); + + const result = React.useMemo( + () => findResult(user, round), + [round, user], + ); + const maySee = React.useMemo( + () => maySeeResults(authUser, tournament, round), + [authUser, round, tournament], + ); + + return
+ +
+ + {maySee && result && result.vod ? + : null}
- ); + setShowDialog(false)} + round={round} + show={showDialog} + tournament={tournament} + user={user} + /> +
; }; Item.propTypes = { - participant: PropTypes.shape({ - user: PropTypes.shape({ - }), - }), round: PropTypes.shape({ }), tournament: PropTypes.shape({ }), + user: PropTypes.shape({ + }), }; -export default withTranslation()(Item); +export default Item;