]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
random comments on profile page
[alttp.git] / resources / js / components / results / Item.js
index 771c7b62a68ad825a9fe74288db70935c51bdcb5..4b243b34bc4a9a673a55c233d4c4c62481745851 100644 (file)
@@ -1,33 +1,60 @@
 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} />
-                       <div>
-                               {result ?
-                                       <span>{i18n.t('results.time', { time: formatTime(result) })}</span>
-                               : null}
-                       </div>
-               </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({
        }),
@@ -37,4 +64,4 @@ Item.propTypes = {
        }),
 };
 
-export default withTranslation()(Item);
+export default withUser(Item, 'authUser');