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.
Prowlarr/frontend/src/Indexer/NoIndexer.js

48 lines
1.0 KiB

import PropTypes from 'prop-types';
import React from 'react';
import Button from 'Components/Link/Button';
import { kinds } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
import styles from './NoIndexer.css';
function NoIndexer(props) {
const {
totalItems,
onAddIndexerPress
} = props;
if (totalItems > 0) {
return (
<div>
<div className={styles.message}>
{translate('AllIndexersHiddenDueToFilter')}
</div>
</div>
);
}
return (
<div>
<div className={styles.message}>
No indexers found, to get started you'll want to add a new indexer.
</div>
<div className={styles.buttonContainer}>
<Button
onPress={onAddIndexerPress}
kind={kinds.PRIMARY}
>
{translate('AddNewIndexer')}
</Button>
</div>
</div>
);
}
NoIndexer.propTypes = {
totalItems: PropTypes.number.isRequired,
onAddIndexerPress: PropTypes.func.isRequired
};
export default NoIndexer;