X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Ftournament%2FScoreboard.js;h=27bb0873a4d7c75d4de6a3b15f25f1d514a07713;hb=4c5a82cb876e96c72c50e8bc12bd8a43a9afe847;hp=f13adacb61bbaa7a4465f88fb8b549ea535cca40;hpb=1e725fef6dc440aaeea8c30e1e0598dc5d24ad86;p=alttp.git diff --git a/resources/js/components/tournament/Scoreboard.js b/resources/js/components/tournament/Scoreboard.js index f13adac..27bb087 100644 --- a/resources/js/components/tournament/Scoreboard.js +++ b/resources/js/components/tournament/Scoreboard.js @@ -1,14 +1,13 @@ import PropTypes from 'prop-types'; import React from 'react'; import { Button, Table } from 'react-bootstrap'; -import { withTranslation } from 'react-i18next'; +import { useTranslation } from 'react-i18next'; import Icon from '../common/Icon'; import Box from '../users/Box'; import { comparePlacement } from '../../helpers/Participant'; import { getRunners } from '../../helpers/Tournament'; -import { withUser } from '../../helpers/UserContext'; -import i18n from '../../i18n'; +import { useUser } from '../../hooks/user'; const getRowClassName = (tournament, participant, user) => { const classNames = ['score']; @@ -58,48 +57,50 @@ const getStreamIcon = participant => { return ; }; -const Scoreboard = ({ tournament, user }) => - - - - - - - - - - {getRunners(tournament).sort(comparePlacement).map(participant => - - - - - - )} - -
{i18n.t('participants.placementShort')}{i18n.t('participants.participant')}{i18n.t('participants.scoreShort')}
- {getPlacementDisplay(participant)} - -
- - {participant.user.stream_link ? - - : null} -
-
{participant.score}
; +const Scoreboard = ({ tournament }) => { + const { t } = useTranslation(); + const { user } = useUser(); + + return + + + + + + + + + {getRunners(tournament).sort(comparePlacement).map(participant => + + + + + + )} + +
{t('participants.placementShort')}{t('participants.participant')}{t('participants.scoreShort')}
+ {getPlacementDisplay(participant)} + +
+ + {participant.user.stream_link ? + + : null} +
+
{participant.score}
; +}; Scoreboard.propTypes = { tournament: PropTypes.shape({ }), - user: PropTypes.shape({ - }), }; -export default withTranslation()(withUser(Scoreboard)); +export default Scoreboard;