Adjustments on hotkeys and presets
This commit is contained in:
parent
e6b5a21ae2
commit
2f7722d569
@ -1,7 +0,0 @@
|
||||
<template name="hotkeysDialog">
|
||||
{{#dialogSimple (extend this dialogClass='dialog-hotkeys' title='Keyboard Shortcuts')}}
|
||||
{{! >hotkeysForm this}}
|
||||
<hr>
|
||||
{{>windowLevelPresetsForm this}}
|
||||
{{/dialogSimple}}
|
||||
</template>
|
||||
@ -1,3 +0,0 @@
|
||||
.dialog-hotkeys .modal-body
|
||||
max-height: 80vh
|
||||
overflow-y: auto
|
||||
@ -3,8 +3,7 @@
|
||||
{{#each hotkeyInputInformation in getHotkeyInputInformationList}}
|
||||
{{>inputText (extend hotkeyInputInformation class='hotkey')}}
|
||||
{{/each}}
|
||||
<hr>
|
||||
<div class="clearfix">
|
||||
<div class="clearfix form-buttons">
|
||||
{{#button class='btn btn-primary pull-right' action='save'}}Save{{/button}}
|
||||
{{#button class='btn btn-secondary pull-right m-r-1' action='resetDefaults'}}Reset to Defaults{{/button}}
|
||||
</div>
|
||||
|
||||
@ -71,11 +71,6 @@ Template.hotkeysForm.onCreated(() => {
|
||||
};
|
||||
});
|
||||
|
||||
// >>>> REMOVE ME
|
||||
Meteor.startup(() => {
|
||||
OHIF.ui.showDialog('hotkeysDialog', { contextName: 'viewer' });
|
||||
});
|
||||
|
||||
Template.hotkeysForm.events({
|
||||
'keydown .hotkey'(event, instance) {
|
||||
if (instance.allowedKeys.indexOf(event.keyCode) > -1) {
|
||||
|
||||
@ -1,5 +1,2 @@
|
||||
import './dialog.html';
|
||||
import './dialog.styl';
|
||||
|
||||
import './form.html';
|
||||
import './form.js';
|
||||
|
||||
@ -13,8 +13,11 @@ OHIF.user.getData = key => {
|
||||
// Check if there is an user logged in
|
||||
OHIF.user.validate();
|
||||
|
||||
// Get the user object
|
||||
const user = Meteor.user();
|
||||
|
||||
// Get user profile data
|
||||
const profile = Meteor.user().profile;
|
||||
const profile = user && user.profile;
|
||||
|
||||
// Get the user persistent data
|
||||
const data = profile && profile.persistent;
|
||||
|
||||
@ -47,9 +47,6 @@ Template.viewerMain.onRendered(() => {
|
||||
OHIF.viewerbase.layoutManager = new LayoutManager(parentElement, studies);
|
||||
studyPrefetcher.setStudies(studies);
|
||||
|
||||
// Enable hotkeys
|
||||
hotkeyUtils.enableHotkeys();
|
||||
|
||||
Session.set('OHIFViewerMainRendered', Random.id());
|
||||
});
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Preset</th>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Window Level (WL)</th>
|
||||
<th>Window Width (WW)</th>
|
||||
</tr>
|
||||
@ -20,8 +20,7 @@
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
<hr>
|
||||
<div class="clearfix">
|
||||
<div class="clearfix form-buttons">
|
||||
{{#button class='btn btn-primary pull-right' action='save'}}Save{{/button}}
|
||||
{{#button class='btn btn-secondary pull-right m-r-1' action='resetDefaults'}}Reset to Defaults{{/button}}
|
||||
</div>
|
||||
|
||||
@ -121,22 +121,24 @@ class WindowLevelPresetsManager {
|
||||
}
|
||||
|
||||
store(wlPresets) {
|
||||
const self = this;
|
||||
return new Promise((resolve, reject) => {
|
||||
if (this.storeFunction) {
|
||||
this.storeFunction(wlPresets).then(resolve).catch(reject);
|
||||
if (self.storeFunction) {
|
||||
self.storeFunction(wlPresets).then(resolve).catch(reject);
|
||||
} else if (Meteor.userId()) {
|
||||
OHIF.user.setData(WL_STORAGE_KEY, wlPresets).then(resolve).catch(reject);
|
||||
} else {
|
||||
Session.setPersistent(WL_STORAGE_KEY, wlPresets);
|
||||
resolve();
|
||||
}
|
||||
}).then(() => this.setOHIFWLPresets(wlPresets));
|
||||
}).then(() => self.setOHIFWLPresets(wlPresets));
|
||||
}
|
||||
|
||||
retrieve() {
|
||||
const self = this;
|
||||
return new Promise((resolve, reject) => {
|
||||
if (this.retrieveFunction) {
|
||||
this.retrieveFunction().then(resolve).catch(reject);
|
||||
if (self.retrieveFunction) {
|
||||
self.retrieveFunction().then(resolve).catch(reject);
|
||||
} else if (Meteor.userId()) {
|
||||
try {
|
||||
resolve(OHIF.user.getData(WL_STORAGE_KEY));
|
||||
@ -150,14 +152,15 @@ class WindowLevelPresetsManager {
|
||||
}
|
||||
|
||||
load() {
|
||||
const self = this;
|
||||
return new Promise((resolve, reject) => {
|
||||
this.retrieve().then(wlPresets => {
|
||||
self.retrieve().then(wlPresets => {
|
||||
if (wlPresets) {
|
||||
this.setOHIFWLPresets(wlPresets);
|
||||
self.setOHIFWLPresets(wlPresets);
|
||||
} else {
|
||||
this.loadDefauls();
|
||||
self.loadDefaults();
|
||||
}
|
||||
}).catch(this.loadDefauls);
|
||||
}).catch(self.loadDefaults);
|
||||
});
|
||||
}
|
||||
|
||||
@ -187,7 +190,7 @@ class WindowLevelPresetsManager {
|
||||
this.changeObserver.changed();
|
||||
}
|
||||
|
||||
loadDefauls() {
|
||||
loadDefaults() {
|
||||
this.setOHIFWLPresets(OHIF.viewer.defaultWLPresets);
|
||||
}
|
||||
|
||||
@ -196,11 +199,6 @@ class WindowLevelPresetsManager {
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: add this to a namespace definition
|
||||
Meteor.startup(function() {
|
||||
|
||||
});
|
||||
|
||||
/**
|
||||
* Export functions inside WLPresets namespace.
|
||||
*/
|
||||
|
||||
@ -217,6 +217,9 @@ Meteor.startup(function() {
|
||||
OHIF.viewer.hotkeyFunctions = {};
|
||||
|
||||
OHIF.viewer.loadedSeriesData = {};
|
||||
|
||||
// Enable hotkeys
|
||||
hotkeyUtils.enableHotkeys();
|
||||
});
|
||||
|
||||
// Define a jQuery reverse function
|
||||
|
||||
Loading…
Reference in New Issue
Block a user