forked from cerc-io/snowballtools-base
* Add dialogs for transfer and delete project * Refactor confirm dialog * Handle form state of transfer and delete dialog * Handle default value of transfer dropdown * Add space in delete dialog body --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import React, { useCallback } from 'react';
|
|
import { useNavigate } from 'react-router-dom';
|
|
|
|
import { Button, Typography } from '@material-tailwind/react';
|
|
|
|
import {
|
|
DeployStep,
|
|
DeployStatus,
|
|
} from '../../../../components/projects/create/template/deploy/DeployStep';
|
|
import {
|
|
Stopwatch,
|
|
setStopWatchOffset,
|
|
} from '../../../../components/StopWatch';
|
|
import ConfirmDialog from '../../../../components/shared/ConfirmDialog';
|
|
|
|
const Deploy = () => {
|
|
const [open, setOpen] = React.useState(false);
|
|
const handleOpen = () => setOpen(!open);
|
|
const navigate = useNavigate();
|
|
|
|
const handleCancel = useCallback(() => {
|
|
navigate('/projects/create/template');
|
|
}, []);
|
|
|
|
return (
|
|
<div>
|
|
<div className="flex justify-between mb-6">
|
|
<div>
|
|
<h4>Deployment started ...</h4>
|
|
<div className="flex">
|
|
^
|
|
<Stopwatch
|
|
offsetTimestamp={setStopWatchOffset(Date.now().toString())}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<Button onClick={handleOpen} variant="outlined" size="sm">
|
|
^ Cancel
|
|
</Button>
|
|
</div>
|
|
<ConfirmDialog
|
|
dialogTitle="Cancel deployment?"
|
|
handleOpen={handleOpen}
|
|
open={open}
|
|
confirmButtonTitle="Yes, Cancel deployment"
|
|
handleConfirm={handleCancel}
|
|
color="red"
|
|
>
|
|
<Typography variant="small">
|
|
This will halt the deployment and you will have to start the process
|
|
from scratch.
|
|
</Typography>
|
|
</ConfirmDialog>
|
|
</div>
|
|
<DeployStep
|
|
title="Building"
|
|
status={DeployStatus.COMPLETE}
|
|
step="1"
|
|
processTime="72000"
|
|
/>
|
|
<DeployStep
|
|
title="Deployment summary"
|
|
status={DeployStatus.PROCESSING}
|
|
step="2"
|
|
startTime={Date.now().toString()}
|
|
/>
|
|
<DeployStep
|
|
title="Running checks"
|
|
status={DeployStatus.NOT_STARTED}
|
|
step="3"
|
|
/>
|
|
<DeployStep
|
|
title="Assigning domains"
|
|
status={DeployStatus.NOT_STARTED}
|
|
step="4"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Deploy;
|