mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
48 lines
984 B
JavaScript
48 lines
984 B
JavaScript
import PromptModal from './prompt-modal';
|
|
import AlertModal from './alert-modal';
|
|
|
|
const modals = {};
|
|
|
|
export function registerModal (instance) {
|
|
if (instance === null) {
|
|
// Modal was unmounted
|
|
return;
|
|
}
|
|
modals[instance.constructor.name] = instance;
|
|
}
|
|
|
|
export function showPrompt (config) {
|
|
showModal(PromptModal, config);
|
|
}
|
|
|
|
export function showAlert (config) {
|
|
showModal(AlertModal, config);
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
export function reloadModal (modalCls) {
|
|
return _getModal(modalCls)._load();
|
|
}
|
|
|
|
export function hideAllModals () {
|
|
for (const key of Object.keys(modals)) {
|
|
const modal = modals[key];
|
|
modal.hide && modal.hide();
|
|
}
|
|
}
|
|
|
|
function _getModal (modalCls) {
|
|
return modals[modalCls.name];
|
|
}
|