bsdialog5/bsdialog5.js

398 lines
9.3 KiB
JavaScript
Raw Normal View History

2023-07-30 13:21:02 +00:00
/**
* BSDialog5
* @version v0.2.0.013 (2023/08/21 1945)
2023-07-30 13:21:02 +00:00
*/
var BSDialog5 = {
Default: function() {
return {
ShowOptions: {
ID: null,
Title: "",
Message: "",
URL: null,
Size: "md",
Colour: "secondary",
ShowFooter: true
},
PromptOptions: {
Title: "",
Message: "",
Size: "md",
Buttons: [
{ Label: "Yes", Value: "Yes", Colour: "primary" },
{ Label: "No", Value: "No", Colour: "secondary" },
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
]
},
UpdateOptions: {
ID: null,
Title: null,
Body: null,
BodyURL: null,
Footer: null,
Size: null
}
};
},
Show: async function (options) {
const a = this;
const _options = Object.assign(a.Default().ShowOptions, options);
2023-07-30 13:21:02 +00:00
a.id = _options.ID;
a.pfx = "bsdia5_";
2023-07-30 13:21:02 +00:00
a.addBackdrop();
a.addModal(_options.ID, _options.Title, _options.Size, true, _options.Colour);
2023-07-30 13:21:02 +00:00
if (_options.URL == null) {
await a.Update({ ID: _options.ID, Body: _options.Message });
2023-07-30 13:21:02 +00:00
} else {
if (a.isNullOrWhitespace(_options.URL)) {
await a.Update({ ID: _options.ID, Body: URL });
} else {
if (_options.URL.startsWith("http://") || _options.URL.startsWith("https://") || _options.URL.startsWith("/")) {
await a.UpdateBodyRemote(_options.ID, _options.URL);
} else {
await a.Update({ ID: _options.ID, Body: URL });
}
}
2023-07-30 13:21:02 +00:00
}
},
Prompt: async function (options) {
const a = this;
const id = "prompt" + Math.floor(Math.random() * 10000) + 1000;
const _options = Object.assign(a.Default().PromptOptions, options);
return await new Promise(async (resolve) => {
await a.Show({
ID: id,
Title: _options.Title,
Message: _options.Message,
Size: _options.Size
});
let html = '';
_options.Buttons.forEach(function(e) {
html += '<button type="button" class="btn btn-' + e.Colour + '" data-prompt-value="' + e.Value + '">' + e.Label + '</button>';
});
a.Update({ ID: id, Footer: html });
const modal = a.Find(id);
modal.Footer[0].querySelectorAll("button").forEach(function(button) {
button.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
const value = button.getAttribute("data-prompt-value");
a.Close(id);
resolve(value);
});
});
modal.Close.forEach(function(sender) {
sender.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
a.Close(id);
resolve("");
});
});
});
},
2023-07-30 13:21:02 +00:00
Clear: function () {
this.GetBody().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
},
Update: async function (options) {
const a = this;
let _options = Object.assign(a.Default().UpdateOptions, options);
const modal = a.Find(_options.ID);
2023-07-30 13:44:18 +00:00
if (modal === null) {
return;
}
2023-07-30 13:21:02 +00:00
if (!this.isNullOrWhitespace(_options.Title)) {
modal.Title.forEach(function(e) {
e.innerHTML = _options.Title;
});
}
2023-07-30 13:21:02 +00:00
if (!this.isNullOrWhitespace(_options.Body)) {
modal.Body.forEach(function(e) {
a.html(e, _options.Body);
});
}
2023-07-30 13:21:02 +00:00
if (!this.isNullOrWhitespace(_options.BodyURL)) {
if (_options.BodyURL.startsWith("http://") || _options.BodyURL.startsWith("https://") || _options.BodyURL.startsWith("/")) {
// ok
} else {
_options.BodyURL = null;
}
}
if (!this.isNullOrWhitespace(_options.BodyURL)) {
await a.UpdateBodyRemote(_options.ID, _options.BodyURL);
}
if (!this.isNullOrWhitespace(_options.Footer)) {
modal.Footer.forEach(function(e) {
a.html(e, _options.Footer);
});
}
if (!this.isNullOrWhitespace(_options.Size)) {
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-" + _options.Size);
});
2023-07-30 13:21:02 +00:00
}
},
UpdateBodyRemote: async function (id, url) {
const a = this;
2023-07-30 13:21:02 +00:00
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.Update({ ID: id, Body: data });
}).catch((error) => {
a.Update({ ID: id, Body: "Error: " + error });
});
},
Exists: function (id) {
return (this.Find(id) !== null);
},
Find: function (id) {
const modal = this.GetBody().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
},
GetBody: function() {
return document.getElementsByTagName("body")[0];
},
addBackdrop: function () {
const a = this;
2023-07-30 13:21:02 +00:00
// don't allow duplicates
if (a.GetBody().querySelectorAll(".modal-backdrop").length > 0) {
2023-07-30 13:21:02 +00:00
return;
}
a.appendHtml(a.GetBody(), '<div class="modal-backdrop fade show"></div>');
2023-07-30 13:21:02 +00:00
// lock background
a.GetBody().classList.add("modal-open");
a.GetBody().style.overflow = "hidden";
2023-07-30 13:21:02 +00:00
// close
let backdrop = a.GetBody().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, showFooter, closeColour) {
const a = this;
2023-07-30 13:21:02 +00:00
// 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>';
if (showFooter === true) {
html += ' <div class="modal-footer">';
html += ' <button type="button" class="btn btn-' + closeColour + '" 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.GetBody(), 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 () {
const a = this;
if (a.GetBody().querySelectorAll(".modal-backdrop").length <= 0) {
return;
}
if (a.GetBody().querySelectorAll(".modal").length > 0) {
return;
}
let backdrop = a.GetBody().querySelectorAll(".modal-backdrop")[0];
backdrop.parentNode.removeChild(backdrop);
// unlock background
a.GetBody().classList.remove("modal-open");
a.GetBody().style.overflow = null;
},
toggleSize: function () {
const 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
}
};