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 TableStores from '../../components/Stores/TableStores' 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/stores/storesSlice'; import {hasPermission} from "../../helpers/userPermissions"; const StoresTablesPage = () => { 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: 'StoreName', title: 'store_name'},{label: 'StoreSlug', title: 'store_slug'},{label: 'Description', title: 'description'},{label: 'SupportPhone', title: 'support_phone'},{label: 'SupportEmail', title: 'support_email'}, {label: 'Owner', title: 'owner'}, {label: 'PrimaryAddress', title: 'primary_address'}, {label: 'StoreType', title: 'store_type', type: 'enum', options: ['umkm','brand','reseller','service_provider']},{label: 'Status', title: 'status', type: 'enum', options: ['draft','active','paused','suspended']}, ]); const hasCreatePermission = currentUser && hasPermission(currentUser, 'CREATE_STORES'); const addFilter = () => { const newItem = { id: uniqueId(), fields: { filterValue: '', filterValueFrom: '', filterValueTo: '', selectedField: '', }, }; newItem.fields.selectedField = filters[0].title; setFilterItems([...filterItems, newItem]); }; const getStoresCSV = async () => { const response = await axios({url: '/stores?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 = 'storesCSV.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('Stores')} {''} {hasCreatePermission && } {hasCreatePermission && ( setIsModalActive(true)} /> )}
Back to card
) } StoresTablesPage.getLayout = function getLayout(page: ReactElement) { return ( {page} ) } export default StoresTablesPage