mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 04:21:52 +00:00
91545e409e
Co-authored-by: Pablo Lara <larabjj@gmail.com>
96 lines
2.4 KiB
TypeScript
96 lines
2.4 KiB
TypeScript
"use client";
|
|
|
|
import { Dispatch, SetStateAction, useEffect } from "react";
|
|
import { useFormState, useFormStatus } from "react-dom";
|
|
|
|
import { updateTenantName } from "@/actions/users/tenants";
|
|
import { SaveIcon } from "@/components/icons";
|
|
import { useToast } from "@/components/ui";
|
|
import { CustomButton, CustomServerInput } from "@/components/ui/custom";
|
|
|
|
const SubmitButton = () => {
|
|
const { pending } = useFormStatus();
|
|
|
|
return (
|
|
<CustomButton
|
|
type="submit"
|
|
ariaLabel="Save"
|
|
className="w-full"
|
|
variant="solid"
|
|
color="action"
|
|
size="lg"
|
|
isLoading={pending}
|
|
startContent={!pending && <SaveIcon size={24} />}
|
|
>
|
|
{pending ? <>Loading</> : <span>Save</span>}
|
|
</CustomButton>
|
|
);
|
|
};
|
|
|
|
export const EditTenantForm = ({
|
|
tenantId,
|
|
tenantName,
|
|
setIsOpen,
|
|
}: {
|
|
tenantId: string;
|
|
tenantName?: string;
|
|
setIsOpen: Dispatch<SetStateAction<boolean>>;
|
|
}) => {
|
|
const [state, formAction] = useFormState(updateTenantName, null);
|
|
const { toast } = useToast();
|
|
|
|
useEffect(() => {
|
|
if (state?.success) {
|
|
toast({
|
|
title: "Changed successfully",
|
|
description: state.success,
|
|
});
|
|
setIsOpen(false);
|
|
} else if (state?.errors?.general) {
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Oops! Something went wrong",
|
|
description: state.errors.general,
|
|
});
|
|
}
|
|
}, [state, toast, setIsOpen]);
|
|
|
|
return (
|
|
<form action={formAction} className="flex flex-col space-y-4">
|
|
<div className="text-md">
|
|
Current name: <span className="font-bold">{tenantName}</span>
|
|
</div>
|
|
|
|
<CustomServerInput
|
|
name="name"
|
|
label="Organization name"
|
|
placeholder="Enter the new name"
|
|
labelPlacement="outside"
|
|
variant="bordered"
|
|
isRequired={true}
|
|
isInvalid={!!state?.errors?.name}
|
|
errorMessage={state?.errors?.name}
|
|
/>
|
|
|
|
{/* Hidden inputs for Server Action */}
|
|
<input type="hidden" name="tenantId" value={tenantId} />
|
|
<input type="hidden" name="currentName" value={tenantName || ""} />
|
|
|
|
<div className="flex w-full justify-center space-x-6">
|
|
<CustomButton
|
|
type="button"
|
|
ariaLabel="Cancel"
|
|
className="w-full bg-transparent"
|
|
variant="faded"
|
|
size="lg"
|
|
onPress={() => setIsOpen(false)}
|
|
>
|
|
<span>Cancel</span>
|
|
</CustomButton>
|
|
|
|
<SubmitButton />
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|