ohif-viewer/Packages/ohif-core/client/ui/dialog/display.js
2018-02-02 09:14:44 -02:00

78 lines
2.5 KiB
JavaScript

import { Template } from 'meteor/templating';
import { Blaze } from 'meteor/blaze';
import { _ } from 'meteor/underscore';
import { $ } from 'meteor/jquery';
import { OHIF } from 'meteor/ohif:core';
OHIF.ui.showDialog = (templateName, dialogData={}) => {
// Check if the given template exists
const template = Template[templateName];
if (!template) {
throw {
name: 'TEMPLATE_NOT_FOUND',
message: `Template ${templateName} not found.`
};
}
let promise;
let templateData;
if (dialogData && dialogData.promise instanceof Promise) {
// Use the given promise to control the modal
promise = dialogData.promise;
templateData = dialogData;
} else {
// Create a new promise to control the modal and store its resolve and reject callbacks
let promiseResolve;
let promiseReject;
promise = new Promise((resolve, reject) => {
promiseResolve = resolve;
promiseReject = reject;
});
// Render the dialog with the given template passing the promise object and callbacks
templateData = _.extend({}, dialogData, {
promise,
promiseResolve,
promiseReject
});
}
const view = Blaze.renderWithData(template, templateData, document.body);
const node = view.firstNode();
const $node = node && $(node);
let $modal;
if ($node && $node.hasClass('modal')) {
$modal = $node;
} else if ($node && $node.has('.modal')) {
$modal = $node.find('.modal:first');
}
// Destroy the created dialog view when the promise is either resolved or rejected
const dismissModal = (hideFirst=false) => {
if (hideFirst || (dialogData && dialogData.promise && $modal)) {
$modal.one('hidden.bs.modal', () => Blaze.remove(view)).modal('hide');
} else {
Blaze.remove(view);
}
};
// Create a handler to dismiss the modal on navigation
const $body = $(document.body);
const navigationHandler = () => {
dismissModal(true);
$body.off('ohif.navigated', navigationHandler);
};
promise.then(() => dismissModal(false)).catch(() => dismissModal(false));
// Dismiss the modal if navigation occurs and it should not be kept opened
if (!dialogData.keepOpenOnNavigation) {
$body.on('ohif.navigated', navigationHandler);
}
// Return the promise to allow callbacks stacking from outside
return promise;
};