]> 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 5cdd3be42751c1b678508a1e3800a065b080bf93..2c1b65688416c6639925ef375d5255e7782a9d20 100644 (file)
@@ -9,7 +9,24 @@ import { findResult } from '../../helpers/Participant';
 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,
@@ -25,17 +42,14 @@ const Item = ({
                                                formatTime(result)
                                        : null}
                                </span>
-                               {result && result.has_finished ?
-                                       <Icon.FINISHED className="text-success" size="lg" />
-                               :
-                                       <Icon.PENDING size="lg" />
-                               }
+                               {getIcon(result, index)}
                        </div>
                </div>
        );
 };
 
 Item.propTypes = {
+       index: PropTypes.number,
        participant: PropTypes.shape({
                user: PropTypes.shape({
                }),