]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/Item.js
number rounds and results
[alttp.git] / resources / js / components / results / Item.js
index 993a3823fd2cfd5a1058b749d67ac1ec81fa4ba8..2c1b65688416c6639925ef375d5255e7782a9d20 100644 (file)
@@ -2,29 +2,54 @@ import PropTypes from 'prop-types';
 import React from 'react';
 import { withTranslation } from 'react-i18next';
 
+import Icon from '../common/Icon';
 import Box from '../users/Box';
 import { formatTime } from '../../helpers/Result';
 import { findResult } from '../../helpers/Participant';
-import i18n from '../../i18n';
+import { maySeeResults } from '../../helpers/permissions';
+import { withUser } from '../../helpers/UserContext';
+
+const getIcon = (result, index) => {
+       if (!result || !result.has_finished) {
+               return <Icon.PENDING className="text-muted" 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" />;
+       }
+       if (index === 2) {
+               return <Icon.THIRD_PLACE className="text-bronze" size="lg" />;
+       }
+       return <Icon.FINISHED className="text-success" size="lg" />;
+};
 
 const Item = ({
+       index,
        participant,
        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 className="status">
+                               <span className="time">
+                                       {result && maySeeResults(user, tournament, round) ?
+                                               formatTime(result)
+                                       : null}
+                               </span>
+                               {getIcon(result, index)}
+                       </div>
                </div>
        );
 };
 
 Item.propTypes = {
+       index: PropTypes.number,
        participant: PropTypes.shape({
                user: PropTypes.shape({
                }),
@@ -33,6 +58,8 @@ Item.propTypes = {
        }),
        tournament: PropTypes.shape({
        }),
+       user: PropTypes.shape({
+       }),
 };
 
-export default withTranslation()(Item);
+export default withTranslation()(withUser(Item));