Merge pull request #1827 from OHIF/feat/ohif-127-196
OHIF-127-196-191: Hotkeys config and defaults
This commit is contained in:
commit
6db780842e
@ -1,4 +1,5 @@
|
|||||||
import toolbarButtons from './toolbarButtons.js';
|
import toolbarButtons from './toolbarButtons.js';
|
||||||
|
import { hotkeys } from '@ohif/core';
|
||||||
|
|
||||||
export default function mode({ modeConfiguration }) {
|
export default function mode({ modeConfiguration }) {
|
||||||
return {
|
return {
|
||||||
@ -68,6 +69,9 @@ export default function mode({ modeConfiguration }) {
|
|||||||
],
|
],
|
||||||
extensions: ['org.ohif.default', 'org.ohif.cornerstone'],
|
extensions: ['org.ohif.default', 'org.ohif.cornerstone'],
|
||||||
sopClassHandlers: ['org.ohif.default.sopClassHandlerModule.stack'],
|
sopClassHandlers: ['org.ohif.default.sopClassHandlerModule.stack'],
|
||||||
|
hotkeys: [
|
||||||
|
...hotkeys.defaults.hotkeyBindings
|
||||||
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
import toolbarButtons from './toolbarButtons.js';
|
import toolbarButtons from './toolbarButtons.js';
|
||||||
|
import { hotkeys } from '@ohif/core';
|
||||||
|
|
||||||
const ohif = {
|
const ohif = {
|
||||||
layout: 'org.ohif.default.layoutTemplateModule.viewerLayout',
|
layout: 'org.ohif.default.layoutTemplateModule.viewerLayout',
|
||||||
@ -94,6 +95,9 @@ export default function mode({ modeConfiguration }) {
|
|||||||
'org.ohif.dicom-sr',
|
'org.ohif.dicom-sr',
|
||||||
],
|
],
|
||||||
sopClassHandlers: [ohif.sopClassHandler, dicomsr.sopClassHandler],
|
sopClassHandlers: [ohif.sopClassHandler, dicomsr.sopClassHandler],
|
||||||
|
hotkeys: [
|
||||||
|
...hotkeys.defaults.hotkeyBindings
|
||||||
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,8 +1,11 @@
|
|||||||
// TODO: torn, can either bake this here; or have to create a whole new button type
|
// TODO: torn, can either bake this here; or have to create a whole new button type
|
||||||
// Only ways that you can pass in a custom React component for render :l
|
// Only ways that you can pass in a custom React component for render :l
|
||||||
import { ExpandableToolbarButton, ListMenu } from '@ohif/ui';
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
|
import { ExpandableToolbarButton, ListMenu } from '@ohif/ui';
|
||||||
|
import { defaults } from '@ohif/core';
|
||||||
|
|
||||||
|
const { windowLevelPresets } = defaults;
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
// Divider
|
// Divider
|
||||||
@ -39,36 +42,36 @@ export default [
|
|||||||
commandName: 'setToolActive',
|
commandName: 'setToolActive',
|
||||||
commandOptions: { toolName: 'Wwwc' },
|
commandOptions: { toolName: 'Wwwc' },
|
||||||
commands: {
|
commands: {
|
||||||
'windowLevelPreset1': {
|
1: {
|
||||||
commandName: 'windowLevelPreset1',
|
commandName: 'setWindowLevel',
|
||||||
commandOptions: {},
|
commandOptions: windowLevelPresets[1],
|
||||||
},
|
},
|
||||||
'windowLevelPreset2': {
|
2: {
|
||||||
commandName: 'windowLevelPreset2',
|
commandName: 'setWindowLevel',
|
||||||
commandOptions: {},
|
commandOptions: windowLevelPresets[2],
|
||||||
},
|
},
|
||||||
'windowLevelPreset3': {
|
3: {
|
||||||
commandName: 'windowLevelPreset3',
|
commandName: 'setWindowLevel',
|
||||||
commandOptions: {},
|
commandOptions: windowLevelPresets[3],
|
||||||
},
|
},
|
||||||
'windowLevelPreset4': {
|
4: {
|
||||||
commandName: 'windowLevelPreset4',
|
commandName: 'setWindowLevel',
|
||||||
commandOptions: {},
|
commandOptions: windowLevelPresets[4],
|
||||||
},
|
},
|
||||||
'windowLevelPreset5': {
|
5: {
|
||||||
commandName: 'windowLevelPreset5',
|
commandName: 'setWindowLevel',
|
||||||
commandOptions: {},
|
commandOptions: windowLevelPresets[5],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
content: ListMenu,
|
content: ListMenu,
|
||||||
contentProps: {
|
contentProps: {
|
||||||
options: [
|
options: [
|
||||||
{ value: 'windowLevelPreset1', title: 'Soft tissue', subtitle: '400 / 40' },
|
{ value: 1, title: 'Soft tissue', subtitle: '400 / 40' },
|
||||||
{ value: 'windowLevelPreset2', title: 'Lung', subtitle: '1500 / -600' },
|
{ value: 2, title: 'Lung', subtitle: '1500 / -600' },
|
||||||
{ value: 'windowLevelPreset3', title: 'Liver', subtitle: '150 / 90' },
|
{ value: 3, title: 'Liver', subtitle: '150 / 90' },
|
||||||
{ value: 'windowLevelPreset4', title: 'Bone', subtitle: '80 / 40' },
|
{ value: 4, title: 'Bone', subtitle: '80 / 40' },
|
||||||
{ value: 'windowLevelPreset5', title: 'Brain', subtitle: '2500 / 480' },
|
{ value: 5, title: 'Brain', subtitle: '2500 / 480' },
|
||||||
],
|
],
|
||||||
renderer: ({ title, subtitle, isActive, index }) => (
|
renderer: ({ title, subtitle, isActive, index }) => (
|
||||||
<>
|
<>
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
import objectHash from 'object-hash';
|
||||||
import hotkeys from './../utils/hotkeys';
|
import hotkeys from './../utils/hotkeys';
|
||||||
import log from './../log.js';
|
import log from './../log.js';
|
||||||
|
|
||||||
@ -6,6 +7,7 @@ import log from './../log.js';
|
|||||||
*
|
*
|
||||||
* @typedef {Object} HotkeyDefinition
|
* @typedef {Object} HotkeyDefinition
|
||||||
* @property {String} commandName - Command to call
|
* @property {String} commandName - Command to call
|
||||||
|
* @property {Object} commandOptions - Command options
|
||||||
* @property {String} label - Display name for hotkey
|
* @property {String} label - Display name for hotkey
|
||||||
* @property {String[]} keys - Keys to bind; Follows Mousetrap.js binding syntax
|
* @property {String[]} keys - Keys to bind; Follows Mousetrap.js binding syntax
|
||||||
*/
|
*/
|
||||||
@ -18,7 +20,7 @@ export class HotkeysManager {
|
|||||||
|
|
||||||
if (!commandsManager) {
|
if (!commandsManager) {
|
||||||
log.warn(
|
log.warn(
|
||||||
'HotkeysManager instantiated without a commandsManager. Hotkeys will be unable to find and run commands.'
|
'[hotkeys] HotkeysManager instantiated without a commandsManager. Hotkeys will be unable to find and run commands.'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,28 +143,30 @@ export class HotkeysManager {
|
|||||||
* When a hotkey combination is triggered, the command name and active contexts
|
* When a hotkey combination is triggered, the command name and active contexts
|
||||||
* are used to locate the correct command to call.
|
* are used to locate the correct command to call.
|
||||||
*
|
*
|
||||||
* @param {HotkeyDefinition} commandName
|
* @param {HotkeyDefinition} command
|
||||||
* @param {String} extension
|
* @param {String} extension
|
||||||
* @returns {undefined}
|
* @returns {undefined}
|
||||||
*/
|
*/
|
||||||
registerHotkeys({ commandName, keys, label } = {}, extension) {
|
registerHotkeys({ commandName, commandOptions = {}, keys, label } = {}, extension) {
|
||||||
if (!commandName) {
|
if (!commandName) {
|
||||||
log.warn(`No command was defined for hotkey "${keys}"`);
|
log.warn(`[hotkeys] No command was defined for hotkey "${keys}"`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const previouslyRegisteredDefinition = this.hotkeyDefinitions[commandName];
|
const commandHash = objectHash({ commandName, commandOptions });
|
||||||
|
const options = Object.keys(commandOptions).length ? JSON.stringify(commandOptions) : 'no';
|
||||||
|
const previouslyRegisteredDefinition = this.hotkeyDefinitions[commandHash];
|
||||||
|
|
||||||
if (previouslyRegisteredDefinition) {
|
if (previouslyRegisteredDefinition) {
|
||||||
const previouslyRegisteredKeys = previouslyRegisteredDefinition.keys;
|
const previouslyRegisteredKeys = previouslyRegisteredDefinition.keys;
|
||||||
this._unbindHotkeys(commandName, previouslyRegisteredKeys);
|
this._unbindHotkeys(commandName, previouslyRegisteredKeys);
|
||||||
log.info(`Unbinding ${commandName} from ${previouslyRegisteredKeys}`);
|
log.info(`[hotkeys] Unbinding ${commandName} with ${options} options from ${previouslyRegisteredKeys}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set definition & bind
|
// Set definition & bind
|
||||||
this.hotkeyDefinitions[commandName] = { keys, label };
|
this.hotkeyDefinitions[commandHash] = { keys, label };
|
||||||
this._bindHotkeys(commandName, keys);
|
this._bindHotkeys(commandName, commandOptions, keys);
|
||||||
log.info(`Binding ${commandName} to ${keys}`);
|
log.info(`[hotkeys] Binding ${commandName} with ${options} options to ${keys}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -191,7 +195,7 @@ export class HotkeysManager {
|
|||||||
* @param {string[]} keys - One or more key combinations that should trigger command
|
* @param {string[]} keys - One or more key combinations that should trigger command
|
||||||
* @returns {undefined}
|
* @returns {undefined}
|
||||||
*/
|
*/
|
||||||
_bindHotkeys(commandName, keys) {
|
_bindHotkeys(commandName, commandOptions = {}, keys) {
|
||||||
const isKeyDefined = keys === '' || keys === undefined;
|
const isKeyDefined = keys === '' || keys === undefined;
|
||||||
if (isKeyDefined) {
|
if (isKeyDefined) {
|
||||||
return;
|
return;
|
||||||
@ -203,7 +207,7 @@ export class HotkeysManager {
|
|||||||
hotkeys.bind(combinedKeys, evt => {
|
hotkeys.bind(combinedKeys, evt => {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
evt.stopPropagation();
|
evt.stopPropagation();
|
||||||
this._commandsManager.runCommand(commandName, { evt });
|
this._commandsManager.runCommand(commandName, { evt, ...commandOptions });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
103
platform/core/src/defaults/hotkeyBindings.js
Normal file
103
platform/core/src/defaults/hotkeyBindings.js
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
import windowLevelPresets from "./windowLevelPresets";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Supported Keys: https://craig.is/killing/mice
|
||||||
|
*/
|
||||||
|
export default [
|
||||||
|
/** Global */
|
||||||
|
{
|
||||||
|
commandName: 'incrementActiveViewport',
|
||||||
|
label: 'Next Viewport',
|
||||||
|
keys: ['right'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'decrementActiveViewport',
|
||||||
|
label: 'Previous Viewport',
|
||||||
|
keys: ['left'],
|
||||||
|
},
|
||||||
|
/** Viewport */
|
||||||
|
{ commandName: 'rotateViewportCW', label: 'Rotate Right', keys: ['r'] },
|
||||||
|
{ commandName: 'rotateViewportCCW', label: 'Rotate Left', keys: ['l'] },
|
||||||
|
{ commandName: 'invertViewport', label: 'Invert', keys: ['i'] },
|
||||||
|
{
|
||||||
|
commandName: 'flipViewportVertical',
|
||||||
|
label: 'Flip Horizontally',
|
||||||
|
keys: ['h'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'flipViewportHorizontal',
|
||||||
|
label: 'Flip Vertically',
|
||||||
|
keys: ['v'],
|
||||||
|
},
|
||||||
|
{ commandName: 'scaleUpViewport', label: 'Zoom In', keys: ['+'] },
|
||||||
|
{ commandName: 'scaleDownViewport', label: 'Zoom Out', keys: ['-'] },
|
||||||
|
{ commandName: 'fitViewportToWindow', label: 'Zoom to Fit', keys: ['='] },
|
||||||
|
{ commandName: 'resetViewport', label: 'Reset', keys: ['space'] },
|
||||||
|
{ commandName: 'nextImage', label: 'Next Image', keys: ['down'] },
|
||||||
|
{ commandName: 'previousImage', label: 'Previous Image', keys: ['up'] },
|
||||||
|
{
|
||||||
|
commandName: 'previousViewportDisplaySet',
|
||||||
|
label: 'Previous Series',
|
||||||
|
keys: ['pagedown'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'nextViewportDisplaySet',
|
||||||
|
label: 'Next Series',
|
||||||
|
keys: ['pageup'],
|
||||||
|
},
|
||||||
|
/** Window level presets */
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[1],
|
||||||
|
label: 'W/L Preset 1',
|
||||||
|
keys: ['1'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[2],
|
||||||
|
label: 'W/L Preset 2',
|
||||||
|
keys: ['2'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[3],
|
||||||
|
label: 'W/L Preset 3',
|
||||||
|
keys: ['3'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[4],
|
||||||
|
label: 'W/L Preset 4',
|
||||||
|
keys: ['4'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[5],
|
||||||
|
label: 'W/L Preset 5',
|
||||||
|
keys: ['5'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[6],
|
||||||
|
label: 'W/L Preset 6',
|
||||||
|
keys: ['6'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[7],
|
||||||
|
label: 'W/L Preset 7',
|
||||||
|
keys: ['7'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[8],
|
||||||
|
label: 'W/L Preset 8',
|
||||||
|
keys: ['8'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
commandName: 'setWindowLevel',
|
||||||
|
commandOptions: windowLevelPresets[9],
|
||||||
|
label: 'W/L Preset 9',
|
||||||
|
keys: ['9'],
|
||||||
|
},
|
||||||
|
];
|
||||||
4
platform/core/src/defaults/index.js
Normal file
4
platform/core/src/defaults/index.js
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
import hotkeyBindings from './hotkeyBindings';
|
||||||
|
import windowLevelPresets from './windowLevelPresets';
|
||||||
|
export { hotkeyBindings, windowLevelPresets };
|
||||||
|
export default { hotkeyBindings, windowLevelPresets };
|
||||||
12
platform/core/src/defaults/windowLevelPresets.js
Normal file
12
platform/core/src/defaults/windowLevelPresets.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
export default {
|
||||||
|
1: { description: 'Soft tissue', window: '400', level: '40' },
|
||||||
|
2: { description: 'Lung', window: '1500', level: '-600' },
|
||||||
|
3: { description: 'Liver', window: '150', level: '90' },
|
||||||
|
4: { description: 'Bone', window: '2500', level: '480' },
|
||||||
|
5: { description: 'Brain', window: '80', level: '40' },
|
||||||
|
6: { description: 'Trest', window: '1', level: '1' },
|
||||||
|
7: { description: '', window: '', level: '' },
|
||||||
|
8: { description: '', window: '', level: '' },
|
||||||
|
9: { description: '', window: '', level: '' },
|
||||||
|
10: { description: '', window: '', level: '' },
|
||||||
|
};
|
||||||
@ -20,7 +20,8 @@ import studies from './studies/';
|
|||||||
import ui from './ui';
|
import ui from './ui';
|
||||||
import user from './user.js';
|
import user from './user.js';
|
||||||
import { ViewModelProvider, useViewModel } from './ViewModelContext';
|
import { ViewModelProvider, useViewModel } from './ViewModelContext';
|
||||||
import utils, { hotkeys } from './utils/';
|
import utils from './utils/';
|
||||||
|
import defaults from './defaults';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
UIDialogService,
|
UIDialogService,
|
||||||
@ -37,6 +38,11 @@ import {
|
|||||||
|
|
||||||
import IWebApiDataSource from './DataSources/IWebApiDataSource';
|
import IWebApiDataSource from './DataSources/IWebApiDataSource';
|
||||||
|
|
||||||
|
const hotkeys = {
|
||||||
|
...utils.hotkeys,
|
||||||
|
defaults: { hotkeyBindings: defaults.hotkeyBindings }
|
||||||
|
};
|
||||||
|
|
||||||
const OHIF = {
|
const OHIF = {
|
||||||
MODULE_TYPES,
|
MODULE_TYPES,
|
||||||
//
|
//
|
||||||
@ -45,6 +51,7 @@ const OHIF = {
|
|||||||
HotkeysManager,
|
HotkeysManager,
|
||||||
ServicesManager,
|
ServicesManager,
|
||||||
//
|
//
|
||||||
|
defaults,
|
||||||
utils,
|
utils,
|
||||||
hotkeys,
|
hotkeys,
|
||||||
studies,
|
studies,
|
||||||
@ -88,6 +95,7 @@ export {
|
|||||||
HotkeysManager,
|
HotkeysManager,
|
||||||
ServicesManager,
|
ServicesManager,
|
||||||
//
|
//
|
||||||
|
defaults,
|
||||||
utils,
|
utils,
|
||||||
hotkeys,
|
hotkeys,
|
||||||
studies,
|
studies,
|
||||||
|
|||||||
@ -15,6 +15,7 @@ describe('Top level exports', () => {
|
|||||||
'UIDialogService',
|
'UIDialogService',
|
||||||
'MeasurementService',
|
'MeasurementService',
|
||||||
//
|
//
|
||||||
|
'defaults',
|
||||||
'utils',
|
'utils',
|
||||||
'hotkeys',
|
'hotkeys',
|
||||||
'studies',
|
'studies',
|
||||||
|
|||||||
@ -1,16 +1,7 @@
|
|||||||
|
import { windowLevelPresets } from '../../defaults';
|
||||||
|
|
||||||
const defaultState = {
|
const defaultState = {
|
||||||
windowLevelData: {
|
windowLevelData: windowLevelPresets,
|
||||||
1: { description: 'Soft tissue', window: '550', level: '40' },
|
|
||||||
2: { description: 'Lung', window: '150', level: '-600' },
|
|
||||||
3: { description: 'Liver', window: '150', level: '90' },
|
|
||||||
4: { description: 'Bone', window: '2500', level: '480' },
|
|
||||||
5: { description: 'Brain', window: '80', level: '40' },
|
|
||||||
6: { description: 'Trest', window: '1', level: '1' },
|
|
||||||
7: { description: '', window: '', level: '' },
|
|
||||||
8: { description: '', window: '', level: '' },
|
|
||||||
9: { description: '', window: '', level: '' },
|
|
||||||
10: { description: '', window: '', level: '' },
|
|
||||||
},
|
|
||||||
generalPreferences: {
|
generalPreferences: {
|
||||||
// language: 'en-US'
|
// language: 'en-US'
|
||||||
},
|
},
|
||||||
|
|||||||
@ -14,6 +14,7 @@ function ViewportPane({
|
|||||||
onInteraction,
|
onInteraction,
|
||||||
acceptDropsFor,
|
acceptDropsFor,
|
||||||
}) {
|
}) {
|
||||||
|
let dropElement = null;
|
||||||
const [{ isHovered, isHighlighted }, drop] = useDrop({
|
const [{ isHovered, isHighlighted }, drop] = useDrop({
|
||||||
accept: acceptDropsFor,
|
accept: acceptDropsFor,
|
||||||
// TODO: pass in as prop?
|
// TODO: pass in as prop?
|
||||||
@ -22,7 +23,7 @@ function ViewportPane({
|
|||||||
const isOver = monitor.isOver();
|
const isOver = monitor.isOver();
|
||||||
|
|
||||||
if (canDrop && isOver && onDrop) {
|
if (canDrop && isOver && onDrop) {
|
||||||
onInteraction();
|
onInteractionHandler();
|
||||||
onDrop(droppedItem);
|
onDrop(droppedItem);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -33,16 +34,32 @@ function ViewportPane({
|
|||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const focus = () => {
|
||||||
|
if (dropElement) {
|
||||||
|
dropElement.focus();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onInteractionHandler = () => {
|
||||||
|
onInteraction();
|
||||||
|
focus();
|
||||||
|
};
|
||||||
|
|
||||||
|
const refHandler = element => {
|
||||||
|
drop(element);
|
||||||
|
dropElement = element;
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
ref={drop}
|
ref={refHandler}
|
||||||
// onInteraction...
|
// onInteractionHandler...
|
||||||
// https://reactjs.org/docs/events.html#mouse-events
|
// https://reactjs.org/docs/events.html#mouse-events
|
||||||
// https://stackoverflow.com/questions/8378243/catch-scrolling-event-on-overflowhidden-element
|
// https://stackoverflow.com/questions/8378243/catch-scrolling-event-on-overflowhidden-element
|
||||||
onMouseDown={onInteraction}
|
onMouseDown={onInteractionHandler}
|
||||||
onClick={onInteraction}
|
onClick={onInteractionHandler}
|
||||||
onScroll={onInteraction}
|
onScroll={onInteractionHandler}
|
||||||
onWheel={onInteraction}
|
onWheel={onInteractionHandler}
|
||||||
className={classnames(
|
className={classnames(
|
||||||
'flex flex-col',
|
'flex flex-col',
|
||||||
'rounded-lg hover:border-primary-light transition duration-300 outline-none overflow-hidden',
|
'rounded-lg hover:border-primary-light transition duration-300 outline-none overflow-hidden',
|
||||||
@ -73,7 +90,7 @@ ViewportPane.propTypes = {
|
|||||||
onInteraction: PropTypes.func.isRequired,
|
onInteraction: PropTypes.func.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
const noop = () => {};
|
const noop = () => { };
|
||||||
|
|
||||||
ViewportPane.defaultProps = {
|
ViewportPane.defaultProps = {
|
||||||
onInteraction: noop,
|
onInteraction: noop,
|
||||||
|
|||||||
@ -30,7 +30,7 @@ const Router = JSON.parse(process.env.USE_HASH_ROUTER)
|
|||||||
? HashRouter
|
? HashRouter
|
||||||
: BrowserRouter;
|
: BrowserRouter;
|
||||||
|
|
||||||
let commandsManager, extensionManager, servicesManager;
|
let commandsManager, extensionManager, servicesManager, hotkeysManager;
|
||||||
|
|
||||||
function App({ config, defaultExtensions }) {
|
function App({ config, defaultExtensions }) {
|
||||||
const init = appInit(config, defaultExtensions);
|
const init = appInit(config, defaultExtensions);
|
||||||
@ -39,17 +39,19 @@ function App({ config, defaultExtensions }) {
|
|||||||
commandsManager = init.commandsManager;
|
commandsManager = init.commandsManager;
|
||||||
extensionManager = init.extensionManager;
|
extensionManager = init.extensionManager;
|
||||||
servicesManager = init.servicesManager;
|
servicesManager = init.servicesManager;
|
||||||
|
hotkeysManager = init.hotkeysManager;
|
||||||
|
|
||||||
// Set appConfig
|
// Set appConfig
|
||||||
const appConfigState = init.appConfig;
|
const appConfigState = init.appConfig;
|
||||||
const { routerBasename, modes, dataSources } = appConfigState;
|
const { routerBasename, modes, dataSources } = appConfigState;
|
||||||
// Use config to create routes
|
// Use config to create routes
|
||||||
const appRoutes = createRoutes(
|
const appRoutes = createRoutes({
|
||||||
modes,
|
modes,
|
||||||
dataSources,
|
dataSources,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
servicesManager
|
servicesManager,
|
||||||
);
|
hotkeysManager
|
||||||
|
});
|
||||||
const {
|
const {
|
||||||
UIDialogService,
|
UIDialogService,
|
||||||
UIModalService,
|
UIModalService,
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import {
|
|||||||
CommandsManager,
|
CommandsManager,
|
||||||
ExtensionManager,
|
ExtensionManager,
|
||||||
ServicesManager,
|
ServicesManager,
|
||||||
// HotkeysManager,
|
HotkeysManager,
|
||||||
UINotificationService,
|
UINotificationService,
|
||||||
UIModalService,
|
UIModalService,
|
||||||
UIDialogService,
|
UIDialogService,
|
||||||
@ -31,13 +31,14 @@ function appInit(appConfigOrFunc, defaultExtensions) {
|
|||||||
// TODO: Wire this up to Rodrigo's basic Context "ContextService"
|
// TODO: Wire this up to Rodrigo's basic Context "ContextService"
|
||||||
const commandsManagerConfig = {
|
const commandsManagerConfig = {
|
||||||
/** Used by commands to inject `viewports` from "redux" */
|
/** Used by commands to inject `viewports` from "redux" */
|
||||||
getAppState: () => {},
|
getAppState: () => { },
|
||||||
/** Used by commands to determine active context */
|
/** Used by commands to determine active context */
|
||||||
getActiveContexts: () => ['VIEWER', 'ACTIVE_VIEWPORT::CORNERSTONE'],
|
getActiveContexts: () => ['VIEWER', 'ACTIVE_VIEWPORT::CORNERSTONE'],
|
||||||
};
|
};
|
||||||
const commandsManager = new CommandsManager(commandsManagerConfig);
|
|
||||||
const servicesManager = new ServicesManager();
|
const servicesManager = new ServicesManager();
|
||||||
// const hotkeysManager = new HotkeysManager(commandsManager, servicesManager);
|
const commandsManager = new CommandsManager(commandsManagerConfig);
|
||||||
|
const hotkeysManager = new HotkeysManager(commandsManager, servicesManager);
|
||||||
const extensionManager = new ExtensionManager({
|
const extensionManager = new ExtensionManager({
|
||||||
commandsManager,
|
commandsManager,
|
||||||
servicesManager,
|
servicesManager,
|
||||||
@ -64,7 +65,6 @@ function appInit(appConfigOrFunc, defaultExtensions) {
|
|||||||
appConfig.dataSources
|
appConfig.dataSources
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO: Init global hotkeys, or the hotkeys manager?
|
|
||||||
// TODO: We no longer use `utils.addServer`
|
// TODO: We no longer use `utils.addServer`
|
||||||
// TODO: We no longer init webWorkers at app level
|
// TODO: We no longer init webWorkers at app level
|
||||||
// TODO: We no longer init the user Manager
|
// TODO: We no longer init the user Manager
|
||||||
@ -80,6 +80,7 @@ function appInit(appConfigOrFunc, defaultExtensions) {
|
|||||||
commandsManager,
|
commandsManager,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
servicesManager,
|
servicesManager,
|
||||||
|
hotkeysManager
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -115,15 +115,17 @@ function ViewerViewportGrid(props) {
|
|||||||
viewportComponents
|
viewportComponents
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const onInterationHandler = () => {
|
||||||
|
setActiveViewportIndex(viewportIndex);
|
||||||
|
};
|
||||||
|
|
||||||
viewportPanes[i] = (
|
viewportPanes[i] = (
|
||||||
<ViewportPane
|
<ViewportPane
|
||||||
key={viewportIndex}
|
key={viewportIndex}
|
||||||
className="m-1"
|
className="m-1"
|
||||||
acceptDropsFor="displayset"
|
acceptDropsFor="displayset"
|
||||||
onDrop={onDropHandler.bind(null, viewportIndex)}
|
onDrop={onDropHandler.bind(null, viewportIndex)}
|
||||||
onInteraction={() => {
|
onInteraction={onInterationHandler}
|
||||||
setActiveViewportIndex(viewportIndex);
|
|
||||||
}}
|
|
||||||
isActive={activeViewportIndex === viewportIndex}
|
isActive={activeViewportIndex === viewportIndex}
|
||||||
>
|
>
|
||||||
<ViewportComponent
|
<ViewportComponent
|
||||||
|
|||||||
@ -6,6 +6,6 @@ import { useLocation } from 'react-router-dom';
|
|||||||
*
|
*
|
||||||
* @name useQuery
|
* @name useQuery
|
||||||
*/
|
*/
|
||||||
export default function() {
|
export default function () {
|
||||||
return new URLSearchParams(useLocation().search);
|
return new URLSearchParams(useLocation().search);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -15,6 +15,7 @@ export default function ModeRoute({
|
|||||||
dataSourceName,
|
dataSourceName,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
servicesManager,
|
servicesManager,
|
||||||
|
hotkeysManager
|
||||||
}) {
|
}) {
|
||||||
// Parse route params/querystring
|
// Parse route params/querystring
|
||||||
const query = useQuery();
|
const query = useQuery();
|
||||||
@ -26,7 +27,7 @@ export default function ModeRoute({
|
|||||||
? StudyInstanceUIDs
|
? StudyInstanceUIDs
|
||||||
: [StudyInstanceUIDs];
|
: [StudyInstanceUIDs];
|
||||||
|
|
||||||
const { extensions, sopClassHandlers } = mode;
|
const { extensions, sopClassHandlers, hotkeys } = mode;
|
||||||
|
|
||||||
if (dataSourceName === undefined) {
|
if (dataSourceName === undefined) {
|
||||||
dataSourceName = extensionManager.defaultDataSourceName;
|
dataSourceName = extensionManager.defaultDataSourceName;
|
||||||
@ -74,6 +75,22 @@ export default function ModeRoute({
|
|||||||
return ViewportGrid({ ...props, dataSource });
|
return ViewportGrid({ ...props, dataSource });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!hotkeys) {
|
||||||
|
console.warn('[hotkeys] No bindings defined for hotkeys hook!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.debug('[hotkeys] Setting up hotkeys...');
|
||||||
|
hotkeysManager.setDefaultHotKeys(hotkeys);
|
||||||
|
hotkeysManager.setHotkeys(hotkeys);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
console.debug('[hotkeys] Removing hotkeys...');
|
||||||
|
hotkeysManager.destroy();
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
route.init({ servicesManager, extensionManager });
|
route.init({ servicesManager, extensionManager });
|
||||||
}, [
|
}, [
|
||||||
@ -83,6 +100,7 @@ export default function ModeRoute({
|
|||||||
route,
|
route,
|
||||||
servicesManager,
|
servicesManager,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
|
hotkeysManager
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// This queries for series, but... What does it do with them?
|
// This queries for series, but... What does it do with them?
|
||||||
|
|||||||
@ -22,12 +22,13 @@ import { ViewModelProvider } from '@ohif/core';
|
|||||||
|
|
||||||
/:modeId/:modeRoute/?queryParameters=example
|
/:modeId/:modeRoute/?queryParameters=example
|
||||||
*/
|
*/
|
||||||
export default function buildModeRoutes(
|
export default function buildModeRoutes({
|
||||||
modes,
|
modes,
|
||||||
dataSources,
|
dataSources,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
servicesManager
|
servicesManager,
|
||||||
) {
|
hotkeysManager
|
||||||
|
}) {
|
||||||
const routes = [];
|
const routes = [];
|
||||||
|
|
||||||
// const dataSources = Object.keys(extensionManager.dataSourceMap).map(a =>
|
// const dataSources = Object.keys(extensionManager.dataSourceMap).map(a =>
|
||||||
@ -58,6 +59,7 @@ export default function buildModeRoutes(
|
|||||||
dataSourceName={dataSourceName}
|
dataSourceName={dataSourceName}
|
||||||
extensionManager={extensionManager}
|
extensionManager={extensionManager}
|
||||||
servicesManager={servicesManager}
|
servicesManager={servicesManager}
|
||||||
|
hotkeysManager={hotkeysManager}
|
||||||
/>
|
/>
|
||||||
</ViewModelProvider>
|
</ViewModelProvider>
|
||||||
);
|
);
|
||||||
@ -83,6 +85,7 @@ export default function buildModeRoutes(
|
|||||||
dataSourceName={defaultDataSourceName}
|
dataSourceName={defaultDataSourceName}
|
||||||
extensionManager={extensionManager}
|
extensionManager={extensionManager}
|
||||||
servicesManager={servicesManager}
|
servicesManager={servicesManager}
|
||||||
|
hotkeysManager={hotkeysManager}
|
||||||
/>
|
/>
|
||||||
</ViewModelProvider>
|
</ViewModelProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -21,19 +21,25 @@ const bakedInRoutes = [
|
|||||||
{ component: NotFound },
|
{ component: NotFound },
|
||||||
];
|
];
|
||||||
|
|
||||||
const createRoutes = (
|
const createRoutes = ({
|
||||||
modes,
|
modes,
|
||||||
dataSources,
|
dataSources,
|
||||||
extensionManager,
|
extensionManager,
|
||||||
servicesManager
|
servicesManager,
|
||||||
) => {
|
hotkeysManager
|
||||||
const routes =
|
}) => {
|
||||||
buildModeRoutes(modes, dataSources, extensionManager, servicesManager) ||
|
const routes = buildModeRoutes({
|
||||||
[];
|
modes,
|
||||||
|
dataSources,
|
||||||
|
extensionManager,
|
||||||
|
servicesManager,
|
||||||
|
hotkeysManager
|
||||||
|
}) || [];
|
||||||
|
|
||||||
const allRoutes = [...routes, ...bakedInRoutes];
|
const allRoutes = [...routes, ...bakedInRoutes];
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
'Creating Routes: ',
|
'Creating Routes:',
|
||||||
modes,
|
modes,
|
||||||
dataSources,
|
dataSources,
|
||||||
routes,
|
routes,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user