35 lines
868 B
TypeScript
35 lines
868 B
TypeScript
const defaultContextMenu = {
|
|
id: 'measurementsContextMenu',
|
|
customizationType: 'ohif.contextMenu',
|
|
menus: [
|
|
// Get the items from the UI Customization for the menu name (and have a custom name)
|
|
{
|
|
id: 'forExistingMeasurement',
|
|
selector: ({ nearbyToolData }) => !!nearbyToolData,
|
|
items: [
|
|
{
|
|
label: 'Delete measurement',
|
|
commands: [
|
|
{
|
|
commandName: 'deleteMeasurement',
|
|
// we only have support for cornerstoneTools context menu since
|
|
// they are svg based
|
|
context: 'CORNERSTONE',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: 'Add Label',
|
|
commands: [
|
|
{
|
|
commandName: 'setMeasurementLabel',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default defaultContextMenu;
|