70 lines
2.1 KiB
JavaScript
70 lines
2.1 KiB
JavaScript
window.config = {
|
|
routerBasename: '/',
|
|
// whiteLabelling: {},
|
|
extensions: [],
|
|
modes: [],
|
|
showStudyList: true,
|
|
// filterQueryParam: false,
|
|
dataSources: [
|
|
{
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
sourceName: 'dicomweb',
|
|
configuration: {
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: 'https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/wado',
|
|
qidoRoot: 'https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
wadoRoot: 'https://server.dcmjs.org/dcm4chee-arc/aets/DCM4CHEE/rs',
|
|
qidoSupportsIncludeField: true,
|
|
supportsReject: true,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: true,
|
|
supportsWildcard: true,
|
|
},
|
|
},
|
|
{
|
|
friendlyName: 'dicom json',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomjson',
|
|
sourceName: 'dicomjson',
|
|
configuration: {
|
|
name: 'json',
|
|
},
|
|
},
|
|
{
|
|
friendlyName: 'dicom local',
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomlocal',
|
|
sourceName: 'dicomlocal',
|
|
configuration: {},
|
|
},
|
|
],
|
|
httpErrorHandler: error => {
|
|
// This is 429 when rejected from the public idc sandbox too often.
|
|
console.warn(error.status);
|
|
|
|
// Could use services manager here to bring up a dialog/modal if needed.
|
|
console.warn('test, navigate to https://ohif.org/');
|
|
},
|
|
// whiteLabeling: {
|
|
// /* Optional: Should return a React component to be rendered in the "Logo" section of the application's Top Navigation bar */
|
|
// createLogoComponentFn: function (React) {
|
|
// return React.createElement(
|
|
// 'a',
|
|
// {
|
|
// target: '_self',
|
|
// rel: 'noopener noreferrer',
|
|
// className: 'text-purple-600 line-through',
|
|
// href: '/',
|
|
// },
|
|
// React.createElement('img',
|
|
// {
|
|
// src: './customLogo.svg',
|
|
// className: 'w-8 h-8',
|
|
// }
|
|
// ))
|
|
// },
|
|
// },
|
|
defaultDataSourceName: 'dicomweb',
|
|
};
|