* Add error boundaries * Fix PWA e2e. * feat: ErrorBoundaryDialog * replace component to use ErrorBoundaryDialog * add proptypes * fix context * remove ErrorBoundary from extensions Co-authored-by: igoroctaviano <igoroctaviano@gmail.com> Co-authored-by: James A. Petts <jamesapetts@gmail.com>
36 lines
969 B
JavaScript
36 lines
969 B
JavaScript
import React from 'react';
|
|
import asyncComponent from './asyncComponent.js';
|
|
import commandsModule from './commandsModule.js';
|
|
import toolbarModule from './toolbarModule.js';
|
|
import withCommandsManager from './withCommandsManager.js';
|
|
// This feels weird
|
|
// import loadLocales from './loadLocales';
|
|
|
|
const OHIFVTKViewport = asyncComponent(() =>
|
|
import(/* webpackChunkName: "OHIFVTKViewport" */ './OHIFVTKViewport.js')
|
|
);
|
|
|
|
const vtkExtension = {
|
|
/**
|
|
* Only required property. Should be a unique value across all extensions.
|
|
*/
|
|
id: 'vtk',
|
|
|
|
getViewportModule({ commandsManager }) {
|
|
const ExtendedVTKViewport = props => <OHIFVTKViewport {...props} />;
|
|
return withCommandsManager(ExtendedVTKViewport, commandsManager);
|
|
},
|
|
getToolbarModule() {
|
|
return toolbarModule;
|
|
},
|
|
getCommandsModule({ commandsManager }) {
|
|
return commandsModule({ commandsManager });
|
|
},
|
|
};
|
|
|
|
export default vtkExtension;
|
|
|
|
export { vtkExtension };
|
|
|
|
// loadLocales();
|