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 TableCognitive_sessions from '../../components/Cognitive_sessions/TableCognitive_sessions' 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/cognitive_sessions/cognitive_sessionsSlice'; import {hasPermission} from "../../helpers/userPermissions"; const Cognitive_sessionsTablesPage = () => { 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: 'Sessionnotes', title: 'session_notes'}, {label: 'Totalscore', title: 'total_score', number: 'true'}, {label: 'Startedat', title: 'started_at', date: 'true'},{label: 'Endedat', title: 'ended_at', date: 'true'}, {label: 'Patient', title: 'patient'}, {label: 'Program', title: 'program'}, {label: 'Startedbyuser', title: 'started_by_user'}, {label: 'Completionstatus', title: 'completion_status', type: 'enum', options: ['in_progress','completed','abandoned']}, ]); const hasCreatePermission = currentUser && hasPermission(currentUser, 'CREATE_COGNITIVE_SESSIONS'); const addFilter = () => { const newItem = { id: uniqueId(), fields: { filterValue: '', filterValueFrom: '', filterValueTo: '', selectedField: '', }, }; newItem.fields.selectedField = filters[0].title; setFilterItems([...filterItems, newItem]); }; const getCognitive_sessionsCSV = async () => { const response = await axios({url: '/cognitive_sessions?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 = 'cognitive_sessionsCSV.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('Cognitive_sessions')} {''} {hasCreatePermission && } {hasCreatePermission && ( setIsModalActive(true)} /> )}
Back to table
) } Cognitive_sessionsTablesPage.getLayout = function getLayout(page: ReactElement) { return ( {page} ) } export default Cognitive_sessionsTablesPage