* Feat #1130 Adding support for downloading and zipping files @ This is a combination of 12 commits. - Feat #1130 Initial Commit - Feat #1130 Adding support for hierachical lists - Feat #1130 [WIP] Adding support for downloading and zipping files - Feat #1130 Adding support for hierarchical folder structure study, series, instances on generated zip file - Feat #1130 Adding unit tests and addressing code review feedbacks - Feat #1130 POC (adding module to support on progress handling) - Feat #1130 Improving logic from progress tracking utils - Feat #1130 Renaming module with progress tracking utils - Feat #1130 Beta version of Progress Tracking utils - Feat #1130 Adding unit tests for Progress Tracking Utils - Feat #1130 Documenting public methods from progress tracking utils module - Feat #1130 Adding support for download and zip progress reporting * Feat #1130 Addressing code review feedback * Feat #1130 Preventing multiple downloads from executing at once * Feat #1130 Improving error message for concurrent downloads * Remove downloadAndZipSeriesOnViewports Co-authored-by: James Petts <jamesapetts@gmail.com>
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
/**
|
|
* Entry point for development and production PWA builds.
|
|
* Packaged (NPM) builds go through `index-umd.js`
|
|
*/
|
|
|
|
import 'regenerator-runtime/runtime';
|
|
|
|
import App from './App.js';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
// test
|
|
|
|
/**
|
|
* EXTENSIONS
|
|
* =================
|
|
*
|
|
* Importing and modifying the extensions our app uses HERE allows us to leverage
|
|
* tree shaking and a few other niceties. However, by including them here they become
|
|
* "baked in" to the published application.
|
|
*
|
|
* Depending on your use case/needs, you may want to consider not adding any extensions
|
|
* by default HERE, and instead provide them via the extensions configuration key or
|
|
* by using the exported `App` component, and passing in your extensions as props using
|
|
* the defaultExtensions property.
|
|
*/
|
|
import OHIFVTKExtension from '@ohif/extension-vtk';
|
|
import OHIFDicomHtmlExtension from '@ohif/extension-dicom-html';
|
|
import OHIFDicomSegmentationExtension from '@ohif/extension-dicom-segmentation';
|
|
import OHIFDicomRtExtension from '@ohif/extension-dicom-rt';
|
|
import OHIFDicomMicroscopyExtension from '@ohif/extension-dicom-microscopy';
|
|
import OHIFDicomPDFExtension from '@ohif/extension-dicom-pdf';
|
|
import OHIFDicomP10DownloaderExtension from '@ohif/extension-dicom-p10-downloader';
|
|
|
|
/*
|
|
* Default Settings
|
|
*/
|
|
let config = {};
|
|
|
|
if (window) {
|
|
config = window.config || {};
|
|
}
|
|
|
|
const appProps = {
|
|
config,
|
|
defaultExtensions: [
|
|
OHIFVTKExtension,
|
|
OHIFDicomHtmlExtension,
|
|
OHIFDicomMicroscopyExtension,
|
|
OHIFDicomPDFExtension,
|
|
OHIFDicomSegmentationExtension,
|
|
OHIFDicomRtExtension,
|
|
OHIFDicomP10DownloaderExtension,
|
|
],
|
|
};
|
|
|
|
/** Create App */
|
|
const app = React.createElement(App, appProps, null);
|
|
|
|
/** Render */
|
|
ReactDOM.render(app, document.getElementById('root'));
|