|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import HistoryDetailsModal from 'Activity/History/Details/HistoryDetailsModal';
|
|
|
|
import HistoryEventTypeCell from 'Activity/History/HistoryEventTypeCell';
|
|
|
|
import IconButton from 'Components/Link/IconButton';
|
|
|
|
import ConfirmModal from 'Components/Modal/ConfirmModal';
|
|
|
|
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
|
|
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
|
|
import TableRow from 'Components/Table/TableRow';
|
|
|
|
import { icons, kinds } from 'Helpers/Props';
|
|
|
|
import MovieFormats from 'Movie/MovieFormats';
|
|
|
|
import MovieLanguage from 'Movie/MovieLanguage';
|
|
|
|
import MovieQuality from 'Movie/MovieQuality';
|
|
|
|
import styles from './MovieHistoryRow.css';
|
|
|
|
|
|
|
|
class MovieHistoryRow extends Component {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Lifecycle
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
isMarkAsFailedModalOpen: false,
|
|
|
|
isDetailsModalOpen: false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Listeners
|
|
|
|
|
|
|
|
onMarkAsFailedPress = () => {
|
|
|
|
this.setState({ isMarkAsFailedModalOpen: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
onConfirmMarkAsFailed = () => {
|
|
|
|
this.props.onMarkAsFailedPress(this.props.id);
|
|
|
|
this.setState({ isMarkAsFailedModalOpen: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onMarkAsFailedModalClose = () => {
|
|
|
|
this.setState({ isMarkAsFailedModalOpen: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onDetailsPress = () => {
|
|
|
|
this.setState({ isDetailsModalOpen: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
onDetailsModalClose = () => {
|
|
|
|
this.setState({ isDetailsModalOpen: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Render
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
eventType,
|
|
|
|
sourceTitle,
|
|
|
|
quality,
|
|
|
|
customFormats,
|
|
|
|
languages,
|
|
|
|
qualityCutoffNotMet,
|
|
|
|
date,
|
|
|
|
data,
|
|
|
|
isMarkingAsFailed,
|
|
|
|
shortDateFormat,
|
|
|
|
timeFormat,
|
|
|
|
onMarkAsFailedPress
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const {
|
|
|
|
isMarkAsFailedModalOpen
|
|
|
|
} = this.state;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TableRow>
|
|
|
|
<HistoryEventTypeCell
|
|
|
|
eventType={eventType}
|
|
|
|
data={data}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TableRowCell>
|
|
|
|
{sourceTitle}
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
<TableRowCell>
|
|
|
|
<MovieLanguage
|
|
|
|
languages={languages}
|
|
|
|
/>
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
<TableRowCell>
|
|
|
|
<MovieQuality
|
|
|
|
quality={quality}
|
|
|
|
isCutoffNotMet={qualityCutoffNotMet}
|
|
|
|
/>
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
<TableRowCell key={name}>
|
|
|
|
<MovieFormats
|
|
|
|
formats={customFormats}
|
|
|
|
/>
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
<RelativeDateCellConnector
|
|
|
|
date={date}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TableRowCell className={styles.actions}>
|
|
|
|
<IconButton
|
|
|
|
name={icons.INFO}
|
|
|
|
onPress={this.onDetailsPress}
|
|
|
|
/>
|
|
|
|
|
|
|
|
{
|
|
|
|
eventType === 'grabbed' &&
|
|
|
|
<IconButton
|
|
|
|
title="Mark as failed"
|
|
|
|
name={icons.REMOVE}
|
|
|
|
onPress={this.onMarkAsFailedPress}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
</TableRowCell>
|
|
|
|
|
|
|
|
<ConfirmModal
|
|
|
|
isOpen={isMarkAsFailedModalOpen}
|
|
|
|
kind={kinds.DANGER}
|
|
|
|
title="Mark as Failed"
|
|
|
|
message={`Are you sure you want to mark '${sourceTitle}' as failed?`}
|
|
|
|
confirmLabel="Mark as Failed"
|
|
|
|
onConfirm={this.onConfirmMarkAsFailed}
|
|
|
|
onCancel={this.onMarkAsFailedModalClose}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<HistoryDetailsModal
|
|
|
|
isOpen={this.state.isDetailsModalOpen}
|
|
|
|
eventType={eventType}
|
|
|
|
sourceTitle={sourceTitle}
|
|
|
|
data={data}
|
|
|
|
isMarkingAsFailed={isMarkingAsFailed}
|
|
|
|
shortDateFormat={shortDateFormat}
|
|
|
|
timeFormat={timeFormat}
|
|
|
|
onMarkAsFailedPress={onMarkAsFailedPress}
|
|
|
|
onModalClose={this.onDetailsModalClose}
|
|
|
|
/>
|
|
|
|
</TableRow>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MovieHistoryRow.propTypes = {
|
|
|
|
id: PropTypes.number.isRequired,
|
|
|
|
eventType: PropTypes.string.isRequired,
|
|
|
|
sourceTitle: PropTypes.string.isRequired,
|
|
|
|
languages: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
quality: PropTypes.object.isRequired,
|
|
|
|
customFormats: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
qualityCutoffNotMet: PropTypes.bool.isRequired,
|
|
|
|
date: PropTypes.string.isRequired,
|
|
|
|
data: PropTypes.object.isRequired,
|
|
|
|
isMarkingAsFailed: PropTypes.bool,
|
|
|
|
movie: PropTypes.object.isRequired,
|
|
|
|
shortDateFormat: PropTypes.string.isRequired,
|
|
|
|
timeFormat: PropTypes.string.isRequired,
|
|
|
|
onMarkAsFailedPress: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MovieHistoryRow;
|