import { mdiChartTimelineVariant } from '@mdi/js' import Head from 'next/head' import { uniqueId } from 'lodash'; import React, { ReactElement, useState } from 'react' import CardBox from '../../components/CardBox' import LayoutAuthenticated from '../../layouts/Authenticated' import SectionMain from '../../components/SectionMain' import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton' import { getPageTitle } from '../../config' import TableDownloads from '../../components/Downloads/TableDownloads' import BaseButton from '../../components/BaseButton' import axios from "axios"; import Link from "next/link"; import {useAppDispatch, useAppSelector} from "../../stores/hooks"; import CardBoxModal from "../../components/CardBoxModal"; import DragDropFilePicker from "../../components/DragDropFilePicker"; import {setRefetch, uploadCsv} from '../../stores/downloads/downloadsSlice'; import {hasPermission} from "../../helpers/userPermissions"; const DownloadsTablesPage = () => { const [filterItems, setFilterItems] = useState([]); const [csvFile, setCsvFile] = useState(null); const [isModalActive, setIsModalActive] = useState(false); const [showTableView, setShowTableView] = useState(false); const { currentUser } = useAppSelector((state) => state.auth); const dispatch = useAppDispatch(); const [filters] = useState([{label: 'StoragePath', title: 'storage_path'}, {label: 'ProgressPercent', title: 'progress_percent', number: 'true'},{label: 'TotalBytes', title: 'total_bytes', number: 'true'},{label: 'DownloadedBytes', title: 'downloaded_bytes', number: 'true'}, {label: 'QueuedAt', title: 'queued_at', date: 'true'},{label: 'StartedAt', title: 'started_at', date: 'true'},{label: 'FinishedAt', title: 'finished_at', date: 'true'}, {label: 'User', title: 'user'}, {label: 'Series', title: 'series'}, {label: 'Chapter', title: 'chapter'}, {label: 'DownloadType', title: 'download_type', type: 'enum', options: ['chapter','series','music','video']},{label: 'Status', title: 'status', type: 'enum', options: ['queued','downloading','paused','completed','failed','cancelled']}, ]); const hasCreatePermission = currentUser && hasPermission(currentUser, 'CREATE_DOWNLOADS'); const addFilter = () => { const newItem = { id: uniqueId(), fields: { filterValue: '', filterValueFrom: '', filterValueTo: '', selectedField: '', }, }; newItem.fields.selectedField = filters[0].title; setFilterItems([...filterItems, newItem]); }; const getDownloadsCSV = async () => { const response = await axios({url: '/downloads?filetype=csv', method: 'GET',responseType: 'blob'}); const type = response.headers['content-type'] const blob = new Blob([response.data], { type: type }) const link = document.createElement('a') link.href = window.URL.createObjectURL(blob) link.download = 'downloadsCSV.csv' link.click() }; const onModalConfirm = async () => { if (!csvFile) return; await dispatch(uploadCsv(csvFile)); dispatch(setRefetch(true)); setCsvFile(null); setIsModalActive(false); }; const onModalCancel = () => { setCsvFile(null); setIsModalActive(false); }; return ( <> {getPageTitle('Downloads')} {''} {hasCreatePermission && } {hasCreatePermission && ( setIsModalActive(true)} /> )}
) } DownloadsTablesPage.getLayout = function getLayout(page: ReactElement) { return ( {page} ) } export default DownloadsTablesPage