59 lines
2.1 KiB
TypeScript
59 lines
2.1 KiB
TypeScript
"use client";
|
|
|
|
import { FC, ReactNode } from "react";
|
|
import { BillingLocation } from "../lib/db-types";
|
|
import { deleteLocationById } from "../lib/actions/locationActions";
|
|
import { useFormState } from "react-dom";
|
|
import { gotoUrl } from "../lib/actions/navigationActions";
|
|
import Link from "next/link";
|
|
import { useTranslations } from "next-intl";
|
|
|
|
export interface LocationDeleteFormProps {
|
|
/** location which should be deleted */
|
|
location: BillingLocation
|
|
}
|
|
|
|
export const LocationDeleteForm:FC<LocationDeleteFormProps> = ({ location }) =>
|
|
{
|
|
const handleAction = deleteLocationById.bind(null, location._id, location.yearMonth);
|
|
const [ state, dispatch ] = useFormState(handleAction, null);
|
|
const t = useTranslations("location-delete-form");
|
|
|
|
|
|
const handleCancel = () => {
|
|
gotoUrl(`/location/${location._id}/edit/`);
|
|
};
|
|
|
|
return(
|
|
<div className="card card-compact card-bordered min-w-[20em] max-w-[90em] bg-base-100 shadow-s my-1">
|
|
<div className="card-body">
|
|
<form action={dispatch}>
|
|
<p className="py-6 px-6">
|
|
{
|
|
t.rich("text", {
|
|
name:location.name,
|
|
strong: (chunks:ReactNode) => `<strong>${chunks}</strong>`,
|
|
})
|
|
}
|
|
</p>
|
|
<div className="pt-4 text-center">
|
|
<button className="btn btn-primary w-[5.5em]">{t("confirm-button")}</button>
|
|
<Link className="btn btn-neutral w-[5.5em] ml-3" href={`/location/${location._id}/edit/`}>{t("cancel-button")}</Link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
|
|
export const LocationDeleteFormSkeleton:FC = () =>
|
|
<div className="card card-compact card-bordered min-w-[20em] max-w-[90em] bg-base-100 shadow-s my-1">
|
|
<div className="card-body">
|
|
<p className="py-6 px-6"></p>
|
|
<div className="pt-4 text-center">
|
|
<div className="btn skeleton w-[5.5em]"></div>
|
|
<div className="btn ml-3 skeleton w-[5.5em]"></div>
|
|
</div>
|
|
</div>
|
|
</div> |