mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-10-04 03:40:10 +00:00
240 lines
7.5 KiB
TypeScript
240 lines
7.5 KiB
TypeScript
import { Field, Form, Formik } from "formik";
|
|
import { useState } from "react";
|
|
import { Alert } from "react-bootstrap";
|
|
import Modal from "react-bootstrap/Modal";
|
|
import { Button, Loading } from "src/components";
|
|
import { useSetUser, useUser } from "src/hooks";
|
|
import { intl } from "src/locale";
|
|
import { validateEmail, validateString } from "src/modules/Validations";
|
|
import { showSuccess } from "src/notifications";
|
|
|
|
interface Props {
|
|
userId: number | "me" | "new";
|
|
onClose: () => void;
|
|
}
|
|
export function UserModal({ userId, onClose }: Props) {
|
|
const { data, isLoading, error } = useUser(userId);
|
|
const { data: currentUser, isLoading: currentIsLoading } = useUser("me");
|
|
const { mutate: setUser } = useSetUser();
|
|
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: userId === "new" ? undefined : userId,
|
|
roles: [],
|
|
...values,
|
|
};
|
|
|
|
if (data?.id === currentUser?.id) {
|
|
// Prevent user from locking themselves out
|
|
delete payload.isDisabled;
|
|
delete payload.roles;
|
|
} else if (payload.isAdmin) {
|
|
payload.roles = ["admin"];
|
|
}
|
|
|
|
// this isn't a real field, just for the form
|
|
delete payload.isAdmin;
|
|
|
|
setUser(payload, {
|
|
onError: (err: any) => setErrorMsg(err.message),
|
|
onSuccess: () => {
|
|
showSuccess(intl.formatMessage({ id: "notification.user-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 || currentIsLoading) && <Loading noLogo />}
|
|
{!isLoading && !currentIsLoading && data && currentUser && (
|
|
<Formik
|
|
initialValues={
|
|
{
|
|
name: data?.name,
|
|
nickname: data?.nickname,
|
|
email: data?.email,
|
|
isAdmin: data?.roles?.includes("admin"),
|
|
isDisabled: data?.isDisabled,
|
|
} as any
|
|
}
|
|
onSubmit={onSubmit}
|
|
>
|
|
{() => (
|
|
<Form>
|
|
<Modal.Header closeButton>
|
|
<Modal.Title>
|
|
{intl.formatMessage({ id: data?.id ? "user.edit" : "user.new" })}
|
|
</Modal.Title>
|
|
</Modal.Header>
|
|
<Modal.Body>
|
|
<Alert variant="danger" show={!!errorMsg} onClose={() => setErrorMsg(null)} dismissible>
|
|
{errorMsg}
|
|
</Alert>
|
|
<div className="row">
|
|
<div className="col-lg-6">
|
|
<div className="mb-3">
|
|
<Field name="name" validate={validateString(1, 50)}>
|
|
{({ field, form }: any) => (
|
|
<div className="form-floating mb-3">
|
|
<input
|
|
id="name"
|
|
className={`form-control ${form.errors.name && form.touched.name ? "is-invalid" : ""}`}
|
|
placeholder={intl.formatMessage({ id: "user.full-name" })}
|
|
{...field}
|
|
/>
|
|
<label htmlFor="name">
|
|
{intl.formatMessage({ id: "user.full-name" })}
|
|
</label>
|
|
{form.errors.name ? (
|
|
<div className="invalid-feedback">
|
|
{form.errors.name && form.touched.name
|
|
? form.errors.name
|
|
: null}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)}
|
|
</Field>
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-6">
|
|
<div className="mb-3">
|
|
<Field name="nickname" validate={validateString(1, 30)}>
|
|
{({ field, form }: any) => (
|
|
<div className="form-floating mb-3">
|
|
<input
|
|
id="nickname"
|
|
className={`form-control ${form.errors.nickname && form.touched.nickname ? "is-invalid" : ""}`}
|
|
placeholder={intl.formatMessage({ id: "user.nickname" })}
|
|
{...field}
|
|
/>
|
|
<label htmlFor="nickname">
|
|
{intl.formatMessage({ id: "user.nickname" })}
|
|
</label>
|
|
{form.errors.nickname ? (
|
|
<div className="invalid-feedback">
|
|
{form.errors.nickname && form.touched.nickname
|
|
? form.errors.nickname
|
|
: null}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)}
|
|
</Field>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mb-3">
|
|
<Field name="email" validate={validateEmail()}>
|
|
{({ field, form }: any) => (
|
|
<div className="form-floating mb-3">
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
className={`form-control ${form.errors.email && form.touched.email ? "is-invalid" : ""}`}
|
|
placeholder={intl.formatMessage({ id: "email-address" })}
|
|
{...field}
|
|
/>
|
|
<label htmlFor="email">
|
|
{intl.formatMessage({ id: "email-address" })}
|
|
</label>
|
|
{form.errors.email ? (
|
|
<div className="invalid-feedback">
|
|
{form.errors.email && form.touched.email
|
|
? form.errors.email
|
|
: null}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)}
|
|
</Field>
|
|
</div>
|
|
{currentUser && data && currentUser?.id !== data?.id ? (
|
|
<div className="my-3">
|
|
<h3 className="py-2">{intl.formatMessage({ id: "user.flags.title" })}</h3>
|
|
<div className="divide-y">
|
|
<div>
|
|
<label className="row" htmlFor="isAdmin">
|
|
<span className="col">
|
|
{intl.formatMessage({ id: "role.admin" })}
|
|
</span>
|
|
<span className="col-auto">
|
|
<Field name="isAdmin" type="checkbox">
|
|
{({ field }: any) => (
|
|
<label className="form-check form-check-single form-switch">
|
|
<input
|
|
{...field}
|
|
id="isAdmin"
|
|
className="form-check-input"
|
|
type="checkbox"
|
|
/>
|
|
</label>
|
|
)}
|
|
</Field>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<label className="row" htmlFor="isDisabled">
|
|
<span className="col">
|
|
{intl.formatMessage({ id: "disabled" })}
|
|
</span>
|
|
<span className="col-auto">
|
|
<Field name="isDisabled" type="checkbox">
|
|
{({ field }: any) => (
|
|
<label className="form-check form-check-single form-switch">
|
|
<input
|
|
{...field}
|
|
id="isDisabled"
|
|
className="form-check-input"
|
|
type="checkbox"
|
|
/>
|
|
</label>
|
|
)}
|
|
</Field>
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
) : null}
|
|
</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>
|
|
);
|
|
}
|