You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Calendar/Events/CalendarEvent.js

141 lines
3.4 KiB

import classNames from 'classnames';
import moment from 'moment';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import getStatusStyle from 'Calendar/getStatusStyle';
import Icon from 'Components/Icon';
import Link from 'Components/Link/Link';
import { icons } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
import CalendarEventQueueDetails from './CalendarEventQueueDetails';
import styles from './CalendarEvent.css';
class CalendarEvent extends Component {
//
// Lifecycle
constructor(props, context) {
super(props, context);
this.state = {
isDetailsModalOpen: false
};
}
//
// Listeners
onPress = () => {
this.setState({ isDetailsModalOpen: true }, () => {
this.props.onEventModalOpenToggle(true);
});
}
onDetailsModalClose = () => {
this.setState({ isDetailsModalOpen: false }, () => {
this.props.onEventModalOpenToggle(false);
});
}
//
// Render
render() {
const {
id,
author,
title,
titleSlug,
releaseDate,
monitored,
statistics,
grabbed,
queueItem,
// timeFormat,
colorImpairedMode
} = this.props;
if (!author) {
return null;
}
const startTime = moment(releaseDate);
// const endTime = startTime.add(author.runtime, 'minutes');
const downloading = !!(queueItem || grabbed);
const isMonitored = author.monitored && monitored;
const statusStyle = getStatusStyle(id, downloading, startTime, isMonitored, statistics.percentOfBooks);
return (
<div>
<Link
className={classNames(
styles.event,
styles[statusStyle],
colorImpairedMode && 'colorImpaired'
)}
component="div"
onPress={this.onPress}
>
<div className={styles.info}>
<div className={styles.authorName}>
<Link to={`/author/${author.titleSlug}`}>
{author.authorName}
</Link>
</div>
{
!!queueItem &&
<span className={styles.statusIcon}>
<CalendarEventQueueDetails
{...queueItem}
/>
</span>
}
{
!queueItem && grabbed &&
<Icon
className={styles.statusIcon}
name={icons.DOWNLOADING}
title={translate('BookIsDownloading')}
/>
}
</div>
<div className={styles.bookInfo}>
<div className={styles.bookTitle}>
<Link to={`/book/${titleSlug}`}>
{title}
</Link>
</div>
</div>
</Link>
</div>
);
}
}
CalendarEvent.propTypes = {
id: PropTypes.number.isRequired,
author: PropTypes.object.isRequired,
title: PropTypes.string.isRequired,
titleSlug: PropTypes.string.isRequired,
statistics: PropTypes.object.isRequired,
releaseDate: PropTypes.string.isRequired,
monitored: PropTypes.bool.isRequired,
grabbed: PropTypes.bool,
queueItem: PropTypes.object,
// timeFormat: PropTypes.string.isRequired,
colorImpairedMode: PropTypes.bool.isRequired,
onEventModalOpenToggle: PropTypes.func.isRequired
};
CalendarEvent.defaultProps = {
statistics: {
percentOfBooks: 0
}
};
export default CalendarEvent;