|
|
@ -48,10 +48,9 @@ function EpisodeStatus(props) {
|
|
|
|
|
|
|
|
|
|
|
|
if (grabbed) {
|
|
|
|
if (grabbed) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className={styles.center}>
|
|
|
|
<div className={styles.center} title="Album is downloading">
|
|
|
|
<Icon
|
|
|
|
<Icon
|
|
|
|
name={icons.DOWNLOADING}
|
|
|
|
name={icons.DOWNLOADING}
|
|
|
|
title="Album is downloading"
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
@ -75,10 +74,9 @@ function EpisodeStatus(props) {
|
|
|
|
|
|
|
|
|
|
|
|
if (!airDateUtc) {
|
|
|
|
if (!airDateUtc) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className={styles.center}>
|
|
|
|
<div className={styles.center} title="TBA">
|
|
|
|
<Icon
|
|
|
|
<Icon
|
|
|
|
name={icons.TBA}
|
|
|
|
name={icons.TBA}
|
|
|
|
title="TBA"
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
@ -86,10 +84,9 @@ function EpisodeStatus(props) {
|
|
|
|
|
|
|
|
|
|
|
|
if (!monitored) {
|
|
|
|
if (!monitored) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className={styles.center}>
|
|
|
|
<div className={styles.center} title="Album is not monitored">
|
|
|
|
<Icon
|
|
|
|
<Icon
|
|
|
|
name={icons.UNMONITORED}
|
|
|
|
name={icons.UNMONITORED}
|
|
|
|
title="Album is not monitored"
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
@ -97,20 +94,18 @@ function EpisodeStatus(props) {
|
|
|
|
|
|
|
|
|
|
|
|
if (hasAired) {
|
|
|
|
if (hasAired) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className={styles.center}>
|
|
|
|
<div className={styles.center} title="Track missing from disk">
|
|
|
|
<Icon
|
|
|
|
<Icon
|
|
|
|
name={icons.MISSING}
|
|
|
|
name={icons.MISSING}
|
|
|
|
title="Track missing from disk"
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<div className={styles.center}>
|
|
|
|
<div className={styles.center} title="Album has not aired">
|
|
|
|
<Icon
|
|
|
|
<Icon
|
|
|
|
name={icons.NOT_AIRED}
|
|
|
|
name={icons.NOT_AIRED}
|
|
|
|
title="Album has not aired"
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
);
|
|
|
|