/* Copyright (C) 2023-2026 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ import { useQueryClient } from '@tanstack/react-query' import { type Table } from '@tanstack/react-table' import { Power, PowerOff, Trash2, Copy } from 'lucide-react' import { useState } from 'react' import { useTranslation } from 'react-i18next' import { toast } from 'sonner' import { DataTableBulkActions as BulkActionsToolbar } from '@/components/data-table' import { Dialog } from '@/components/dialog' import { Button } from '@/components/ui/button' import { Tooltip, TooltipContent, TooltipTrigger, } from '@/components/ui/tooltip' import { copyToClipboard } from '@/lib/copy-to-clipboard' import { handleBatchEnableModels, handleBatchDisableModels, handleBatchDeleteModels, } from '../lib' import type { Model } from '../types' interface DataTableBulkActionsProps { table: Table } export function DataTableBulkActions({ table, }: DataTableBulkActionsProps) { const { t } = useTranslation() const queryClient = useQueryClient() const [showDeleteConfirm, setShowDeleteConfirm] = useState(false) const selectedRows = table.getFilteredSelectedRowModel().rows const selectedIds = selectedRows.reduce((ids, row) => { const id = (row.original as Model).id if (typeof id === 'number') { ids.push(id) } return ids }, []) const selectedModels = selectedRows.map((row) => row.original as Model) const handleClearSelection = () => { table.resetRowSelection() } const handleEnableAll = () => { handleBatchEnableModels(selectedIds, queryClient, handleClearSelection) } const handleDisableAll = () => { handleBatchDisableModels(selectedIds, queryClient, handleClearSelection) } const handleDeleteAll = () => { handleBatchDeleteModels(selectedIds, queryClient, () => { setShowDeleteConfirm(false) handleClearSelection() }) } const handleCopyNames = async () => { const names = selectedModels.map((m) => m.model_name).join(',') const success = await copyToClipboard(names) if (success) { toast.success(t('Model names copied to clipboard')) } else { toast.error(t('Failed to copy model names')) } } return ( <> } > {t('Enable selected models')}

{t('Enable selected models')}

} > {t('Disable selected models')}

{t('Disable selected models')}

} > {t('Copy model names')}

{t('Copy model names')}

setShowDeleteConfirm(true)} className='size-8' aria-label={t('Delete selected models')} title={t('Delete selected models')} /> } > {t('Delete selected models')}

{t('Delete selected models')}

{/* Delete Confirmation Dialog */} } > {' '} ) }