Files
Prowlarr/frontend/src/Indexer/NoIndexer.tsx
T
Mark McDowall 5cbbd060a4 Update React Lint rules for TSX
(cherry picked from commit 1299a97579bec52ee3d16ab8d05c9e22edd80330)
2024-08-15 03:31:29 +03:00

40 lines
973 B
TypeScript

import React from 'react';
import Alert from 'Components/Alert';
import Button from 'Components/Link/Button';
import { kinds } from 'Helpers/Props';
import translate from 'Utilities/String/translate';
import styles from './NoIndexer.css';
interface NoIndexerProps {
totalItems: number;
onAddIndexerPress(): void;
}
function NoIndexer(props: NoIndexerProps) {
const { totalItems, onAddIndexerPress } = props;
if (totalItems > 0) {
return (
<Alert kind={kinds.WARNING} className={styles.message}>
{translate('AllIndexersHiddenDueToFilter')}
</Alert>
);
}
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 kind={kinds.PRIMARY} onPress={onAddIndexerPress}>
{translate('AddNewIndexer')}
</Button>
</div>
</div>
);
}
export default NoIndexer;