* WIP rehydration. * WIP OHIF-190 rehydrate. * Remove debugger statements. * Merge in and fix after OHIF-197 and OHIF-198 * Remove console.log * Fix typo * fix length tracking bug * Respond to reviewer comments.
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import getSopClassHandlerModule from './getSopClassHandlerModule';
|
|
import id from './id.js';
|
|
import init from './init';
|
|
|
|
const Component = React.lazy(() => {
|
|
return import('./OHIFCornerstoneSRViewport');
|
|
});
|
|
|
|
const OHIFCornerstoneSRViewport = props => {
|
|
return (
|
|
<React.Suspense fallback={<div>Loading...</div>}>
|
|
<Component {...props} />
|
|
</React.Suspense>
|
|
);
|
|
};
|
|
|
|
/**
|
|
*
|
|
*/
|
|
export default {
|
|
/**
|
|
* Only required property. Should be a unique value across all extensions.
|
|
*/
|
|
id,
|
|
dependencies: [
|
|
// TODO -> This isn't used anywhere yet, but we do have a hard dependency, and need to check for these in the future.
|
|
// OHIF-229
|
|
{
|
|
id: 'org.ohif.cornerstone',
|
|
version: '3.0.0',
|
|
},
|
|
{
|
|
id: 'org.ohif.measurement-tracking',
|
|
version: '^0.0.1',
|
|
},
|
|
],
|
|
|
|
preRegistration({ servicesManager, configuration = {} }) {
|
|
init({ servicesManager, configuration });
|
|
},
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @param {object} [configuration={}]
|
|
* @param {object|array} [configuration.csToolsConfig] - Passed directly to `initCornerstoneTools`
|
|
*/
|
|
getViewportModule({ servicesManager, extensionManager }) {
|
|
const ExtendedOHIFCornerstoneSRViewport = props => {
|
|
return (
|
|
<OHIFCornerstoneSRViewport
|
|
servicesManager={servicesManager}
|
|
extensionManager={extensionManager}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
return [{ name: 'dicom-sr', component: ExtendedOHIFCornerstoneSRViewport }];
|
|
},
|
|
getSopClassHandlerModule,
|
|
};
|