import React, { Component } from 'react' import { BrowserRouter as Router } from 'react-router-dom' import { Provider } from 'react-redux' import { createStore, combineReducers } from 'redux' import PropTypes from 'prop-types' import OHIF from 'ohif-core' import './config' import ui from './redux/ui.js' import OHIFStandaloneViewer from './OHIFStandaloneViewer' import WhiteLabellingContext from './WhiteLabellingContext' import OHIFCornerstoneExtension from 'ohif-cornerstone-extension' import OHIFVTKExtension from 'ohif-vtk-extension' import OHIFDicomPDFExtension from 'ohif-dicom-pdf-extension' import OHIFDicomHtmlExtension from 'ohif-dicom-html-extension' import OHIFDicomMicroscopyExtension from 'ohif-dicom-microscopy-extension' import { OidcProvider, reducer as oidcReducer } from 'redux-oidc' import { getDefaultToolbarButtons, getUserManagerForOpenIdConnectClient, initWebWorkers, } from './utils/index.js' import setupTools from './setupTools' import ConnectedToolContextMenu from './connectedComponents/ConnectedToolContextMenu' const { ExtensionManager } = OHIF.extensions const { reducers, localStorage } = OHIF.redux reducers.ui = ui reducers.oidc = oidcReducer const combined = combineReducers(reducers) const store = createStore(combined, localStorage.loadState()) store.subscribe(() => { localStorage.saveState({ preferences: store.getState().preferences, }) }) setupTools(store) const children = { viewport: [], } /** TODO: extensions should be passed in as prop as soon as we have the extensions as separate packages and then registered by ExtensionsManager */ const extensions = [ new OHIFCornerstoneExtension({ children }), new OHIFVTKExtension(), new OHIFDicomPDFExtension(), new OHIFDicomHtmlExtension(), new OHIFDicomMicroscopyExtension(), ] ExtensionManager.registerExtensions(store, extensions) // TODO[react] Use a provider when the whole tree is React window.store = store function handleServers(servers) { if (servers) { OHIF.utils.addServers(servers, store) } } class App extends Component { static propTypes = { routerBasename: PropTypes.string.isRequired, relativeWebWorkerScriptsPath: PropTypes.string.isRequired, servers: PropTypes.object.isRequired, oidc: PropTypes.array, whiteLabelling: PropTypes.object, } static defaultProps = { whiteLabelling: {}, oidc: [], } constructor(props) { super(props) // const defaultButtons = getDefaultToolbarButtons(this.props.routerBasename) const buttonsAction = OHIF.redux.actions.setAvailableButtons(defaultButtons) store.dispatch(buttonsAction) if (this.props.oidc.length) { const firstOpenIdClient = this.props.oidc[0] this.userManager = getUserManagerForOpenIdConnectClient( store, firstOpenIdClient ) } handleServers(this.props.servers) initWebWorkers( this.props.routerBasename, this.props.relativeWebWorkerScriptsPath ) } render() { const userManager = this.userManager if (userManager) { return ( ) } return ( ) } } export default App