X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Fepisodes%2FItem.js;h=612c5ea85f6f76db13ca777f85a93fbebae70bf2;hb=147c5f43c5d41fa18e82edb6651fe5a37c789353;hp=3545e7734586a1f3006ad761621df9061fb15d10;hpb=4fc3b543c9be9d045d7b9ea91dcaab46270131a9;p=alttp.git diff --git a/resources/js/components/episodes/Item.js b/resources/js/components/episodes/Item.js index 3545e77..612c5ea 100644 --- a/resources/js/components/episodes/Item.js +++ b/resources/js/components/episodes/Item.js @@ -1,32 +1,25 @@ -import moment from 'moment'; import PropTypes from 'prop-types'; import React from 'react'; import { Button } from 'react-bootstrap'; import { useTranslation } from 'react-i18next'; +import { Link } from 'react-router-dom'; import Channels from './Channels'; import Crew from './Crew'; import MultiLink from './MultiLink'; import Players from './Players'; import Icon from '../common/Icon'; +import { hasPassed, hasSGRestream, isActive } from '../../helpers/Episode'; +import { getLink } from '../../helpers/Event'; import { canApplyForEpisode, canRestreamEpisode } from '../../helpers/permissions'; -import { withUser } from '../../helpers/UserContext'; +import { useUser } from '../../hooks/user'; -const isActive = episode => { - if (!episode.start) return false; - const now = moment(); - const start = moment(episode.start).subtract(10, 'minutes'); - const end = moment(episode.start).add(episode.estimate, 'seconds'); - return start.isBefore(now) && end.isAfter(now); -}; - -const Item = ({ episode, onAddRestream, onApply, onEditRestream, user }) => { +const Item = ({ episode, onAddRestream, onApply, onEditRestream }) => { const { t } = useTranslation(); + const { user } = useUser(); const classNames = [ 'episodes-item', - 'd-flex', - 'align-items-stretch', 'my-3', 'p-2', 'border', @@ -49,60 +42,82 @@ const Item = ({ episode, onAddRestream, onApply, onEditRestream, user }) => { const hasPlayers = episode.players && episode.players.length; return
-
- {t('schedule.startTime', { date: new Date(episode.start) })} -
-
-
-
- {episode.title ? -
- {episode.title} -
- : null} - {episode.comment ? -
- {episode.comment} -
- : null} -
-
- {hasChannels ? - - : null} - {!hasChannels && hasPlayers ? - - : null} - {onAddRestream && canRestreamEpisode(user, episode) ? -
- -
- : null} -
+
+
+ {t('schedule.startTime', { date: new Date(episode.start) })}
+
+ {episode.title || episode.event ? +
+ {episode.title || episode.event.title} +
+ : null} + {episode.comment ? +
+ {episode.comment} +
+ : null} +
+
+ {hasChannels ? + + : null} + {!hasChannels && hasPlayers ? + + : null} + {episode.raceroom ? +
+ +
+ : null} + {onAddRestream && canRestreamEpisode(user, episode) ? +
+ +
+ : null} +
+
+
{hasPlayers ? : null} - {(episode.crew && episode.crew.length) + {(episode.crew && episode.crew.length) || (!hasPassed(episode) && ( + hasSGRestream(episode) || canApplyForEpisode(user, episode, 'commentary') - || canApplyForEpisode(user, episode, 'tracking') ? + || canApplyForEpisode(user, episode, 'tracking') + )) ?
: null} {episode.event ?
- {episode.event.title} + {episode.event.description_id ? + + {episode.event.title} + + : + episode.event.title + }
: null}
@@ -118,18 +133,19 @@ Item.propTypes = { })), event: PropTypes.shape({ corner: PropTypes.string, + description_id: PropTypes.number, + name: PropTypes.string, title: PropTypes.string, }), players: PropTypes.arrayOf(PropTypes.shape({ })), + raceroom: PropTypes.string, start: PropTypes.string, title: PropTypes.string, }), onAddRestream: PropTypes.func, onApply: PropTypes.func, onEditRestream: PropTypes.func, - user: PropTypes.shape({ - }), }; -export default withUser(Item); +export default Item;