mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-02-02 00:42:52 +00:00
Access list modal polish
This commit is contained in:
105
frontend/src/components/Form/BasicAuthFields.tsx
Normal file
105
frontend/src/components/Form/BasicAuthFields.tsx
Normal file
@@ -0,0 +1,105 @@
|
||||
import { IconX } from "@tabler/icons-react";
|
||||
import { useFormikContext } from "formik";
|
||||
import { useState } from "react";
|
||||
import type { AccessListItem } from "src/api/backend";
|
||||
import { T } from "src/locale";
|
||||
|
||||
interface Props {
|
||||
initialValues: AccessListItem[];
|
||||
name?: string;
|
||||
}
|
||||
export function BasicAuthFields({ initialValues, name = "items" }: Props) {
|
||||
const [values, setValues] = useState<AccessListItem[]>(initialValues || []);
|
||||
const { setFieldValue } = useFormikContext();
|
||||
|
||||
const blankItem: AccessListItem = { username: "", password: "" };
|
||||
|
||||
if (values?.length === 0) {
|
||||
setValues([blankItem]);
|
||||
}
|
||||
|
||||
const handleAdd = () => {
|
||||
setValues([...values, blankItem]);
|
||||
};
|
||||
|
||||
const handleRemove = (idx: number) => {
|
||||
const newValues = values.filter((_: AccessListItem, i: number) => i !== idx);
|
||||
if (newValues.length === 0) {
|
||||
newValues.push(blankItem);
|
||||
}
|
||||
setValues(newValues);
|
||||
setFormField(newValues);
|
||||
};
|
||||
|
||||
const handleChange = (idx: number, field: string, fieldValue: string) => {
|
||||
const newValues = values.map((v: AccessListItem, i: number) => (i === idx ? { ...v, [field]: fieldValue } : v));
|
||||
setValues(newValues);
|
||||
setFormField(newValues);
|
||||
};
|
||||
|
||||
const setFormField = (newValues: AccessListItem[]) => {
|
||||
const filtered = newValues.filter((v: AccessListItem) => v?.username?.trim() !== "");
|
||||
setFieldValue(name, filtered);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="row">
|
||||
<div className="col-6">
|
||||
<label className="form-label" htmlFor="...">
|
||||
<T id="username" />
|
||||
</label>
|
||||
</div>
|
||||
<div className="col-6">
|
||||
<label className="form-label" htmlFor="...">
|
||||
<T id="password" />
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
{values.map((item: AccessListItem, idx: number) => (
|
||||
<div className="row mb-3" key={idx}>
|
||||
<div className="col-6">
|
||||
<input
|
||||
type="text"
|
||||
autoComplete="off"
|
||||
className="form-control input-sm"
|
||||
value={item.username}
|
||||
onChange={(e) => handleChange(idx, "username", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div className="col-5">
|
||||
<input
|
||||
type="password"
|
||||
autoComplete="off"
|
||||
className="form-control"
|
||||
value={item.password}
|
||||
placeholder={
|
||||
initialValues.filter((iv: AccessListItem) => iv.username === item.username).length > 0
|
||||
? "••••••••"
|
||||
: ""
|
||||
}
|
||||
onChange={(e) => handleChange(idx, "password", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div className="col-1">
|
||||
<a
|
||||
role="button"
|
||||
className="btn btn-ghost btn-danger p-0"
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
handleRemove(idx);
|
||||
}}
|
||||
>
|
||||
<IconX size={16} />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
<div>
|
||||
<button type="button" className="btn btn-sm" onClick={handleAdd}>
|
||||
<T id="action.add" />
|
||||
</button>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user