164 lines
5.3 KiB
TypeScript
164 lines
5.3 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 TableIntegrations from '../../components/Integrations/TableIntegrations'
|
|
import BaseButton from '../../components/BaseButton'
|
|
import axios from "axios";
|
|
import {useAppDispatch, useAppSelector} from "../../stores/hooks";
|
|
import CardBoxModal from "../../components/CardBoxModal";
|
|
import DragDropFilePicker from "../../components/DragDropFilePicker";
|
|
import {setRefetch, uploadCsv} from '../../stores/integrations/integrationsSlice';
|
|
|
|
|
|
import {hasPermission} from "../../helpers/userPermissions";
|
|
|
|
|
|
|
|
const IntegrationsTablesPage = () => {
|
|
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([{label: 'Integration name', title: 'name'},{label: 'Configuration notes', title: 'configuration_notes'},
|
|
|
|
|
|
|
|
|
|
|
|
{label: 'Category', title: 'category', type: 'enum', options: ['dms','case_management','billing','identity','ai_provider','collaboration','automation','gRC','e_signature','bi_analytics','other']},{label: 'Status', title: 'integration_status', type: 'enum', options: ['available','configured','disabled']},
|
|
]);
|
|
|
|
const hasCreatePermission = currentUser && hasPermission(currentUser, 'CREATE_INTEGRATIONS');
|
|
|
|
|
|
const addFilter = () => {
|
|
const newItem = {
|
|
id: uniqueId(),
|
|
fields: {
|
|
filterValue: '',
|
|
filterValueFrom: '',
|
|
filterValueTo: '',
|
|
selectedField: '',
|
|
},
|
|
};
|
|
newItem.fields.selectedField = filters[0].title;
|
|
setFilterItems([...filterItems, newItem]);
|
|
};
|
|
|
|
const getIntegrationsCSV = async () => {
|
|
const response = await axios({url: '/integrations?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 = 'integrationsCSV.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('Integrations')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title="Integrations" main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox className='mb-6' cardBoxClassName='flex flex-wrap'>
|
|
|
|
{hasCreatePermission && <BaseButton className={'mr-3'} href={'/integrations/integrations-new'} color='info' label='New integration'/>}
|
|
|
|
<BaseButton
|
|
className={'mr-3'}
|
|
color='info'
|
|
label='Add filter'
|
|
onClick={addFilter}
|
|
/>
|
|
<BaseButton className={'mr-3'} color='whiteDark' label='Export CSV' onClick={getIntegrationsCSV} />
|
|
|
|
{hasCreatePermission && (
|
|
<BaseButton
|
|
color='whiteDark'
|
|
label='Upload CSV'
|
|
onClick={() => setIsModalActive(true)}
|
|
/>
|
|
)}
|
|
|
|
<div className='md:inline-flex items-center ms-auto'>
|
|
<div id='delete-rows-button'></div>
|
|
</div>
|
|
|
|
<BaseButton className={'ms-auto'} href={'/integrations/integrations-table'} color='whiteDark' label='Table view'/>
|
|
|
|
</CardBox>
|
|
|
|
<CardBox className="mb-6" hasTable>
|
|
<TableIntegrations
|
|
filterItems={filterItems}
|
|
setFilterItems={setFilterItems}
|
|
filters={filters}
|
|
showGrid={false}
|
|
/>
|
|
</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>
|
|
</>
|
|
)
|
|
}
|
|
|
|
IntegrationsTablesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'READ_INTEGRATIONS'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default IntegrationsTablesPage
|