]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/results/List.js
server calculated scoring
[alttp.git] / resources / js / components / results / List.js
index 11eb9a8f4f5eb1f07b7aaa7a13efb431de0923ec..f4d4ff10ee502130f44f65a9e03762347100d692 100644 (file)
@@ -2,9 +2,11 @@ import PropTypes from 'prop-types';
 import React from 'react';
 
 import Item from './Item';
+import { sortByResult } from '../../helpers/Participant';
+import { getRunners } from '../../helpers/Tournament';
 
-const List = ({ round, tournament }) => <div className="results d-flex">
-       {tournament.participants.map(participant =>
+const List = ({ round, tournament }) => <div className="results d-flex flex-wrap">
+       {sortByResult(getRunners(tournament), round).map(participant =>
                <Item
                        key={participant.id}
                        participant={participant}