X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fresults%2FItem.js;h=0d73105edd21ac13268223742196ca9bbdfe3daa;hb=eca3f0074e6f9e882b91893e554ce249e25338de;hp=0d0d34e81a11553f7535be8a883d1fabb7df378d;hpb=878ceac3fc16d0c611c5002ae5d0605f1a07a8b4;p=alttp.git diff --git a/resources/js/components/results/Item.js b/resources/js/components/results/Item.js index 0d0d34e..0d73105 100644 --- a/resources/js/components/results/Item.js +++ b/resources/js/components/results/Item.js @@ -9,27 +9,27 @@ import { findResult } from '../../helpers/Participant'; import { maySeeResults } from '../../helpers/permissions'; import { withUser } from '../../helpers/UserContext'; -const getIcon = (result, index) => { +const getIcon = (result, maySee) => { if (!result || !result.has_finished) { return ; } - if (result.forfeit) { + if (result.forfeit && maySee) { return ; } - if (index === 0) { + if (result.placement === 1 && maySee) { return ; } - if (index === 1) { + if (result.placement === 2 && maySee) { return ; } - if (index === 2) { + if (result.placement === 3 && maySee) { return ; } return ; }; -const getTime = (user, tournament, round, result) => { - if (!result || !maySeeResults(user, tournament, round)) { +const getTime = (result, maySee) => { + if (!result || !maySee) { return null; } if (result.time) { @@ -41,27 +41,42 @@ const getTime = (user, tournament, round, result) => { return '?'; }; +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 = ({ - index, participant, round, tournament, user, }) => { const result = findResult(participant, round); + const maySee = maySeeResults(user, tournament, round); return
-
+
- {getTime(user, tournament, round, result)} + {getTime(result, maySee)} - {getIcon(result, index)} + {getIcon(result, maySee)}
; }; Item.propTypes = { - index: PropTypes.number, participant: PropTypes.shape({ user: PropTypes.shape({ }),