59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import React from 'react';
|
|
import { DicomMetadataStore } from '@ohif/core';
|
|
|
|
/**
|
|
*
|
|
* @param {*} servicesManager
|
|
*/
|
|
async function createReportAsync({
|
|
servicesManager,
|
|
getReport,
|
|
reportType = 'measurement',
|
|
}: withAppTypes) {
|
|
const { displaySetService, uiNotificationService, uiDialogService } = servicesManager.services;
|
|
const loadingDialogId = uiDialogService.create({
|
|
showOverlay: true,
|
|
isDraggable: false,
|
|
centralize: true,
|
|
content: Loading,
|
|
});
|
|
|
|
try {
|
|
const naturalizedReport = await getReport();
|
|
|
|
if (!naturalizedReport) return;
|
|
|
|
// The "Mode" route listens for DicomMetadataStore changes
|
|
// When a new instance is added, it listens and
|
|
// automatically calls makeDisplaySets
|
|
DicomMetadataStore.addInstances([naturalizedReport], true);
|
|
|
|
const displaySet = displaySetService.getMostRecentDisplaySet();
|
|
|
|
const displaySetInstanceUID = displaySet.displaySetInstanceUID;
|
|
|
|
uiNotificationService.show({
|
|
title: 'Create Report',
|
|
message: `${reportType} saved successfully`,
|
|
type: 'success',
|
|
});
|
|
|
|
return [displaySetInstanceUID];
|
|
} catch (error) {
|
|
uiNotificationService.show({
|
|
title: 'Create Report',
|
|
message: error.message || `Failed to store ${reportType}`,
|
|
type: 'error',
|
|
});
|
|
throw new Error(`Failed to store ${reportType}. Error: ${error.message || 'Unknown error'}`);
|
|
} finally {
|
|
uiDialogService.dismiss({ id: loadingDialogId });
|
|
}
|
|
}
|
|
|
|
function Loading() {
|
|
return <div className="text-primary-active">Loading...</div>;
|
|
}
|
|
|
|
export default createReportAsync;
|