2019-04-29 19:29:37 +02:00
|
|
|
window.config = {
|
|
|
|
|
routerBasename: '/',
|
2020-05-07 15:58:02 +02:00
|
|
|
// whiteLabelling: {},
|
2020-05-12 21:41:11 +02:00
|
|
|
extensions: [],
|
2020-05-07 16:53:13 +02:00
|
|
|
modes: [],
|
2019-07-08 21:29:59 +02:00
|
|
|
showStudyList: true,
|
2020-05-07 15:58:02 +02:00
|
|
|
// filterQueryParam: false,
|
|
|
|
|
dataSources: [
|
|
|
|
|
{
|
2020-05-11 18:56:46 +02:00
|
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
|
|
|
namespace: 'org.ohif.default.dataSourcesModule.dicomweb',
|
|
|
|
|
sourceName: 'dicomweb',
|
2020-05-07 15:58:02 +02:00
|
|
|
configuration: {
|
2019-04-29 19:29:37 +02:00
|
|
|
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,
|
2020-08-19 21:27:34 +02:00
|
|
|
supportsReject: true,
|
2019-04-29 19:29:37 +02:00
|
|
|
imageRendering: 'wadors',
|
|
|
|
|
thumbnailRendering: 'wadors',
|
2019-10-03 09:51:29 +02:00
|
|
|
enableStudyLazyLoad: true,
|
2020-05-13 15:58:29 +02:00
|
|
|
supportsFuzzyMatching: true,
|
2020-08-19 21:27:34 +02:00
|
|
|
supportsWildcard: true,
|
2019-04-29 19:29:37 +02:00
|
|
|
},
|
2020-02-20 22:25:26 +01:00
|
|
|
},
|
2019-06-09 03:23:00 +02:00
|
|
|
],
|
2021-05-28 20:32:48 +02:00
|
|
|
// 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',
|
|
|
|
|
// }
|
|
|
|
|
// ))
|
|
|
|
|
// },
|
|
|
|
|
// },
|
2020-06-05 17:36:11 +02:00
|
|
|
defaultDataSourceName: 'dicomweb',
|
2019-06-02 21:44:01 +02:00
|
|
|
};
|