You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Author/NoAuthor.js

60 lines
1.3 KiB

import PropTypes from 'prop-types';
import React from 'react';
import Button from 'Components/Link/Button';
import { kinds } from 'Helpers/Props';
import styles from './NoAuthor.css';
function NoAuthor(props) {
const {
totalItems,
itemType
} = props;
if (totalItems > 0) {
return (
<div>
<div className={styles.message}>
{`All ${itemType} are hidden due to the applied filter.`}
</div>
</div>
);
}
return (
<div>
<div className={styles.message}>
{`No ${itemType} found, to get started you'll want to add a new author or book or add an existing library location (Root Folder) and update.`}
</div>
<div className={styles.buttonContainer}>
<Button
to="/settings/mediamanagement"
kind={kinds.PRIMARY}
>
Add Root Folder
</Button>
</div>
<div className={styles.buttonContainer}>
<Button
to="/add/search"
kind={kinds.PRIMARY}
>
Add New Author
</Button>
</div>
</div>
);
}
NoAuthor.propTypes = {
totalItems: PropTypes.number.isRequired,
itemType: PropTypes.string.isRequired
};
NoAuthor.defaultProps = {
itemType: 'authors'
};
export default NoAuthor;