feat(popover): Add click-to-dismiss popover template to core

This commit is contained in:
Aysel Afsar 2018-05-25 15:15:15 -04:00 committed by Erik Ziegler
parent b64c9878af
commit 2ad86af12e
3 changed files with 27 additions and 14 deletions

View File

@ -36,3 +36,4 @@ import './input/text.html';
import './notification';
import './popover/form.html';
import './popover/popoverSimple.html';

View File

@ -0,0 +1,4 @@
<template name="popoverSimple">
{{#if this.message}}{{this.message}}{{/if}}
{{>UI.contentBlock}}
</template>

View File

@ -52,25 +52,33 @@ OHIF.ui.showPopover = (templateName, popoverData, options={}) => {
const popoverOptions = Object.assign({} , defaults, options);
popoverOptions.content = Blaze.toHTMLWithData(template, popoverData);
if (popoverOptions.hideOnClick) {
$element.click(function() {
$(this).popover('hide');
});
}
$element.popover(popoverOptions);
$element.one('shown.bs.popover', function(event) {
const popoverId = $element.attr('aria-describedby');
const popover = document.getElementById(popoverId);
const $popover = $(popover);
const $popoverContent = $popover.find('.popover-content');
const dismissPopover = () => $element.popover('hide');
if (popoverOptions.trigger !== 'hover') {
$element.one('shown.bs.popover', function(event) {
const popoverId = $element.attr('aria-describedby');
const popover = document.getElementById(popoverId);
const $popover = $(popover);
const $popoverContent = $popover.find('.popover-content');
const dismissPopover = () => $element.popover('hide');
$popoverContent.html('');
$popoverContent.html('');
const view = Blaze.renderWithData(template, templateData, $popoverContent[0]);
$element.one('hidden.bs.popover', () => {
Blaze.remove(view);
$element.popover('destroy');
const view = Blaze.renderWithData(template, templateData, $popoverContent[0]);
$element.one('hidden.bs.popover', () => {
Blaze.remove(view);
$element.popover('destroy');
});
promise.then(dismissPopover).catch(dismissPopover);
});
promise.then(dismissPopover).catch(dismissPopover);
});
}
if (popoverOptions.trigger === 'manual') {
$element.popover('show');