]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
open tournament type
[alttp.git] / resources / js / components / results / Item.js
index 993a3823fd2cfd5a1058b749d67ac1ec81fa4ba8..4b243b34bc4a9a673a55c233d4c4c62481745851 100644 (file)
@@ -1,38 +1,67 @@
 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 DetailDialog from './DetailDialog';
 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 { withUser } from '../../helpers/UserContext';
+
+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 Item = ({
-       participant,
+       authUser,
        round,
+       tournament,
+       user,
 }) => {
-       const result = findResult(participant, round);
-       return (
-               <div className="result">
-                       <Box user={participant.user} />
-                       {result ?
-                               <div>
-                                       {i18n.t('results.time', { time: formatTime(result) })}
-                               </div>
-                       : null}
-               </div>
-       );
+       const [showDialog, setShowDialog] = useState(false);
+       const result = findResult(user, round);
+       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>
+               <DetailDialog
+                       onHide={() => setShowDialog(false)}
+                       round={round}
+                       show={showDialog}
+                       tournament={tournament}
+                       user={user}
+               />
+       </div>;
 };
 
 Item.propTypes = {
-       participant: PropTypes.shape({
-               user: PropTypes.shape({
-               }),
+       authUser: PropTypes.shape({
        }),
        round: PropTypes.shape({
        }),
        tournament: PropTypes.shape({
        }),
+       user: PropTypes.shape({
+       }),
 };
 
-export default withTranslation()(Item);
+export default withUser(Item, 'authUser');