]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
improved user context
[alttp.git] / resources / js / components / results / Item.js
index 2a1fc8c07f4cbb404be0f030b0315e274720dc33..2e29d752afd2bd6938e82a5123c3b607bdea7308 100644 (file)
 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 { getIcon, getTime } from '../../helpers/Result';
 import { maySeeResults } from '../../helpers/permissions';
-import { withUser } from '../../helpers/UserContext';
+import { findResult } from '../../helpers/User';
+import { useUser } from '../../hooks/user';
 
-const getIcon = (result, index, maySee) => {
-       if (!result || !result.has_finished) {
-               return <Icon.PENDING className="text-muted" size="lg" />;
+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 <Icon.FORFEIT className="text-danger" size="lg" />;
-       }
-       if (index === 0) {
-               return <Icon.FIRST_PLACE className="text-gold" size="lg" />;
-       }
-       if (index === 1) {
-               return <Icon.SECOND_PLACE className="text-silver" size="lg" />;
+       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 (index === 2) {
-               return <Icon.THIRD_PLACE className="text-bronze" size="lg" />;
+       if (youtubeReg.test(result.vod)) {
+               return 'outline-youtube';
        }
-       return <Icon.FINISHED className="text-success" size="lg" />;
+       return 'outline-secondary';
 };
 
-const getTime = (result, maySee) => {
-       if (!result || !maySee) {
-               return null;
+const getVoDIcon = result => {
+       const variant = getVoDVariant(result);
+       if (variant === 'twitch') {
+               return <Icon.TWITCH title="" />;
        }
-       if (result.time) {
-               return formatTime(result);
+       if (variant === 'outline-youtube') {
+               return <Icon.YOUTUBE title="" />;
        }
-       if (result.forfeit) {
-               return 'DNF';
-       }
-       return '?';
+       return <Icon.VIDEO title="" />;
 };
 
 const Item = ({
-       index,
-       participant,
        round,
        tournament,
        user,
 }) => {
-       const result = findResult(participant, round);
-       const maySee = maySeeResults(user, tournament, round);
+       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 <div className="result">
-               <Box user={participant.user} />
-               <div className="status">
-                       <span className="time">
-                               {getTime(result, maySee)}
-                       </span>
-                       {getIcon(result, index, maySee)}
+               <Box user={user} />
+               <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={t('results.vod')}
+                                       variant={getVoDVariant(result)}
+                               >
+                                       {getVoDIcon(result)}
+                               </Button>
+                       : null}
                </div>
+               <DetailDialog
+                       onHide={() => setShowDialog(false)}
+                       round={round}
+                       show={showDialog}
+                       tournament={tournament}
+                       user={user}
+               />
        </div>;
 };
 
 Item.propTypes = {
-       index: PropTypes.number,
-       participant: PropTypes.shape({
-               user: PropTypes.shape({
-               }),
-       }),
        round: PropTypes.shape({
        }),
        tournament: PropTypes.shape({
@@ -75,4 +113,4 @@ Item.propTypes = {
        }),
 };
 
-export default withTranslation()(withUser(Item));
+export default Item;