138 lines
4.3 KiB
JavaScript
138 lines
4.3 KiB
JavaScript
/** @type {AppTypes.Config} */
|
|
window.config = {
|
|
// Activate the new HP mode....
|
|
isNewHP: true,
|
|
|
|
routerBasename: '/',
|
|
customizationService: [
|
|
'@ohif/extension-default.customizationModule.datasources',
|
|
{
|
|
id: 'class:StudyBrowser',
|
|
true: 'black',
|
|
false: 'default',
|
|
},
|
|
],
|
|
extensions: [],
|
|
modes: ['@ohif/mode-test', '@ohif/mode-basic-dev-mode'],
|
|
showStudyList: true,
|
|
maxNumberOfWebWorkers: 4,
|
|
// below flag is for performance reasons, but it might not work for all servers
|
|
showWarningMessageForCrossOrigin: true,
|
|
showCPUFallbackMessage: true,
|
|
showLoadingIndicator: true,
|
|
strictZSpacingForVolumeViewport: true,
|
|
// filterQueryParam: false,
|
|
defaultDataSourceName: 'default',
|
|
dataSources: [
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'default',
|
|
configuration: {
|
|
friendlyName: 'Static WADO Local Data',
|
|
name: 'DCM4CHEE',
|
|
qidoRoot: '/dicomweb',
|
|
wadoRoot: '/dicomweb',
|
|
qidoSupportsIncludeField: false,
|
|
supportsReject: true,
|
|
supportsStow: true,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: true,
|
|
staticWado: true,
|
|
singlepart: 'bulkdata,video,pdf',
|
|
omitQuotationForMultipartRequest: true,
|
|
},
|
|
},
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'ohif',
|
|
configuration: {
|
|
friendlyName: 'dcmjs DICOMWeb Server',
|
|
name: 'aws',
|
|
// old server
|
|
// 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',
|
|
// new server
|
|
wadoUriRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
qidoRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
wadoRoot: 'https://d14fa38qiwhyfd.cloudfront.net/dicomweb',
|
|
qidoSupportsIncludeField: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: true,
|
|
staticWado: true,
|
|
singlepart: 'bulkdata,video,pdf',
|
|
},
|
|
},
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'aws',
|
|
configuration: {
|
|
friendlyName: 'AWS S3 OHIF',
|
|
name: 'aws',
|
|
qidoRoot: 'https://dd32w2rfebxel.cloudfront.net/dicomweb',
|
|
wadoRoot: 'https://dd32w2rfebxel.cloudfront.net/dicomweb',
|
|
qidoSupportsIncludeField: false,
|
|
supportsStow: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: true,
|
|
staticWado: true,
|
|
singlepart: 'bulkdata,video,pdf',
|
|
},
|
|
},
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
|
sourceName: 'e2e',
|
|
configuration: {
|
|
friendlyName: 'E2E Test Data',
|
|
name: 'DCM4CHEE',
|
|
wadoUriRoot: '/viewer-testdata',
|
|
qidoRoot: '/viewer-testdata',
|
|
wadoRoot: '/viewer-testdata',
|
|
qidoSupportsIncludeField: false,
|
|
supportsStow: false,
|
|
imageRendering: 'wadors',
|
|
thumbnailRendering: 'wadors',
|
|
enableStudyLazyLoad: true,
|
|
supportsFuzzyMatching: false,
|
|
supportsWildcard: true,
|
|
staticWado: true,
|
|
singlepart: 'video,thumbnail,pdf',
|
|
},
|
|
},
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomjson',
|
|
sourceName: 'dicomjson',
|
|
configuration: {
|
|
friendlyName: 'dicom json',
|
|
name: 'json',
|
|
},
|
|
},
|
|
{
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomlocal',
|
|
sourceName: 'dicomlocal',
|
|
configuration: {
|
|
friendlyName: 'dicom local',
|
|
},
|
|
},
|
|
],
|
|
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/');
|
|
},
|
|
|
|
// Only list the unique hotkeys
|
|
hotkeys: [],
|
|
};
|