mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-04 11:50:09 +00:00
170 lines
4.8 KiB
TypeScript
170 lines
4.8 KiB
TypeScript
import { IconSettings } from "@tabler/icons-react";
|
|
import { Form, Formik } from "formik";
|
|
import { useState } from "react";
|
|
import { Alert } from "react-bootstrap";
|
|
import Modal from "react-bootstrap/Modal";
|
|
import {
|
|
Button,
|
|
DomainNamesField,
|
|
Loading,
|
|
NginxConfigField,
|
|
SSLCertificateField,
|
|
SSLOptionsFields,
|
|
} from "src/components";
|
|
import { useDeadHost, useSetDeadHost } from "src/hooks";
|
|
import { intl } from "src/locale";
|
|
import { showSuccess } from "src/notifications";
|
|
|
|
interface Props {
|
|
id: number | "new";
|
|
onClose: () => void;
|
|
}
|
|
export function DeadHostModal({ id, onClose }: Props) {
|
|
const { data, isLoading, error } = useDeadHost(id);
|
|
const { mutate: setDeadHost } = useSetDeadHost();
|
|
const [errorMsg, setErrorMsg] = useState<string | null>(null);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const onSubmit = async (values: any, { setSubmitting }: any) => {
|
|
if (isSubmitting) return;
|
|
setIsSubmitting(true);
|
|
setErrorMsg(null);
|
|
|
|
const { ...payload } = {
|
|
id: id === "new" ? undefined : id,
|
|
...values,
|
|
};
|
|
|
|
setDeadHost(payload, {
|
|
onError: (err: any) => setErrorMsg(err.message),
|
|
onSuccess: () => {
|
|
showSuccess(intl.formatMessage({ id: "notification.dead-host-saved" }));
|
|
onClose();
|
|
},
|
|
onSettled: () => {
|
|
setIsSubmitting(false);
|
|
setSubmitting(false);
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Modal show onHide={onClose} animation={false}>
|
|
{!isLoading && error && (
|
|
<Alert variant="danger" className="m-3">
|
|
{error?.message || "Unknown error"}
|
|
</Alert>
|
|
)}
|
|
{isLoading && <Loading noLogo />}
|
|
{!isLoading && data && (
|
|
<Formik
|
|
initialValues={
|
|
{
|
|
domainNames: data?.domainNames,
|
|
certificateId: data?.certificateId,
|
|
sslForced: data?.sslForced,
|
|
advancedConfig: data?.advancedConfig,
|
|
http2Support: data?.http2Support,
|
|
hstsEnabled: data?.hstsEnabled,
|
|
hstsSubdomains: data?.hstsSubdomains,
|
|
meta: data?.meta || {},
|
|
} as any
|
|
}
|
|
onSubmit={onSubmit}
|
|
>
|
|
{() => (
|
|
<Form>
|
|
<Modal.Header closeButton>
|
|
<Modal.Title>
|
|
{intl.formatMessage({ id: data?.id ? "dead-host.edit" : "dead-host.new" })}
|
|
</Modal.Title>
|
|
</Modal.Header>
|
|
<Modal.Body className="p-0">
|
|
<Alert variant="danger" show={!!errorMsg} onClose={() => setErrorMsg(null)} dismissible>
|
|
{errorMsg}
|
|
</Alert>
|
|
|
|
<div className="card m-0 border-0">
|
|
<div className="card-header">
|
|
<ul className="nav nav-tabs card-header-tabs" data-bs-toggle="tabs">
|
|
<li className="nav-item" role="presentation">
|
|
<a
|
|
href="#tab-details"
|
|
className="nav-link active"
|
|
data-bs-toggle="tab"
|
|
aria-selected="true"
|
|
role="tab"
|
|
>
|
|
{intl.formatMessage({ id: "column.details" })}
|
|
</a>
|
|
</li>
|
|
<li className="nav-item" role="presentation">
|
|
<a
|
|
href="#tab-ssl"
|
|
className="nav-link"
|
|
data-bs-toggle="tab"
|
|
aria-selected="false"
|
|
tabIndex={-1}
|
|
role="tab"
|
|
>
|
|
{intl.formatMessage({ id: "column.ssl" })}
|
|
</a>
|
|
</li>
|
|
<li className="nav-item ms-auto" role="presentation">
|
|
<a
|
|
href="#tab-advanced"
|
|
className="nav-link"
|
|
title="Settings"
|
|
data-bs-toggle="tab"
|
|
aria-selected="false"
|
|
tabIndex={-1}
|
|
role="tab"
|
|
>
|
|
<IconSettings size={20} />
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div className="card-body">
|
|
<div className="tab-content">
|
|
<div className="tab-pane active show" id="tab-details" role="tabpanel">
|
|
<DomainNamesField isWildcardPermitted />
|
|
</div>
|
|
<div className="tab-pane" id="tab-ssl" role="tabpanel">
|
|
<SSLCertificateField
|
|
name="certificateId"
|
|
label="ssl-certificate"
|
|
allowNew
|
|
/>
|
|
<SSLOptionsFields />
|
|
</div>
|
|
<div className="tab-pane" id="tab-advanced" role="tabpanel">
|
|
<NginxConfigField />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Modal.Body>
|
|
<Modal.Footer>
|
|
<Button data-bs-dismiss="modal" onClick={onClose} disabled={isSubmitting}>
|
|
{intl.formatMessage({ id: "cancel" })}
|
|
</Button>
|
|
<Button
|
|
type="submit"
|
|
actionType="primary"
|
|
className="ms-auto"
|
|
data-bs-dismiss="modal"
|
|
isLoading={isSubmitting}
|
|
disabled={isSubmitting}
|
|
>
|
|
{intl.formatMessage({ id: "save" })}
|
|
</Button>
|
|
</Modal.Footer>
|
|
</Form>
|
|
)}
|
|
</Formik>
|
|
)}
|
|
</Modal>
|
|
);
|
|
}
|