import OHIF from 'ohif-core'; const { plugins, utils } = OHIF; const { PLUGIN_TYPES } = plugins; // TODO: Should probably use dcmjs for this const SOP_CLASS_UIDS = { BASIC_TEXT_SR: '1.2.840.10008.5.1.4.1.1.88.11', ENHANCED_SR: '1.2.840.10008.5.1.4.1.1.88.22', COMPREHENSIVE_SR: '1.2.840.10008.5.1.4.1.1.88.33', PROCEDURE_LOG_STORAGE: '1.2.840.10008.5.1.4.1.1.88.40', MAMMOGRAPHY_CAD_SR: '1.2.840.10008.5.1.4.1.1.88.50', CHEST_CAD_SR: '1.2.840.10008.5.1.4.1.1.88.65', X_RAY_RADIATION_DOSE_SR: '1.2.840.10008.5.1.4.1.1.88.67' }; const sopClassUids = Object.values(SOP_CLASS_UIDS); // TODO: Handle the case where there is more than one SOP Class Handler for the // same SOP Class const OHIFDicomHtmlSopClassHandler = { id: 'OHIFDicomHtmlSopClassHandler', type: PLUGIN_TYPES.SOP_CLASS_HANDLER, sopClassUids, getDisplaySetFromSeries(series, study, dicomWebClient, authorizationHeaders) { const instance = series.getFirstInstance(); return { plugin: 'html', displaySetInstanceUid: utils.guid(), wadoRoot: study.getData().wadoRoot, wadoUri: instance.getData().wadouri, sopInstanceUid: instance.getSOPInstanceUID(), seriesInstanceUid: series.getSeriesInstanceUID(), studyInstanceUid: study.getStudyInstanceUID(), authorizationHeaders }; } }; export default OHIFDicomHtmlSopClassHandler;