* minor bug fix - reading modalities * react error log fix - button props * react warn fix - Typography color prop * calibration tool without persistence * added toolbar button for calibration tool * icon change for calibration tool * important bug fix for calibration - length and calibration rate calculation * fix weird autocorrection * [fix] bugs after merging upstream * [refactor] conform to the new service names
14 lines
518 B
TypeScript
14 lines
518 B
TypeScript
import { getEnabledElement } from '@cornerstonejs/core';
|
|
import { IEnabledElement } from '@cornerstonejs/core/dist/esm/types';
|
|
|
|
import { getEnabledElement as OHIFgetEnabledElement } from '../state';
|
|
|
|
export default function getActiveViewportEnabledElement(
|
|
viewportGridService
|
|
): IEnabledElement {
|
|
const { activeViewportIndex } = viewportGridService.getState();
|
|
const { element } = OHIFgetEnabledElement(activeViewportIndex) || {};
|
|
const enabledElement = getEnabledElement(element);
|
|
return enabledElement;
|
|
}
|