mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04:00
158 lines
3.9 KiB
JavaScript
158 lines
3.9 KiB
JavaScript
import classNames from 'classnames';
|
|
import moment from 'moment';
|
|
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import CalendarEventQueueDetails from 'Calendar/Events/CalendarEventQueueDetails';
|
|
import getStatusStyle from 'Calendar/getStatusStyle';
|
|
import Icon from 'Components/Icon';
|
|
import Link from 'Components/Link/Link';
|
|
import { icons, kinds } from 'Helpers/Props';
|
|
import styles from './AgendaEvent.css';
|
|
|
|
class AgendaEvent extends Component {
|
|
//
|
|
// Lifecycle
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
|
|
this.state = {
|
|
isDetailsModalOpen: false
|
|
};
|
|
}
|
|
|
|
//
|
|
// Listeners
|
|
|
|
onPress = () => {
|
|
this.setState({ isDetailsModalOpen: true });
|
|
}
|
|
|
|
onDetailsModalClose = () => {
|
|
this.setState({ isDetailsModalOpen: false });
|
|
}
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
movieFile,
|
|
title,
|
|
titleSlug,
|
|
genres,
|
|
isAvailable,
|
|
inCinemas,
|
|
monitored,
|
|
hasFile,
|
|
grabbed,
|
|
queueItem,
|
|
showDate,
|
|
showMovieInformation,
|
|
showCutoffUnmetIcon,
|
|
longDateFormat,
|
|
colorImpairedMode
|
|
} = this.props;
|
|
|
|
const startTime = moment(inCinemas);
|
|
const downloading = !!(queueItem || grabbed);
|
|
const isMonitored = monitored;
|
|
const statusStyle = getStatusStyle(hasFile, downloading, isAvailable, isMonitored);
|
|
const joinedGenres = genres.slice(0, 2).join(', ');
|
|
const link = `/movie/${titleSlug}`;
|
|
|
|
return (
|
|
<div>
|
|
<Link
|
|
className={classNames(
|
|
styles.event,
|
|
styles.link
|
|
)}
|
|
to={link}
|
|
>
|
|
<div className={styles.date}>
|
|
{
|
|
showDate &&
|
|
startTime.format(longDateFormat)
|
|
}
|
|
</div>
|
|
|
|
<div
|
|
className={classNames(
|
|
styles.eventWrapper,
|
|
styles[statusStyle],
|
|
colorImpairedMode && 'colorImpaired'
|
|
)}
|
|
>
|
|
<div className={styles.movieTitle}>
|
|
{title}
|
|
</div>
|
|
|
|
{
|
|
showMovieInformation &&
|
|
<div className={styles.genres}>
|
|
{joinedGenres}
|
|
</div>
|
|
}
|
|
|
|
{
|
|
!!queueItem &&
|
|
<span className={styles.statusIcon}>
|
|
<CalendarEventQueueDetails
|
|
{...queueItem}
|
|
/>
|
|
</span>
|
|
}
|
|
|
|
{
|
|
!queueItem && grabbed &&
|
|
<Icon
|
|
className={styles.statusIcon}
|
|
name={icons.DOWNLOADING}
|
|
title="Movie is downloading"
|
|
/>
|
|
}
|
|
|
|
{
|
|
showCutoffUnmetIcon &&
|
|
!!movieFile &&
|
|
movieFile.qualityCutoffNotMet &&
|
|
<Icon
|
|
className={styles.statusIcon}
|
|
name={icons.MOVIE_FILE}
|
|
kind={kinds.WARNING}
|
|
title="Quality cutoff has not been met"
|
|
/>
|
|
}
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
AgendaEvent.propTypes = {
|
|
id: PropTypes.number.isRequired,
|
|
movieFile: PropTypes.object,
|
|
title: PropTypes.string.isRequired,
|
|
titleSlug: PropTypes.string.isRequired,
|
|
genres: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
isAvailable: PropTypes.bool.isRequired,
|
|
inCinemas: PropTypes.string,
|
|
monitored: PropTypes.bool.isRequired,
|
|
hasFile: PropTypes.bool.isRequired,
|
|
grabbed: PropTypes.bool,
|
|
queueItem: PropTypes.object,
|
|
showDate: PropTypes.bool.isRequired,
|
|
showMovieInformation: PropTypes.bool.isRequired,
|
|
showCutoffUnmetIcon: PropTypes.bool.isRequired,
|
|
timeFormat: PropTypes.string.isRequired,
|
|
longDateFormat: PropTypes.string.isRequired,
|
|
colorImpairedMode: PropTypes.bool.isRequired
|
|
};
|
|
|
|
AgendaEvent.defaultProps = {
|
|
genres: []
|
|
};
|
|
|
|
export default AgendaEvent;
|