All files / tools/src/stateManagement/segmentation/events triggerSegmentationModified.ts

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                            444x     444x    
import { triggerEvent, eventTarget } from '@cornerstonejs/core';
 
import { Events } from '../../../enums';
import type { SegmentationModifiedEventDetail } from '../../../types/EventTypes';
 
/**
 * Triggers segmentation global state updated event, notifying all listeners
 * that the global state has been updated. If a segmentationId is provided,
 * the event will only be triggered for that segmentation; otherwise, it will
 * be triggered for all segmentations.
 *
 * @param segmentationId - The id of the segmentation that has been updated
 */
export function triggerSegmentationModified(segmentationId: string): void {
  const eventDetail: SegmentationModifiedEventDetail = {
    segmentationId,
  };
  triggerEvent(eventTarget, Events.SEGMENTATION_MODIFIED, eventDetail);
}