- Introduced ShareDocumentButton component for sharing documents. - Added ShareDocumentDialog for email and WhatsApp sharing options. - Integrated document sharing in estimates, invoices, inspections, job cards, bills, and purchase orders. - Implemented useDocumentShare hook for handling share logic. - Created DocumentShareClient for API interactions related to document sharing. - Updated layouts and actions to include sharing options for relevant entities.
80 lines
3.0 KiB
TypeScript
80 lines
3.0 KiB
TypeScript
"use client"
|
|
|
|
import { useAuthApi } from "@/shared/useApi"
|
|
import { useRouter } from "next/navigation"
|
|
import { Button } from "@/shared/components/ui/button"
|
|
import { Dialog, DialogContent, DialogHeader, DialogTitle } from "@/shared/components/ui/dialog"
|
|
import { ScrollArea } from "@/shared/components/ui/scroll-area"
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/shared/components/ui/dropdown-menu"
|
|
import { Ellipsis, Pencil, Trash2, Share2 } from "lucide-react"
|
|
import { useState } from "react"
|
|
import { useFormDialog } from "@/shared/components/form-dialog"
|
|
import { BillForm } from "./bill-form"
|
|
import { ShareDocumentDialog } from "@/shared/components/share-document-dialog"
|
|
|
|
type BillActionsProps = {
|
|
billId: string
|
|
}
|
|
|
|
export function BillActions({ billId }: BillActionsProps) {
|
|
const api = useAuthApi()
|
|
const router = useRouter()
|
|
const editDialog = useFormDialog("bill-details-edit")
|
|
const [shareOpen, setShareOpen] = useState(false)
|
|
|
|
const handleDelete = async () => {
|
|
await api.bills.destroy(billId)
|
|
router.push("/purchase/bill")
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" size="icon">
|
|
<Ellipsis className="size-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuItem onClick={() => editDialog.open(billId)}>
|
|
<Pencil className="size-4" />
|
|
Edit
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => setShareOpen(true)}>
|
|
<Share2 className="size-4" />
|
|
Share
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem variant="destructive" onClick={handleDelete}>
|
|
<Trash2 className="size-4" />
|
|
Delete
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
<ShareDocumentDialog type="bill" id={billId} open={shareOpen} onOpenChange={setShareOpen} />
|
|
|
|
<Dialog open={editDialog.isOpen} onOpenChange={(v) => { if (!v) editDialog.close() }}>
|
|
<DialogContent className="min-w-xl lg:min-w-4xl">
|
|
<DialogHeader>
|
|
<DialogTitle className="text-2xl font-bold">Edit Bill</DialogTitle>
|
|
</DialogHeader>
|
|
<ScrollArea className="max-h-[80vh] px-4">
|
|
<BillForm
|
|
resourceId={editDialog.resourceId}
|
|
onSuccess={() => {
|
|
editDialog.close()
|
|
router.refresh()
|
|
}}
|
|
/>
|
|
</ScrollArea>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</>
|
|
)
|
|
}
|