38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
import { Template } from 'meteor/templating';
|
|
import _ from 'underscore';
|
|
import { OHIF } from 'ohif-core';
|
|
|
|
Template.windowLevelPresetsForm.onCreated(() => {
|
|
const instance = Template.instance();
|
|
const { wlPresets } = OHIF.viewerbase;
|
|
|
|
instance.api = {
|
|
save() {
|
|
const form = instance.$('form').first().data('component');
|
|
const definitions = form.value();
|
|
const promise = wlPresets.store(definitions);
|
|
promise.then(() => OHIF.ui.notifications.success({
|
|
text: 'The Window/Levels preferences were successfully saved.'
|
|
}));
|
|
return promise;
|
|
},
|
|
|
|
resetDefaults() {
|
|
const dialogOptions = {
|
|
class: 'themed',
|
|
title: 'Reset Window/Levels Presets',
|
|
message: 'Are you sure you want to reset all the window level presets to their defaults?'
|
|
};
|
|
|
|
return OHIF.ui.showDialog('dialogConfirm', dialogOptions).then(() => wlPresets.resetDefaults());
|
|
}
|
|
};
|
|
});
|
|
|
|
Template.windowLevelPresetsForm.helpers({
|
|
getPresetsInputInformationList() {
|
|
OHIF.viewerbase.wlPresets.changeObserver.depend();
|
|
return _.toArray(OHIF.viewer.wlPresets);
|
|
}
|
|
});
|