2016-08-15 17:04:36 +00:00
|
|
|
const modals = {};
|
|
|
|
|
2016-11-07 20:24:38 +00:00
|
|
|
export function registerModal (instance) {
|
2016-08-15 17:04:36 +00:00
|
|
|
if (instance === null) {
|
|
|
|
// Modal was unmounted
|
|
|
|
return
|
|
|
|
}
|
|
|
|
modals[instance.constructor.name] = instance;
|
|
|
|
}
|
|
|
|
|
2016-11-07 20:24:38 +00:00
|
|
|
export function showModal (modalCls, ...args) {
|
|
|
|
return _getModal(modalCls).show(...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function toggleModal (modalCls, ...args) {
|
|
|
|
return _getModal(modalCls).toggle(...args);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hideModal (modalCls) {
|
|
|
|
return _getModal(modalCls).hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
function _getModal (modalCls) {
|
2016-08-15 17:04:36 +00:00
|
|
|
return modals[modalCls.name];
|
|
|
|
}
|