mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
104 lines
2.7 KiB
JavaScript
104 lines
2.7 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import Icon from 'Components/Icon';
|
|
import MonitorToggleButton from 'Components/MonitorToggleButton';
|
|
import TableRow from 'Components/Table/TableRow';
|
|
import TableRowCell from 'Components/Table/Cells/TableRowCell';
|
|
import TableSelectCell from 'Components/Table/Cells/TableSelectCell';
|
|
import SeriesTitleLink from 'Series/SeriesTitleLink';
|
|
import SeasonPassSeason from './SeasonPassSeason';
|
|
import { getSeriesStatusDetails } from 'Series/SeriesStatus';
|
|
import styles from './SeasonPassRow.css';
|
|
|
|
class SeasonPassRow extends Component {
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const {
|
|
seriesId,
|
|
status,
|
|
titleSlug,
|
|
title,
|
|
monitored,
|
|
seasons,
|
|
isSaving,
|
|
isSelected,
|
|
onSelectedChange,
|
|
onSeriesMonitoredPress,
|
|
onSeasonMonitoredPress
|
|
} = this.props;
|
|
|
|
const statusDetails = getSeriesStatusDetails(status);
|
|
|
|
return (
|
|
<TableRow>
|
|
<TableSelectCell
|
|
id={seriesId}
|
|
isSelected={isSelected}
|
|
onSelectedChange={onSelectedChange}
|
|
/>
|
|
|
|
<TableRowCell className={styles.status}>
|
|
<Icon
|
|
className={styles.statusIcon}
|
|
name={statusDetails.icon}
|
|
title={statusDetails.title}
|
|
|
|
/>
|
|
</TableRowCell>
|
|
|
|
<TableRowCell className={styles.title}>
|
|
<SeriesTitleLink
|
|
titleSlug={titleSlug}
|
|
title={title}
|
|
/>
|
|
</TableRowCell>
|
|
|
|
<TableRowCell className={styles.monitored}>
|
|
<MonitorToggleButton
|
|
monitored={monitored}
|
|
isSaving={isSaving}
|
|
onPress={onSeriesMonitoredPress}
|
|
/>
|
|
</TableRowCell>
|
|
|
|
<TableRowCell className={styles.seasons}>
|
|
{
|
|
seasons.map((season) => {
|
|
return (
|
|
<SeasonPassSeason
|
|
key={season.seasonNumber}
|
|
{...season}
|
|
onSeasonMonitoredPress={onSeasonMonitoredPress}
|
|
/>
|
|
);
|
|
})
|
|
}
|
|
</TableRowCell>
|
|
</TableRow>
|
|
);
|
|
}
|
|
}
|
|
|
|
SeasonPassRow.propTypes = {
|
|
seriesId: PropTypes.number.isRequired,
|
|
status: PropTypes.string.isRequired,
|
|
titleSlug: PropTypes.string.isRequired,
|
|
title: PropTypes.string.isRequired,
|
|
monitored: PropTypes.bool.isRequired,
|
|
seasons: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
isSaving: PropTypes.bool.isRequired,
|
|
isSelected: PropTypes.bool,
|
|
onSelectedChange: PropTypes.func.isRequired,
|
|
onSeriesMonitoredPress: PropTypes.func.isRequired,
|
|
onSeasonMonitoredPress: PropTypes.func.isRequired
|
|
};
|
|
|
|
SeasonPassRow.defaultProps = {
|
|
isSaving: false
|
|
};
|
|
|
|
export default SeasonPassRow;
|