40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import { FC } 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";
|
|
|
|
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 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">
|
|
Please confirm deletion of location “<strong>{location.name}</strong>”.
|
|
</p>
|
|
<div className="pt-4 text-center">
|
|
<button className="btn btn-primary">Confim</button>
|
|
<Link className="btn btn-neutral ml-3" href={`/location/${location._id}/edit/`}>Cancel</Link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|