mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
Support unmodified meta objects in frontend api
This commit is contained in:
parent
29a4ac42d0
commit
cd6b772e72
@ -22,9 +22,9 @@ function buildAuthHeader(): Record<string, string> | undefined {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildBody(data?: Record<string, any>) {
|
function buildBody(data?: Record<string, any>, skipDecamelize = false) {
|
||||||
if (data) {
|
if (data) {
|
||||||
return JSON.stringify(decamelizeKeys(data));
|
return JSON.stringify(skipDecamelize ? data : decamelizeKeys(data));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,10 +57,12 @@ export async function get(
|
|||||||
interface PostArgs {
|
interface PostArgs {
|
||||||
url: string;
|
url: string;
|
||||||
data?: any;
|
data?: any;
|
||||||
|
skipCamelize?: boolean;
|
||||||
|
skipDecamelize?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function post(
|
export async function post(
|
||||||
{ url, data }: PostArgs,
|
{ url, data, skipCamelize, skipDecamelize }: PostArgs,
|
||||||
abortController?: AbortController,
|
abortController?: AbortController,
|
||||||
) {
|
) {
|
||||||
const apiUrl = buildUrl({ url });
|
const apiUrl = buildUrl({ url });
|
||||||
@ -70,17 +72,19 @@ export async function post(
|
|||||||
[contentTypeHeader]: "application/json",
|
[contentTypeHeader]: "application/json",
|
||||||
};
|
};
|
||||||
const signal = abortController?.signal;
|
const signal = abortController?.signal;
|
||||||
const body = buildBody(data);
|
const body = buildBody(data, skipDecamelize);
|
||||||
const response = await fetch(apiUrl, { method, headers, body, signal });
|
const response = await fetch(apiUrl, { method, headers, body, signal });
|
||||||
return processResponse(response);
|
return processResponse(response, skipCamelize);
|
||||||
}
|
}
|
||||||
|
|
||||||
interface PutArgs {
|
interface PutArgs {
|
||||||
url: string;
|
url: string;
|
||||||
data?: any;
|
data?: any;
|
||||||
|
skipCamelize?: boolean;
|
||||||
|
skipDecamelize?: boolean;
|
||||||
}
|
}
|
||||||
export async function put(
|
export async function put(
|
||||||
{ url, data }: PutArgs,
|
{ url, data, skipCamelize, skipDecamelize }: PutArgs,
|
||||||
abortController?: AbortController,
|
abortController?: AbortController,
|
||||||
) {
|
) {
|
||||||
const apiUrl = buildUrl({ url });
|
const apiUrl = buildUrl({ url });
|
||||||
@ -90,7 +94,7 @@ export async function put(
|
|||||||
[contentTypeHeader]: "application/json",
|
[contentTypeHeader]: "application/json",
|
||||||
};
|
};
|
||||||
const signal = abortController?.signal;
|
const signal = abortController?.signal;
|
||||||
const body = buildBody(data);
|
const body = buildBody(data, skipDecamelize);
|
||||||
const response = await fetch(apiUrl, { method, headers, body, signal });
|
const response = await fetch(apiUrl, { method, headers, body, signal });
|
||||||
return processResponse(response);
|
return processResponse(response, skipCamelize);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { decamelizeKeys } from "humps";
|
||||||
|
|
||||||
import * as api from "./base";
|
import * as api from "./base";
|
||||||
import { DNSProvider } from "./models";
|
import { DNSProvider } from "./models";
|
||||||
|
|
||||||
@ -5,10 +7,19 @@ export async function createDNSProvider(
|
|||||||
data: DNSProvider,
|
data: DNSProvider,
|
||||||
abortController?: AbortController,
|
abortController?: AbortController,
|
||||||
): Promise<DNSProvider> {
|
): Promise<DNSProvider> {
|
||||||
|
// Because the meta property of the data should not be decamelized,
|
||||||
|
// we're going to decamelize the rest here instead of in base.ts
|
||||||
|
let dcData: any = decamelizeKeys(data);
|
||||||
|
if (typeof data.meta !== "undefined") {
|
||||||
|
dcData.meta = data.meta;
|
||||||
|
}
|
||||||
|
|
||||||
const { result } = await api.post(
|
const { result } = await api.post(
|
||||||
{
|
{
|
||||||
url: "/dns-providers",
|
url: "/dns-providers",
|
||||||
data,
|
data: dcData,
|
||||||
|
skipCamelize: true,
|
||||||
|
skipDecamelize: true,
|
||||||
},
|
},
|
||||||
abortController,
|
abortController,
|
||||||
);
|
);
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { decamelizeKeys } from "humps";
|
||||||
|
|
||||||
import * as api from "./base";
|
import * as api from "./base";
|
||||||
import { DNSProvider } from "./models";
|
import { DNSProvider } from "./models";
|
||||||
|
|
||||||
@ -9,9 +11,18 @@ export async function setDNSProvider(
|
|||||||
delete data.id;
|
delete data.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Because the meta property of the data should not be decamelized,
|
||||||
|
// we're going to decamelize the rest here instead of in base.ts
|
||||||
|
let dcData: any = decamelizeKeys(data);
|
||||||
|
if (typeof data.meta !== "undefined") {
|
||||||
|
dcData.meta = data.meta;
|
||||||
|
}
|
||||||
|
|
||||||
const { result } = await api.put({
|
const { result } = await api.put({
|
||||||
url: `/dns-providers/${id}`,
|
url: `/dns-providers/${id}`,
|
||||||
data,
|
data: dcData,
|
||||||
|
skipCamelize: true,
|
||||||
|
skipDecamelize: true,
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1,284 +0,0 @@
|
|||||||
import { useEffect, useState } from "react";
|
|
||||||
|
|
||||||
import {
|
|
||||||
Button,
|
|
||||||
Checkbox,
|
|
||||||
FormControl,
|
|
||||||
FormErrorMessage,
|
|
||||||
FormLabel,
|
|
||||||
Input,
|
|
||||||
Modal,
|
|
||||||
ModalOverlay,
|
|
||||||
ModalContent,
|
|
||||||
ModalHeader,
|
|
||||||
ModalCloseButton,
|
|
||||||
ModalBody,
|
|
||||||
ModalFooter,
|
|
||||||
Select,
|
|
||||||
Stack,
|
|
||||||
useToast,
|
|
||||||
} from "@chakra-ui/react";
|
|
||||||
import {
|
|
||||||
DNSProvider,
|
|
||||||
DNSProvidersAcmesh,
|
|
||||||
DNSProvidersAcmeshProperty,
|
|
||||||
} from "api/npm";
|
|
||||||
import { PrettyButton } from "components";
|
|
||||||
import { Formik, Form, Field } from "formik";
|
|
||||||
import { useSetDNSProvider, useDNSProvidersAcmesh } from "hooks";
|
|
||||||
import { intl } from "locale";
|
|
||||||
import { validateString } from "modules/Validations";
|
|
||||||
|
|
||||||
interface DNSProviderCreateModalProps {
|
|
||||||
isOpen: boolean;
|
|
||||||
onClose: () => void;
|
|
||||||
}
|
|
||||||
function DNSProviderCreateModal({
|
|
||||||
isOpen,
|
|
||||||
onClose,
|
|
||||||
}: DNSProviderCreateModalProps) {
|
|
||||||
const toast = useToast();
|
|
||||||
const { mutate: setDNSProvider } = useSetDNSProvider();
|
|
||||||
const {
|
|
||||||
isLoading: acmeshIsLoading,
|
|
||||||
// isError: acmeshIsError,
|
|
||||||
// error: acmeshError,
|
|
||||||
data: acmeshDataResp,
|
|
||||||
} = useDNSProvidersAcmesh();
|
|
||||||
|
|
||||||
const [acmeshData, setAcmeshData] = useState([] as DNSProvidersAcmesh[]);
|
|
||||||
const [acmeshItem, setAcmeshItem] = useState("");
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
setAcmeshData(acmeshDataResp || []);
|
|
||||||
}, [acmeshDataResp]);
|
|
||||||
|
|
||||||
const onSubmit = async (
|
|
||||||
payload: DNSProvider,
|
|
||||||
{ setErrors, setSubmitting }: any,
|
|
||||||
) => {
|
|
||||||
// TODO: filter out the meta object and only include items that apply to the acmesh provider selected
|
|
||||||
|
|
||||||
const showErr = (msg: string) => {
|
|
||||||
toast({
|
|
||||||
description: intl.formatMessage({
|
|
||||||
id: `error.${msg}`,
|
|
||||||
}),
|
|
||||||
status: "error",
|
|
||||||
position: "top",
|
|
||||||
duration: 3000,
|
|
||||||
isClosable: true,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
setDNSProvider(payload, {
|
|
||||||
onError: (err: any) => {
|
|
||||||
if (err.message === "ca-bundle-does-not-exist") {
|
|
||||||
setErrors({
|
|
||||||
caBundle: intl.formatMessage({
|
|
||||||
id: `error.${err.message}`,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
showErr(err.message);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onSuccess: () => onClose(),
|
|
||||||
onSettled: () => setSubmitting(false),
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const getAcmeshItem = (name: string): DNSProvidersAcmesh | undefined => {
|
|
||||||
return acmeshData.find((item) => item.title === name);
|
|
||||||
};
|
|
||||||
|
|
||||||
const fullItem = getAcmeshItem(acmeshItem);
|
|
||||||
const itemProperties = fullItem?.properties;
|
|
||||||
|
|
||||||
const renderInputType = (
|
|
||||||
field: any,
|
|
||||||
fieldName: string,
|
|
||||||
f: DNSProvidersAcmeshProperty,
|
|
||||||
value: any,
|
|
||||||
) => {
|
|
||||||
if (f.type === "bool") {
|
|
||||||
return (
|
|
||||||
<Checkbox {...field} size="md" colorScheme="orange" isChecked={value}>
|
|
||||||
{f.title}
|
|
||||||
</Checkbox>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
let type = "text";
|
|
||||||
let props: any = {};
|
|
||||||
if (fullItem?.required.indexOf(fieldName) !== -1) {
|
|
||||||
// This is required
|
|
||||||
props.required = true;
|
|
||||||
}
|
|
||||||
if (f.type === "string") {
|
|
||||||
props.minLength = f.minLength || null;
|
|
||||||
props.maxLength = f.maxLength || null;
|
|
||||||
props.pattern = f.pattern || null;
|
|
||||||
}
|
|
||||||
if (f.type === "integer") {
|
|
||||||
type = "number";
|
|
||||||
props.min = f.minimum || null;
|
|
||||||
props.max = f.maximum || null;
|
|
||||||
}
|
|
||||||
if (f.isSecret) {
|
|
||||||
type = "password";
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id={fieldName}
|
|
||||||
type={type}
|
|
||||||
defaultValue={value}
|
|
||||||
{...props}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Modal isOpen={isOpen} onClose={onClose} closeOnOverlayClick={false}>
|
|
||||||
<ModalOverlay />
|
|
||||||
<ModalContent>
|
|
||||||
{acmeshIsLoading ? (
|
|
||||||
"loading"
|
|
||||||
) : (
|
|
||||||
<Formik
|
|
||||||
initialValues={
|
|
||||||
{
|
|
||||||
acmeshName: "",
|
|
||||||
name: "",
|
|
||||||
dnsSleep: 0,
|
|
||||||
meta: {},
|
|
||||||
} as DNSProvider
|
|
||||||
}
|
|
||||||
onSubmit={onSubmit}>
|
|
||||||
{({ isSubmitting, handleChange, values, setValues }) => (
|
|
||||||
<Form>
|
|
||||||
<ModalHeader>
|
|
||||||
{intl.formatMessage({ id: "dns-provider.create" })}
|
|
||||||
</ModalHeader>
|
|
||||||
<ModalCloseButton />
|
|
||||||
<ModalBody>
|
|
||||||
<Stack spacing={4}>
|
|
||||||
<Field name="name" validate={validateString(1, 100)}>
|
|
||||||
{({ field, form }: any) => (
|
|
||||||
<FormControl
|
|
||||||
isRequired
|
|
||||||
isInvalid={form.errors.name && form.touched.name}>
|
|
||||||
<FormLabel htmlFor="name">
|
|
||||||
{intl.formatMessage({
|
|
||||||
id: "dns-provider.name",
|
|
||||||
})}
|
|
||||||
</FormLabel>
|
|
||||||
<Input
|
|
||||||
{...field}
|
|
||||||
id="name"
|
|
||||||
placeholder={intl.formatMessage({
|
|
||||||
id: "dns-provider.name",
|
|
||||||
})}
|
|
||||||
/>
|
|
||||||
<FormErrorMessage>
|
|
||||||
{form.errors.name}
|
|
||||||
</FormErrorMessage>
|
|
||||||
</FormControl>
|
|
||||||
)}
|
|
||||||
</Field>
|
|
||||||
<Field name="acmeshName">
|
|
||||||
{({ field, form }: any) => (
|
|
||||||
<FormControl
|
|
||||||
isRequired
|
|
||||||
isInvalid={
|
|
||||||
form.errors.acmeshName && form.touched.acmeshName
|
|
||||||
}>
|
|
||||||
<FormLabel htmlFor="acmeshName">
|
|
||||||
{intl.formatMessage({
|
|
||||||
id: "dns-provider.acmesh-name",
|
|
||||||
})}
|
|
||||||
</FormLabel>
|
|
||||||
<Select
|
|
||||||
{...field}
|
|
||||||
id="acmeshName"
|
|
||||||
onChange={(e: any) => {
|
|
||||||
handleChange(e);
|
|
||||||
setAcmeshItem(e.target.value);
|
|
||||||
}}>
|
|
||||||
<option value="" />
|
|
||||||
{acmeshData.map((item: DNSProvidersAcmesh) => {
|
|
||||||
return (
|
|
||||||
<option key={item.title} value={item.title}>
|
|
||||||
{intl.formatMessage({
|
|
||||||
id: `acmesh.${item.title}`,
|
|
||||||
})}
|
|
||||||
</option>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</Select>
|
|
||||||
<FormErrorMessage>
|
|
||||||
{form.errors.acmeshName}
|
|
||||||
</FormErrorMessage>
|
|
||||||
</FormControl>
|
|
||||||
)}
|
|
||||||
</Field>
|
|
||||||
{acmeshItem !== "" ? <hr /> : null}
|
|
||||||
{itemProperties
|
|
||||||
? Object.keys(itemProperties).map((fieldName, _) => {
|
|
||||||
const f = itemProperties[fieldName];
|
|
||||||
const name = `meta[${fieldName}]`;
|
|
||||||
return (
|
|
||||||
<Field
|
|
||||||
name={fieldName}
|
|
||||||
type={
|
|
||||||
f.type === "boolean" ? "checkbox" : undefined
|
|
||||||
}>
|
|
||||||
{({ field, form }: any) => (
|
|
||||||
<FormControl
|
|
||||||
isRequired={f.isRequired}
|
|
||||||
isInvalid={
|
|
||||||
form.errors[name] && form.touched[name]
|
|
||||||
}>
|
|
||||||
{f.type !== "bool" ? (
|
|
||||||
<FormLabel htmlFor={name}>
|
|
||||||
{f.title}
|
|
||||||
{/* todo: locale for this*/}
|
|
||||||
</FormLabel>
|
|
||||||
) : null}
|
|
||||||
{renderInputType(
|
|
||||||
field,
|
|
||||||
fieldName,
|
|
||||||
f,
|
|
||||||
values.meta[f.title],
|
|
||||||
)}
|
|
||||||
<FormErrorMessage>
|
|
||||||
{form.errors[name]}
|
|
||||||
</FormErrorMessage>
|
|
||||||
</FormControl>
|
|
||||||
)}
|
|
||||||
</Field>
|
|
||||||
);
|
|
||||||
})
|
|
||||||
: null}
|
|
||||||
</Stack>
|
|
||||||
</ModalBody>
|
|
||||||
<ModalFooter>
|
|
||||||
<PrettyButton mr={3} isLoading={isSubmitting}>
|
|
||||||
{intl.formatMessage({ id: "form.save" })}
|
|
||||||
</PrettyButton>
|
|
||||||
<Button onClick={onClose} isLoading={isSubmitting}>
|
|
||||||
{intl.formatMessage({ id: "form.cancel" })}
|
|
||||||
</Button>
|
|
||||||
</ModalFooter>
|
|
||||||
</Form>
|
|
||||||
)}
|
|
||||||
</Formik>
|
|
||||||
)}
|
|
||||||
</ModalContent>
|
|
||||||
</Modal>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export { DNSProviderCreateModal };
|
|
Loading…
Reference in New Issue
Block a user