]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
add result VoD links
[alttp.git] / resources / js / components / results / Item.js
index 4b243b34bc4a9a673a55c233d4c4c62481745851..b8a0ec61ec7f7ca23e42bbdae4b4c14eb5204d96 100644 (file)
@@ -1,13 +1,16 @@
 import PropTypes from 'prop-types';
 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 { getIcon, getTime } from '../../helpers/Result';
 import { maySeeResults } from '../../helpers/permissions';
 import { findResult } from '../../helpers/User';
 import { withUser } from '../../helpers/UserContext';
+import i18n from '../../i18n';
 
 const getClassName = result => {
        const classNames = ['status'];
@@ -22,6 +25,31 @@ 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 <Icon.TWITCH title="" />;
+       }
+       if (variant === 'outline-youtube') {
+               return <Icon.YOUTUBE title="" />;
+       }
+       return <Icon.VIDEO title="" />;
+};
+
 const Item = ({
        authUser,
        round,
@@ -33,16 +61,30 @@ const Item = ({
        const maySee = maySeeResults(authUser, tournament, round);
        return <div className="result">
                <Box user={user} />
-               <Button
-                       className={getClassName(result)}
-                       onClick={() => setShowDialog(true)}
-                       title={maySee && result && result.comment ? result.comment : null}
-               >
-                       <span className="time">
-                               {getTime(result, maySee)}
-                       </span>
-                       {getIcon(result, maySee)}
-               </Button>
+               <div className="d-flex align-items-center justify-content-between">
+                       <Button
+                               className={getClassName(result)}
+                               onClick={() => setShowDialog(true)}
+                               title={maySee && result && result.comment ? result.comment : null}
+                       >
+                               <span className="time">
+                                       {getTime(result, maySee)}
+                               </span>
+                               {getIcon(result, maySee)}
+                       </Button>
+                       {maySee && result && result.vod ?
+                               <Button
+                                       className="vod-link"
+                                       href={result.vod}
+                                       size="sm"
+                                       target="_blank"
+                                       title={i18n.t('results.vod')}
+                                       variant={getVoDVariant(result)}
+                               >
+                                       {getVoDIcon(result)}
+                               </Button>
+                       : null}
+               </div>
                <DetailDialog
                        onHide={() => setShowDialog(false)}
                        round={round}
@@ -64,4 +106,4 @@ Item.propTypes = {
        }),
 };
 
-export default withUser(Item, 'authUser');
+export default withTranslation()(withUser(Item, 'authUser'));