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.
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import { kinds } from 'Helpers/Props';
|
|
|
|
import Button from 'Components/Link/Button';
|
|
|
|
import Modal from 'Components/Modal/Modal';
|
|
|
|
import ModalContent from 'Components/Modal/ModalContent';
|
|
|
|
import ModalHeader from 'Components/Modal/ModalHeader';
|
|
|
|
import ModalBody from 'Components/Modal/ModalBody';
|
|
|
|
import ModalFooter from 'Components/Modal/ModalFooter';
|
|
|
|
import styles from './ConnectionLostModal.css';
|
|
|
|
|
|
|
|
function ConnectionLostModal(props) {
|
|
|
|
const {
|
|
|
|
isOpen,
|
|
|
|
onModalClose
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
isOpen={isOpen}
|
|
|
|
onModalClose={onModalClose}
|
|
|
|
>
|
|
|
|
<ModalContent onModalClose={onModalClose}>
|
|
|
|
<ModalHeader>
|
|
|
|
Connection Lost
|
|
|
|
</ModalHeader>
|
|
|
|
|
|
|
|
<ModalBody>
|
|
|
|
<div>
|
|
|
|
Lidarr has lost its connection to the backend and will need to be reloaded to restore functionality.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className={styles.automatic}>
|
|
|
|
Lidarr will try to connect automatically, or you can click reload below.
|
|
|
|
</div>
|
|
|
|
</ModalBody>
|
|
|
|
<ModalFooter>
|
|
|
|
<Button
|
|
|
|
kind={kinds.PRIMARY}
|
|
|
|
onPress={onModalClose}
|
|
|
|
>
|
|
|
|
Reload
|
|
|
|
</Button>
|
|
|
|
</ModalFooter>
|
|
|
|
</ModalContent>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ConnectionLostModal.propTypes = {
|
|
|
|
isOpen: PropTypes.bool.isRequired,
|
|
|
|
onModalClose: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ConnectionLostModal;
|