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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | 34x 34x | export function getToolbarModule({ servicesManager }: withAppTypes) { const { segmentationService, toolbarService, toolGroupService } = servicesManager.services; return [ { name: 'evaluate.cornerstone.hasSegmentation', evaluate: ({ viewportId }) => { const segmentations = segmentationService.getSegmentationRepresentations(viewportId); return { disabled: !segmentations?.length, }; }, }, { name: 'evaluate.cornerstone.segmentation', evaluate: ({ viewportId, button, toolNames, disabledText }) => { // Todo: we need to pass in the button section Id since we are kind of // forcing the button to have black background since initially // it is designed for the toolbox not the toolbar on top // we should then branch the buttonSectionId to have different styles const segmentations = segmentationService.getSegmentationRepresentations(viewportId); Iif (!segmentations?.length) { return { disabled: true, disabledText: disabledText ?? 'No segmentations available', }; } const activeSegmentation = segmentationService.getActiveSegmentation(viewportId); Iif (!Object.keys(activeSegmentation.segments).length) { return { disabled: true, disabledText: 'Add segment to enable this tool', }; } const toolGroup = toolGroupService.getToolGroupForViewport(viewportId); Iif (!toolGroup) { return { disabled: true, disabledText: disabledText ?? 'Not available on the current viewport', }; } Iif (!toolNames) { return { disabled: false, // isActive: false, }; } const toolName = toolbarService.getToolNameForButton(button); Iif (!toolGroup.hasTool(toolName) && !toolNames) { return { disabled: true, disabledText: disabledText ?? 'Not available on the current viewport', }; } const isPrimaryActive = toolNames ? toolNames.includes(toolGroup.getActivePrimaryMouseButtonTool()) : toolGroup.getActivePrimaryMouseButtonTool() === toolName; return { disabled: false, isActive: isPrimaryActive, }; }, }, ]; } |