mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-05-09 04:11:24 -05:00
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { styled } from '@mui/material/styles';
|
|
import Dialog from '@mui/material/Dialog';
|
|
import DialogContent from '@mui/material/DialogContent';
|
|
import DialogTitle from '@mui/material/DialogTitle';
|
|
import IconButton from '@mui/material/IconButton';
|
|
import CloseIcon from '@mui/icons-material/Close';
|
|
import Typography from '@mui/material/Typography';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
import { KnownHostForm } from '@app/forms';
|
|
|
|
import './KnownHostDialog.css';
|
|
|
|
const PREFIX = 'KnownHostDialog';
|
|
|
|
const classes = {
|
|
root: `${PREFIX}-root`
|
|
};
|
|
|
|
const StyledDialog = styled(Dialog)(({ theme }) => ({
|
|
[`&.${classes.root}`]: {
|
|
'& .dialog-title__wrapper': {
|
|
borderColor: theme.palette.grey[300]
|
|
}
|
|
}
|
|
}));
|
|
|
|
const KnownHostDialog = ({ handleClose, onRemove, onSubmit, isOpen, host }: any) => {
|
|
const { t } = useTranslation();
|
|
|
|
const mode = host ? 'edit' : 'add';
|
|
|
|
const handleOnClose = () => {
|
|
if (handleClose) {
|
|
handleClose();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<StyledDialog className={'KnownHostDialog ' + classes.root} onClose={handleOnClose} open={isOpen}>
|
|
<DialogTitle className='dialog-title'>
|
|
<div className='dialog-title__wrapper'>
|
|
<Typography variant='h2'>{ t('KnownHostDialog.title', { mode }) }</Typography>
|
|
|
|
{handleClose ? (
|
|
<IconButton onClick={handleClose} size="large">
|
|
<CloseIcon fontSize='large' />
|
|
</IconButton>
|
|
) : null}
|
|
</div>
|
|
</DialogTitle>
|
|
<DialogContent className='dialog-content'>
|
|
<Typography className='dialog-content__subtitle' variant='subtitle1'>
|
|
{ t('KnownHostDialog.subtitle') }
|
|
</Typography>
|
|
<KnownHostForm onRemove={onRemove} onSubmit={onSubmit} host={host}></KnownHostForm>
|
|
</DialogContent>
|
|
</StyledDialog>
|
|
);
|
|
};
|
|
|
|
export default KnownHostDialog;
|