X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FItem.js;h=2e29d752afd2bd6938e82a5123c3b607bdea7308;hb=3603709307e0777958cd18134ad4178cef410d14;hp=4b243b34bc4a9a673a55c233d4c4c62481745851;hpb=537b998e8059c56e3a20ee2a89d42c3bbfbb80b8;p=alttp.git diff --git a/resources/js/components/results/Item.js b/resources/js/components/results/Item.js index 4b243b3..2e29d75 100644 --- a/resources/js/components/results/Item.js +++ b/resources/js/components/results/Item.js @@ -1,13 +1,15 @@ import PropTypes from 'prop-types'; 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 { getIcon, getTime } from '../../helpers/Result'; import { maySeeResults } from '../../helpers/permissions'; import { findResult } from '../../helpers/User'; -import { withUser } from '../../helpers/UserContext'; +import { useUser } from '../../hooks/user'; const getClassName = result => { const classNames = ['status']; @@ -22,27 +24,76 @@ 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 = ({ - authUser, round, tournament, user, }) => { const [showDialog, setShowDialog] = useState(false); - const result = findResult(user, round); - const maySee = maySeeResults(authUser, tournament, round); + + 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} @@ -54,8 +105,6 @@ const Item = ({ }; Item.propTypes = { - authUser: PropTypes.shape({ - }), round: PropTypes.shape({ }), tournament: PropTypes.shape({ @@ -64,4 +113,4 @@ Item.propTypes = { }), }; -export default withUser(Item, 'authUser'); +export default Item;