* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
169 lines
5.2 KiB
TypeScript
169 lines
5.2 KiB
TypeScript
import React from 'react';
|
|
// @ts-ignore
|
|
import slide from 'App/svg/cheers.svg';
|
|
import { Loader } from 'UI';
|
|
import { Button } from 'antd';
|
|
import { getHighest } from 'App/constants/zindex';
|
|
import Category from 'Components/Header/HealthStatus/ServiceCategory';
|
|
import SubserviceHealth from 'Components/Header/HealthStatus/SubserviceHealth/SubserviceHealth';
|
|
import Footer from './Footer';
|
|
import { IServiceStats } from '../HealthStatus';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { RefreshCcw } from 'lucide-react';
|
|
|
|
function HealthModal({
|
|
getHealth,
|
|
isLoading,
|
|
healthResponse,
|
|
setShowModal,
|
|
setPassed,
|
|
}: {
|
|
getHealth: () => void;
|
|
isLoading: boolean;
|
|
healthResponse: {
|
|
overallHealth: boolean;
|
|
healthMap: Record<string, IServiceStats>;
|
|
};
|
|
setShowModal: (isOpen: boolean) => void;
|
|
setPassed?: () => void;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [selectedService, setSelectedService] = React.useState('');
|
|
|
|
React.useEffect(() => {
|
|
if (!healthResponse?.overallHealth) {
|
|
if (healthResponse?.healthMap) {
|
|
setSelectedService(
|
|
Object.keys(healthResponse.healthMap).filter(
|
|
(s) => !healthResponse.healthMap[s].healthOk,
|
|
)[0],
|
|
);
|
|
}
|
|
}
|
|
}, [healthResponse]);
|
|
|
|
const handleClose = () => {
|
|
setShowModal(false);
|
|
};
|
|
|
|
const isSetup = document.location.pathname.includes('/signup');
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
width: '100vw',
|
|
height: '100vh',
|
|
position: 'fixed',
|
|
background: 'rgba(0, 0, 0, 0.5)',
|
|
top: 0,
|
|
left: 0,
|
|
zIndex: getHighest(),
|
|
}}
|
|
onClick={handleClose}
|
|
>
|
|
<div
|
|
style={{
|
|
width: 640,
|
|
position: 'absolute',
|
|
top: '50%',
|
|
left: '50%',
|
|
height: isSetup ? '600px' : '535px',
|
|
transform: 'translate(-50%, -50%)',
|
|
}}
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="flex flex-col bg-white rounded border border-figmaColors-divider"
|
|
>
|
|
<div className="flex w-full justify-between items-center p-4 border-b border-figmaColors-divider">
|
|
<div className="text-xl font-semibold">
|
|
{t('Installation Status')}
|
|
</div>
|
|
<Button
|
|
disabled={isLoading}
|
|
onClick={getHealth}
|
|
icon={<RefreshCcw size={18} />}
|
|
type={'text'}
|
|
className={'text-main'}
|
|
>
|
|
{t('Recheck')}
|
|
</Button>
|
|
</div>
|
|
|
|
<Loader loading={isLoading}>
|
|
{healthResponse ? (
|
|
<>
|
|
<div className="flex w-full">
|
|
<div className="flex flex-col h-full" style={{ flex: 1 }}>
|
|
{isLoading
|
|
? null
|
|
: Object.keys(healthResponse.healthMap).map((service) => (
|
|
<React.Fragment key={service}>
|
|
<Category
|
|
onClick={() => setSelectedService(service)}
|
|
healthOk={
|
|
healthResponse.healthMap[service].healthOk
|
|
}
|
|
name={healthResponse.healthMap[service].name}
|
|
isSelectable
|
|
isSelected={selectedService === service}
|
|
/>
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
<div
|
|
className="bg-gray-lightest border-l w-fit border-figmaColors-divider overflow-y-scroll relative"
|
|
style={{ flex: 2, height: 420 }}
|
|
>
|
|
{isLoading ? null : selectedService ? (
|
|
<ServiceStatus
|
|
service={healthResponse.healthMap[selectedService]}
|
|
/>
|
|
) : (
|
|
<img src={slide} width={392} />
|
|
)}
|
|
</div>
|
|
</div>
|
|
{isSetup ? (
|
|
<div className="p-4 mt-auto w-full border-t border-figmaColors-divider">
|
|
<Button
|
|
disabled={!healthResponse?.overallHealth}
|
|
loading={isLoading}
|
|
type="primary"
|
|
className="ml-auto"
|
|
onClick={() => setPassed?.()}
|
|
>
|
|
{t('Create Account')}
|
|
</Button>
|
|
</div>
|
|
) : null}
|
|
</>
|
|
) : (
|
|
<div className="w-full h-full flex items-center justify-center">
|
|
<div>{t('Error while fetching data...')}</div>
|
|
</div>
|
|
)}
|
|
</Loader>
|
|
<Footer isSetup={isSetup} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ServiceStatus({ service }: { service: Record<string, any> }) {
|
|
const { subservices } = service;
|
|
return (
|
|
<div className="p-4">
|
|
<div className="border rounded border-light-gray">
|
|
{Object.keys(subservices).map((subservice: string) => (
|
|
<React.Fragment key={subservice}>
|
|
<SubserviceHealth
|
|
name={subservice}
|
|
subservice={subservices[subservice]}
|
|
/>
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default HealthModal;
|