* feat: Add a new hanging protocol @ohif/mn * Add @ohif/seg example * PR comments and a couple more fixes to make things cleaner * PR comment * Added an example to cause the PR checks to rerun
101 lines
2.6 KiB
TypeScript
101 lines
2.6 KiB
TypeScript
const findingsContextMenu = {
|
|
id: 'measurementsContextMenu',
|
|
customizationType: 'ohif.contextMenu',
|
|
menus: [
|
|
{
|
|
id: 'forExistingMeasurement',
|
|
// selector restricts context menu to when there is nearbyToolData
|
|
selector: ({ nearbyToolData }) => !!nearbyToolData,
|
|
items: [
|
|
{
|
|
customizationType: 'ohif.contextSubMenu',
|
|
label: 'Site',
|
|
actionType: 'ShowSubMenu',
|
|
subMenu: 'siteSelectionSubMenu',
|
|
},
|
|
{
|
|
customizationType: 'ohif.contextSubMenu',
|
|
label: 'Finding',
|
|
actionType: 'ShowSubMenu',
|
|
subMenu: 'findingSelectionSubMenu',
|
|
},
|
|
{
|
|
// customizationType is implicit here in the configuration setup
|
|
label: 'Delete Measurement',
|
|
commands: [
|
|
{
|
|
commandName: 'deleteMeasurement',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Add Label',
|
|
commands: [
|
|
{
|
|
commandName: 'setMeasurementLabel',
|
|
},
|
|
],
|
|
},
|
|
|
|
// The example below shows how to include a delegating sub-menu,
|
|
// Only available on the @ohif/mnGrid hanging protocol
|
|
// To demonstrate, select the 3x1 layout from the protocol menu
|
|
// and right click on a measurement.
|
|
{
|
|
label: 'IncludeSubMenu',
|
|
selector: ({ protocol }) => protocol?.id === '@ohif/mnGrid',
|
|
delegating: true,
|
|
subMenu: 'orientationSelectionSubMenu',
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
id: 'orientationSelectionSubMenu',
|
|
selector: ({ nearbyToolData }) => false,
|
|
items: [
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:24422004',
|
|
},
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:81654009',
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
id: 'findingSelectionSubMenu',
|
|
selector: ({ nearbyToolData }) => false,
|
|
items: [
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:371861004',
|
|
},
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:194983005',
|
|
},
|
|
],
|
|
},
|
|
|
|
{
|
|
id: 'siteSelectionSubMenu',
|
|
selector: ({ nearbyToolData }) => !!nearbyToolData,
|
|
items: [
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:69536005',
|
|
},
|
|
{
|
|
customizationType: '@ohif/contextMenuAnnotationCode',
|
|
code: 'SCT:45048000',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default findingsContextMenu;
|