import { useCallback } from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { messages } from '../../shared/gettext';
import { useAppContext } from '../context';
import { transitions, useHistory } from '../lib/history';
import { RoutePath } from '../lib/routes';
import { useBoolean } from '../lib/utilityHooks';
import { useSelector } from '../redux/store';
import * as AppButton from './AppButton';
import { measurements, tinyText } from './common-styles';
import ErrorView from './ErrorView';
import { Footer } from './Layout';
import { ModalAlert, ModalMessage, ModalMessageList } from './Modal';
import { ModalAlertType } from './Modal';
export default function Launch() {
const daemonAllowed = useSelector((state) => state.userInterface.daemonAllowed);
const footer = daemonAllowed === false ? : ;
return (
{messages.pgettext('launch-view', 'Connecting to Mullvad system service...')}
);
}
const StyledFooter = styled(Footer)({
backgroundColor: colors.blue,
padding: `0 14px ${measurements.viewMargin}`,
transition: 'opacity 250ms ease-in-out',
});
const StyledFooterInner = styled.div({
display: 'flex',
flexDirection: 'column',
flex: 1,
backgroundColor: colors.darkBlue,
borderRadius: '8px',
margin: 0,
padding: '16px',
});
const StyledFooterMessage = styled.span(tinyText, {
color: colors.white,
margin: `8px 0 ${measurements.buttonVerticalMargin} 0`,
});
function MacOsPermissionFooter() {
const { showLaunchDaemonSettings } = useAppContext();
const openSettings = useCallback(async () => {
await showLaunchDaemonSettings();
}, []);
return (
{messages.pgettext(
'launch-view',
'Permission for the Mullvad VPN service has been revoked. Please go to System Settings and allow Mullvad VPN under the “Allow in the Background” setting.',
)}
{messages.gettext('Go to System Settings')}
);
}
function DefaultFooter() {
const history = useHistory();
const [dialogVisible, showDialog, hideDialog] = useBoolean();
const openSendProblemReport = useCallback(() => {
hideDialog();
history.push(RoutePath.problemReport, { transition: transitions.show });
}, [hideDialog, history.push]);
return (
<>
{messages.pgettext(
'launch-view',
'Unable to contact the Mullvad system service, your connection might be unsecure. Please troubleshoot or send a problem report by clicking the Learn more button.',
)}
{messages.gettext('Learn more')}
{messages.pgettext('launch-view', 'Send problem report')}
,
{messages.gettext('Back')}
,
]}>
{messages.pgettext(
'launch-view',
'The system service component of the app hasn’t started or can’t be contacted. The system service is responsible for the security, kill switch, and the VPN tunnel. To troubleshoot please try:',
)}
{messages.pgettext('launch-view', 'Restarting your computer.')}
{messages.pgettext('launch-view', 'Reinstalling the app.')}
{messages.pgettext(
'launch-view',
'If these steps do not work please send a problem report.',
)}
>
);
}