mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
152 lines
4.2 KiB
JavaScript
152 lines
4.2 KiB
JavaScript
import classNames from 'classnames';
|
|
import PropTypes from 'prop-types';
|
|
import React, { PureComponent } from 'react';
|
|
import { ColorImpairedConsumer } from 'App/ColorImpairedContext';
|
|
import DescriptionList from 'Components/DescriptionList/DescriptionList';
|
|
import DescriptionListItem from 'Components/DescriptionList/DescriptionListItem';
|
|
import formatBytes from 'Utilities/Number/formatBytes';
|
|
import translate from 'Utilities/String/translate';
|
|
import styles from './BookIndexFooter.css';
|
|
|
|
class BookIndexFooter extends PureComponent {
|
|
|
|
//
|
|
// Render
|
|
|
|
render() {
|
|
const { book } = this.props;
|
|
const count = book.length;
|
|
let books = 0;
|
|
let bookFiles = 0;
|
|
let monitored = 0;
|
|
let totalFileSize = 0;
|
|
|
|
const authors = new Set();
|
|
|
|
book.forEach((s) => {
|
|
authors.add(s.authorId);
|
|
|
|
const { statistics = {} } = s;
|
|
|
|
const {
|
|
bookCount = 0,
|
|
bookFileCount = 0,
|
|
sizeOnDisk = 0
|
|
} = statistics;
|
|
|
|
books += bookCount;
|
|
bookFiles += bookFileCount;
|
|
|
|
if (s.monitored) {
|
|
monitored++;
|
|
}
|
|
|
|
totalFileSize += sizeOnDisk;
|
|
});
|
|
|
|
return (
|
|
<ColorImpairedConsumer>
|
|
{(enableColorImpairedMode) => {
|
|
return (
|
|
<div className={styles.footer}>
|
|
<div>
|
|
<div className={styles.legendItem}>
|
|
<div
|
|
className={classNames(
|
|
styles.continuing,
|
|
enableColorImpairedMode && 'colorImpaired'
|
|
)}
|
|
/>
|
|
<div>
|
|
{translate('ContinuingAllBooksDownloaded')}
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.legendItem}>
|
|
<div
|
|
className={classNames(
|
|
styles.ended,
|
|
enableColorImpairedMode && 'colorImpaired'
|
|
)}
|
|
/>
|
|
<div>
|
|
{translate('EndedAllBooksDownloaded')}
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.legendItem}>
|
|
<div
|
|
className={classNames(
|
|
styles.missingMonitored,
|
|
enableColorImpairedMode && 'colorImpaired'
|
|
)}
|
|
/>
|
|
<div>
|
|
{translate('MissingBooksAuthorMonitored')}
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.legendItem}>
|
|
<div
|
|
className={classNames(
|
|
styles.missingUnmonitored,
|
|
enableColorImpairedMode && 'colorImpaired'
|
|
)}
|
|
/>
|
|
<div>
|
|
{translate('MissingBooksAuthorNotMonitored')}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.statistics}>
|
|
<DescriptionList>
|
|
<DescriptionListItem
|
|
title={translate('Monitored')}
|
|
data={monitored}
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
title={translate('Unmonitored')}
|
|
data={count - monitored}
|
|
/>
|
|
</DescriptionList>
|
|
|
|
<DescriptionList>
|
|
<DescriptionListItem
|
|
title={translate('Authors')}
|
|
data={authors.size}
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
title={translate('Books')}
|
|
data={books}
|
|
/>
|
|
|
|
<DescriptionListItem
|
|
title={translate('Files')}
|
|
data={bookFiles}
|
|
/>
|
|
</DescriptionList>
|
|
|
|
<DescriptionList>
|
|
<DescriptionListItem
|
|
title={translate('TotalFileSize')}
|
|
data={formatBytes(totalFileSize)}
|
|
/>
|
|
</DescriptionList>
|
|
</div>
|
|
</div>
|
|
);
|
|
}}
|
|
</ColorImpairedConsumer>
|
|
);
|
|
}
|
|
}
|
|
|
|
BookIndexFooter.propTypes = {
|
|
book: PropTypes.arrayOf(PropTypes.object).isRequired
|
|
};
|
|
|
|
export default BookIndexFooter;
|