X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FItem.js;h=b8a0ec61ec7f7ca23e42bbdae4b4c14eb5204d96;hb=0407853837c323428d122a027fbdb574025824db;hp=0d73105edd21ac13268223742196ca9bbdfe3daa;hpb=855decfd62b51ed500c8a5903f4b263c4c9afb5c;p=alttp.git diff --git a/resources/js/components/results/Item.js b/resources/js/components/results/Item.js index 0d73105..b8a0ec6 100644 --- a/resources/js/components/results/Item.js +++ b/resources/js/components/results/Item.js @@ -1,45 +1,16 @@ import PropTypes from 'prop-types'; -import React from 'react'; +import React, { useState } from 'react'; +import { Button } from 'react-bootstrap'; import { withTranslation } 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 { getIcon, getTime } from '../../helpers/Result'; import { maySeeResults } from '../../helpers/permissions'; +import { findResult } from '../../helpers/User'; import { withUser } from '../../helpers/UserContext'; - -const getIcon = (result, maySee) => { - if (!result || !result.has_finished) { - return ; - } - if (result.forfeit && maySee) { - return ; - } - if (result.placement === 1 && maySee) { - return ; - } - if (result.placement === 2 && maySee) { - return ; - } - if (result.placement === 3 && maySee) { - return ; - } - return ; -}; - -const getTime = (result, maySee) => { - if (!result || !maySee) { - return null; - } - if (result.time) { - return formatTime(result); - } - if (result.forfeit) { - return 'DNF'; - } - return '?'; -}; +import i18n from '../../i18n'; const getClassName = result => { const classNames = ['status']; @@ -54,32 +25,78 @@ const getClassName = result => { 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, + authUser, round, tournament, user, }) => { - const result = findResult(participant, round); - const maySee = maySeeResults(user, tournament, round); + const [showDialog, setShowDialog] = useState(false); + const result = findResult(user, round); + const maySee = maySeeResults(authUser, tournament, round); return
- -
- - {getTime(result, maySee)} - - {getIcon(result, maySee)} + +
+ + {maySee && result && result.vod ? + + : null}
+ setShowDialog(false)} + round={round} + show={showDialog} + tournament={tournament} + user={user} + />
; }; Item.propTypes = { - participant: PropTypes.shape({ - user: PropTypes.shape({ - }), + authUser: PropTypes.shape({ }), round: PropTypes.shape({ }), @@ -89,4 +106,4 @@ Item.propTypes = { }), }; -export default withTranslation()(withUser(Item)); +export default withTranslation()(withUser(Item, 'authUser'));