import PropTypes from 'prop-types'; import React from 'react'; import getProgressBarKind from 'Utilities/Series/getProgressBarKind'; import { sizes } from 'Helpers/Props'; import ProgressBar from 'Components/ProgressBar'; import styles from './ArtistIndexProgressBar.css'; function ArtistIndexProgressBar(props) { const { monitored, status, trackCount, trackFileCount, posterWidth, detailedProgressBar } = props; const progress = trackCount ? trackFileCount / trackCount * 100 : 100; const text = `${trackFileCount} / ${trackCount}`; return ( ); } ArtistIndexProgressBar.propTypes = { monitored: PropTypes.bool.isRequired, status: PropTypes.string.isRequired, trackCount: PropTypes.number.isRequired, trackFileCount: PropTypes.number.isRequired, posterWidth: PropTypes.number.isRequired, detailedProgressBar: PropTypes.bool.isRequired }; export default ArtistIndexProgressBar;