import { Button } from "@mui/material"; import ModalDeleteComment from "./modal"; import RescheduleModal from "./modal/RescheduleModal"; import DownloadD from "@/components/icons/DownloadD"; /** نوبتی که گذشته یا از قبل لغو شده، نه لغو میشود نه جابهجا. */ function isOpen(appointment) { if (!appointment?.uuid) return false; if (String(appointment.status ?? "").startsWith("cancelled")) return false; return (appointment.slot_start ?? 0) > Math.floor(Date.now() / 1000); } function ButtonData({ loading, onDownload, appointment, onChanged }) { const actionable = isOpen(appointment); return (