| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- import React, { useCallback, useEffect, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import * as toastr from 'toastr';
- import { apiDelete } from '~/client/util/apiv1-client';
- import { apiv3Get } from '~/client/util/apiv3-client';
- import { useAdminSocket } from '~/stores/socket-io';
- import LabeledProgressBar from './Common/LabeledProgressBar';
- import ArchiveFilesTable from './ExportArchiveData/ArchiveFilesTable';
- import SelectCollectionsModal from './ExportArchiveData/SelectCollectionsModal';
- const IGNORED_COLLECTION_NAMES = [
- 'sessions', 'rlflx', 'activities',
- ];
- const ExportArchiveDataPage = (): JSX.Element => {
- const { data: socket } = useAdminSocket();
- const { t } = useTranslation('admin');
- const [collections, setCollections] = useState<any[]>([]);
- const [zipFileStats, setZipFileStats] = useState<any[]>([]);
- const [progressList, setProgressList] = useState<any[]>([]);
- const [isExportModalOpen, setExportModalOpen] = useState(false);
- const [isExporting, setExporting] = useState(false);
- const [isZipping, setZipping] = useState(false);
- const [isExported, setExported] = useState(false);
- const fetchData = useCallback(async() => {
- const [{ data: collectionsData }, { data: statusData }] = await Promise.all([
- apiv3Get<{collections: any[]}>('/mongo/collections', {}),
- apiv3Get<{status: { zipFileStats: any[], isExporting: boolean, progressList: any[] }}>('/export/status', {}),
- ]);
- // TODO: toastSuccess, toastError
- // filter only not ignored collection names
- const filteredCollections = collectionsData.collections.filter((collectionName) => {
- return !IGNORED_COLLECTION_NAMES.includes(collectionName);
- });
- const { zipFileStats, isExporting, progressList } = statusData.status;
- setCollections(filteredCollections);
- setZipFileStats(zipFileStats);
- setExporting(isExporting);
- setProgressList(progressList);
- }, []);
- const setupWebsocketEventHandler = useCallback(() => {
- if (socket != null) {
- // websocket event
- socket.on('admin:onProgressForExport', ({ currentCount, totalCount, progressList }) => {
- setExporting(true);
- setProgressList(progressList);
- });
- // websocket event
- socket.on('admin:onStartZippingForExport', () => {
- setZipping(true);
- });
- // websocket event
- socket.on('admin:onTerminateForExport', ({ addedZipFileStat }) => {
- setExporting(false);
- setZipping(false);
- setExported(true);
- setZipFileStats(prev => prev.concat([addedZipFileStat]));
- // TODO: toastSuccess, toastError
- toastr.success(undefined, `New Archive Data '${addedZipFileStat.fileName}' is added`, {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '1200',
- extendedTimeOut: '150',
- });
- });
- }
- }, [socket]);
- const onZipFileStatRemove = useCallback(async(fileName) => {
- try {
- await apiDelete(`/v3/export/${fileName}`, {});
- setZipFileStats(prev => prev.filter(stat => stat.fileName !== fileName));
- // TODO: toastSuccess, toastError
- toastr.success(undefined, `Deleted ${fileName}`, {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '1200',
- extendedTimeOut: '150',
- });
- }
- catch (err) {
- // TODO: toastSuccess, toastError
- toastr.error(err, 'Error', {
- closeButton: true,
- progressBar: true,
- newestOnTop: false,
- showDuration: '100',
- hideDuration: '100',
- timeOut: '3000',
- });
- }
- }, []);
- const exportingRequestedHandler = useCallback(() => {}, []);
- const renderProgressBarsForCollections = useCallback(() => {
- const cols = progressList.map((progressData) => {
- const { collectionName, currentCount, totalCount } = progressData;
- return (
- <div className="col-md-6" key={collectionName}>
- <LabeledProgressBar
- header={collectionName}
- currentCount={currentCount}
- totalCount={totalCount}
- />
- </div>
- );
- });
- return <div className="row px-3">{cols}</div>;
- }, [progressList]);
- const renderProgressBarForZipping = useCallback(() => {
- const showZippingBar = isZipping || isExported;
- if (!showZippingBar) {
- return <></>;
- }
- return (
- <div className="row px-3">
- <div className="col-md-12" key="progressBarForZipping">
- <LabeledProgressBar
- header="Zip Files"
- currentCount={1}
- totalCount={1}
- isInProgress={isZipping}
- />
- </div>
- </div>
- );
- }, [isExported, isZipping]);
- useEffect(() => {
- fetchData();
- setupWebsocketEventHandler();
- }, [fetchData, setupWebsocketEventHandler]);
- const showExportingData = (isExported || isExporting) && (progressList != null);
- return (
- <div data-testid="admin-export-archive-data">
- <h2>{t('export_management.export_archive_data')}</h2>
- <button type="button" className="btn btn-outline-secondary" disabled={isExporting} onClick={() => setExportModalOpen(true)}>
- {t('export_management.create_new_archive_data')}
- </button>
- { showExportingData && (
- <div className="mt-5">
- <h3>{t('export_management.exporting_collection_list')}</h3>
- { renderProgressBarsForCollections() }
- { renderProgressBarForZipping() }
- </div>
- ) }
- <div className="mt-5">
- <h3>{t('export_management.exported_data_list')}</h3>
- <ArchiveFilesTable
- zipFileStats={zipFileStats}
- onZipFileStatRemove={onZipFileStatRemove}
- />
- </div>
- <SelectCollectionsModal
- isOpen={isExportModalOpen}
- onExportingRequested={exportingRequestedHandler}
- onClose={() => setExportModalOpen(false)}
- collections={collections}
- />
- </div>
- );
- };
- export default ExportArchiveDataPage;
|