]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
clickable results
[alttp.git] / resources / js / components / results / Item.js
index 993a3823fd2cfd5a1058b749d67ac1ec81fa4ba8..a2ee8e392b82a392b76236b8bab92e4e7806d6f7 100644 (file)
@@ -1,27 +1,56 @@
 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 { getIcon, getTime } from '../../helpers/Result';
 import { findResult } from '../../helpers/Participant';
-import i18n from '../../i18n';
+import { maySeeResults } from '../../helpers/permissions';
+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,
        round,
+       tournament,
+       user,
 }) => {
+       const [showDialog, setShowDialog] = useState(false);
        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 maySee = maySeeResults(user, tournament, round);
+       return <div className="result">
+               <Box user={participant.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)}
+                       participant={participant}
+                       round={round}
+                       show={showDialog}
+                       tournament={tournament}
+               />
+       </div>;
 };
 
 Item.propTypes = {
@@ -33,6 +62,8 @@ Item.propTypes = {
        }),
        tournament: PropTypes.shape({
        }),
+       user: PropTypes.shape({
+       }),
 };
 
-export default withTranslation()(Item);
+export default withUser(Item);