bsdialog5/bsdialog5.js

300 lines
6.8 KiB
JavaScript
Raw Permalink Normal View History

2023-07-30 13:21:02 +00:00
/**
* BSDialog5
* @version v0.1.2.011 (2023/08/03 0010)
2023-07-30 13:21:02 +00:00
*/
var BSDialog5 = {
Create: async function (id, title, url, size) {
2023-07-30 13:21:02 +00:00
var a = this;
a.id = id;
a.pfx = "bsdia5_";
a.body = document.getElementsByTagName("body")[0];
2023-07-30 13:21:02 +00:00
a.addBackdrop();
a.addModal(id, title, size);
2023-07-30 13:21:02 +00:00
if (a.isNullOrWhitespace(url)) {
a.UpdateBody(id, "");
2023-08-03 13:02:22 +00:00
} else if (url.startsWith("http://") || url.startsWith("https://") || url.startsWith("/")) {
a.UpdateBodyRemote(id, url);
2023-07-30 13:21:02 +00:00
} else {
await a.UpdateBody(id, url);
2023-07-30 13:21:02 +00:00
}
},
Clear: function () {
this.body.querySelectorAll(".modal").forEach(function(e) {
e.parentNode.removeChild(e);
});
2023-07-30 13:21:02 +00:00
this.removeBackdrop();
2023-07-30 13:21:02 +00:00
},
Close: function (id) {
2023-07-30 13:44:18 +00:00
let modal = this.Find(id);
if (modal === null) {
return;
2023-07-30 13:21:02 +00:00
}
modal.Modal.forEach(function(e) {
e.parentNode.removeChild(e);
});
2023-07-30 13:44:18 +00:00
modal = this.Find(id);
if (modal !== null) {
return;
2023-07-30 13:21:02 +00:00
}
this.removeBackdrop();
2023-07-30 13:21:02 +00:00
},
UpdateTitle: function (id, title) {
2023-07-30 13:44:18 +00:00
let modal = this.Find(id);
if (modal === null) {
return;
}
2023-07-30 13:21:02 +00:00
2023-07-30 13:44:18 +00:00
modal.Title.forEach(function(e) {
e.innerHTML = title;
});
},
UpdateSize: function (id, size) {
2023-07-30 13:44:18 +00:00
let modal = this.Find(id);
if (modal === null) {
return;
}
2023-07-30 13:21:02 +00:00
2023-07-30 13:44:18 +00:00
modal.Modal.forEach(function(e) {
e.classList.remove("modal-sm");
e.classList.remove("modal-md");
e.classList.remove("modal-lg");
e.classList.remove("modal-xl");
e.classList.add("modal-" + size);
});
2023-07-30 13:21:02 +00:00
},
UpdateBody: function (id, content) {
2023-07-30 13:21:02 +00:00
var a = this;
2023-07-30 13:44:18 +00:00
let modal = a.Find(id);
if (modal === null) {
return;
2023-07-30 13:21:02 +00:00
}
2023-07-30 13:44:18 +00:00
modal.Body.forEach(function(e) {
a.html(e, content);
});
2023-07-30 13:21:02 +00:00
},
UpdateBodyRemote: async function (id, url) {
2023-07-30 13:21:02 +00:00
var a = this;
if (!a.Exists(id)) {
return;
2023-07-30 13:21:02 +00:00
}
await fetch(url, {
cache: 'no-cache',
credentials: 'same-origin'
}).then(data => data.text()).then(data => {
a.UpdateBody(id, data);
}).catch((error) => {
a.UpdateBody(id, "Error: " + error);
});
2023-07-30 13:21:02 +00:00
},
UpdateFooter: function (id, content) {
var a = this;
let modal = a.Find(id);
if (modal === null) {
return;
}
modal.Footer.forEach(function(e) {
a.html(e, content);
});
},
Exists: function (id) {
return (this.Find(id) !== null);
},
Find: function (id) {
let modal = this.body.querySelectorAll("#" + this.pfx + id + ".modal");
if (!modal) {
return null;
2023-07-30 13:21:02 +00:00
}
if (modal.length <= 0) {
return null;
2023-07-30 13:21:02 +00:00
}
return {
Title: modal[0].querySelectorAll(".modal-title"),
Body: modal[0].querySelectorAll(".modal-body"),
Footer: modal[0].querySelectorAll(".modal-footer"),
Close: modal[0].querySelectorAll("[data-bs-dismiss='modal']"),
Modal: modal
};
2023-07-30 13:21:02 +00:00
},
ShowToast: function (id, title, message, size) {
this.Create(id, title, null, size);
this.UpdateBody(id, message);
},
addBackdrop: function () {
let a = this;
2023-07-30 13:21:02 +00:00
// don't allow duplicates
if (a.body.querySelectorAll(".modal-backdrop").length > 0) {
2023-07-30 13:21:02 +00:00
return;
}
a.appendHtml(a.body, '<div class="modal-backdrop fade show"></div>');
2023-07-30 13:21:02 +00:00
// lock background
a.body.classList.add("modal-open");
a.body.style.overflow = "hidden";
2023-07-30 13:21:02 +00:00
// close
let backdrop = a.body.querySelectorAll(".modal-backdrop")[0];
backdrop.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
a.Clear();
});
2023-07-30 13:21:02 +00:00
},
addModal: function (id, title, size) {
2023-07-30 13:21:02 +00:00
var a = this;
// don't allow duplicates
let modal = a.Find(id);
if (modal !== null) {
return;
}
let html = "";
html += '<div class="modal modal-' + size + ' fade show d-block" id="' + a.pfx + id + '" tabindex="-1" aria-modal="true" role="dialog">';
html += ' <div class="modal-dialog">';
html += ' <div class="modal-content">';
html += ' <div class="modal-header">';
html += ' <span class="modal-title fs-5">' + title + '</span>';
html += ' <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>';
html += ' </div>';
html += ' <div class="modal-body">';
html += '<div class="row mt-3 pb-3">';
html += ' <div class="col-12 text-center">';
html += ' <div class="spinner-border">';
html += ' <span class="visually-hidden">Loading...</span>';
html += ' </div>';
html += ' </div>';
html += '</div>';
2023-07-30 13:21:02 +00:00
html += ' </div>';
html += ' <div class="modal-footer">';
html += ' <button type="button" class="btn btn-outline-secondary" data-bs-dismiss="modal">Close</button>';
html += ' </div>';
2023-07-30 13:21:02 +00:00
html += ' </div>';
html += ' </div>';
html += '</div>';
a.appendHtml(a.body, html);
2023-07-30 13:21:02 +00:00
modal = a.Find(id);
if (modal === null) {
2023-07-30 13:21:02 +00:00
return;
}
2023-07-30 13:21:02 +00:00
// modal.addEventListener("click", function(e){
// e.stopPropagation();
// e.preventDefault();
2023-07-30 13:21:02 +00:00
// a.Close(id);
// });
2023-07-30 13:21:02 +00:00
modal.Close.forEach(function(e){
e.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
2023-07-30 13:21:02 +00:00
a.Close(id);
});
2023-07-30 13:21:02 +00:00
e.addEventListener("auxclick", function(e){
e.stopPropagation();
e.preventDefault();
2023-07-30 13:21:02 +00:00
if (e.button === 1) {
a.toggleSize();
}
});
});
2023-07-30 13:21:02 +00:00
},
appendHtml: function (el, html) {
let node = document.createElement('template');
node.innerHTML = html;
2023-07-30 13:21:02 +00:00
node = node.content.firstChild;
2023-07-30 13:21:02 +00:00
el.appendChild(node);
2023-07-30 13:21:02 +00:00
},
html: function (el, newHtml) {
/// todo: replace with pure JS
if (jQuery) {
jQuery(el).html(newHtml);
} else {
el.innerHTML = newHtml;
}
2023-07-30 13:21:02 +00:00
},
isNullOrWhitespace: function(e) {
if (typeof (e) == "undefined") {
return true;
}
2023-07-30 13:21:02 +00:00
if (e == null) {
return true;
}
2023-07-30 13:21:02 +00:00
if (e == false) {
return true;
}
2023-07-30 13:21:02 +00:00
return (e.trim().length <= 0);
},
removeBackdrop: function () {
if (this.body.querySelectorAll(".modal-backdrop").length <= 0) {
return;
}
let backdrop = this.body.querySelectorAll(".modal-backdrop")[0];
backdrop.parentNode.removeChild(backdrop);
// unlock background
this.body.classList.remove("modal-open");
this.body.style.overflow = null;
},
toggleSize: function () {
var a = this;
let modal = a.Find(a.id);
if (modal === null) {
return;
}
let modalDialog = modal.Modal[0];
if (modalDialog.classList.contains('modal-sm')) {
modalDialog.classList.remove("modal-sm");
modalDialog.classList.add("modal-md");
} else if (modalDialog.classList.contains('modal-md')) {
modalDialog.classList.remove("modal-md");
modalDialog.classList.add("modal-lg");
} else if (modalDialog.classList.contains('modal-lg')) {
modalDialog.classList.remove("modal-lg");
modalDialog.classList.add("modal-xl");
} else if (modalDialog.classList.contains('modal-xl')) {
modalDialog.classList.remove("modal-xl");
modalDialog.classList.add("modal-sm");
} else {
modalDialog.classList.remove("modal-sm");
modalDialog.classList.remove("modal-md");
modalDialog.classList.remove("modal-lg");
modalDialog.classList.remove("modal-xl");
modalDialog.classList.add("modal-md");
}
2023-07-30 13:21:02 +00:00
}
};