66 lines
2.0 KiB
JavaScript
66 lines
2.0 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 = () => {
|
|
if (dialogData && dialogData.promise && $modal) {
|
|
$modal.one('hidden.bs.modal', () => Blaze.remove(view)).modal('hide');
|
|
} else {
|
|
Blaze.remove(view);
|
|
}
|
|
};
|
|
|
|
promise.then(dismissModal).catch(dismissModal);
|
|
|
|
// Return the promise to allow callbacks stacking from outside
|
|
return promise;
|
|
};
|