185 lines
5.4 KiB
TypeScript
185 lines
5.4 KiB
TypeScript
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 TableTour_pages from '../../components/Tour_pages/TableTour_pages';
|
|
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/tour_pages/tour_pagesSlice';
|
|
|
|
import { hasPermission } from '../../helpers/userPermissions';
|
|
import { Filter } from '../../types/filters';
|
|
|
|
const Tour_pagesTablesPage = () => {
|
|
const [filterItems, setFilterItems] = useState([]);
|
|
const [csvFile, setCsvFile] = useState<File | null>(null);
|
|
const [isModalActive, setIsModalActive] = useState(false);
|
|
const [showTableView, setShowTableView] = useState(false);
|
|
|
|
const { currentUser } = useAppSelector((state) => state.auth);
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
const [filters] = useState<Filter[]>([
|
|
{ label: 'Sourcekey', title: 'source_key' },
|
|
{ label: 'Name', title: 'name' },
|
|
{ label: 'Slug', title: 'slug' },
|
|
{ label: 'BackgroundimageURL', title: 'background_image_url' },
|
|
{ label: 'BackgroundvideoURL', title: 'background_video_url' },
|
|
{ label: 'BackgroundaudioURL', title: 'background_audio_url' },
|
|
{ label: 'UIschemaJSON', title: 'ui_schema_json' },
|
|
{ label: 'Sortorder', title: 'sort_order', number: true },
|
|
|
|
{ label: 'Project', title: 'project' },
|
|
|
|
{
|
|
label: 'Environment',
|
|
title: 'environment',
|
|
type: 'enum',
|
|
options: ['dev', 'stage', 'production'],
|
|
},
|
|
]);
|
|
|
|
const hasCreatePermission =
|
|
currentUser && hasPermission(currentUser, 'CREATE_TOUR_PAGES');
|
|
|
|
const addFilter = () => {
|
|
const newItem = {
|
|
id: uniqueId(),
|
|
fields: {
|
|
filterValue: '',
|
|
filterValueFrom: '',
|
|
filterValueTo: '',
|
|
selectedField: '',
|
|
},
|
|
};
|
|
newItem.fields.selectedField = filters[0].title;
|
|
setFilterItems([...filterItems, newItem]);
|
|
};
|
|
|
|
const getTour_pagesCSV = async () => {
|
|
const response = await axios({
|
|
url: '/tour_pages?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 = 'tour_pagesCSV.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 (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Tour_pages')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title='Tour_pages'
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox className='mb-6' cardBoxClassName='flex flex-wrap'>
|
|
{hasCreatePermission && (
|
|
<BaseButton
|
|
className={'mr-3'}
|
|
href={'/tour_pages/tour_pages-new'}
|
|
color='info'
|
|
label='New Item'
|
|
/>
|
|
)}
|
|
|
|
<BaseButton
|
|
className={'mr-3'}
|
|
color='info'
|
|
label='Filter'
|
|
onClick={addFilter}
|
|
/>
|
|
<BaseButton
|
|
className={'mr-3'}
|
|
color='info'
|
|
label='Download CSV'
|
|
onClick={getTour_pagesCSV}
|
|
/>
|
|
|
|
{hasCreatePermission && (
|
|
<BaseButton
|
|
color='info'
|
|
label='Upload CSV'
|
|
onClick={() => setIsModalActive(true)}
|
|
/>
|
|
)}
|
|
|
|
<div className='md:inline-flex items-center ms-auto'>
|
|
<div id='delete-rows-button'></div>
|
|
|
|
<Link href={'/tour_pages/tour_pages-list'}>
|
|
Back to <span className='capitalize'>table</span>
|
|
</Link>
|
|
</div>
|
|
</CardBox>
|
|
<CardBox className='mb-6' hasTable>
|
|
<TableTour_pages
|
|
filterItems={filterItems}
|
|
setFilterItems={setFilterItems}
|
|
filters={filters}
|
|
showGrid={true}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
<CardBoxModal
|
|
title='Upload CSV'
|
|
buttonColor='info'
|
|
buttonLabel={'Confirm'}
|
|
// buttonLabel={false ? 'Deleting...' : 'Confirm'}
|
|
isActive={isModalActive}
|
|
onConfirm={onModalConfirm}
|
|
onCancel={onModalCancel}
|
|
>
|
|
<DragDropFilePicker
|
|
file={csvFile}
|
|
setFile={setCsvFile}
|
|
formats={'.csv'}
|
|
/>
|
|
</CardBoxModal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Tour_pagesTablesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'READ_TOUR_PAGES'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default Tour_pagesTablesPage;
|