bsdialog4/bsdialog4.js

537 lines
12 KiB
JavaScript
Raw Normal View History

2023-08-03 10:29:17 +00:00
/**
* BSDialog4
2023-08-29 23:51:47 +00:00
* @version v0.1.3.017 (2023/08/30 00:17)
2023-08-03 10:29:17 +00:00
*/
var BSDialog = {
2023-08-29 23:51:47 +00:00
Show: async function (options) {
const a = this;
const _options = Object.assign(a.Default().ShowOptions, options);
a.id = _options.ID;
a.pfx = "bsdia4_";
a.body = document.getElementsByTagName("body")[0];
a.addBackdrop();
a.addModal(_options.ID, _options.Title, _options.Size, true, _options.Colour);
if (_options.URL == null) {
await a.Update({ ID: _options.ID, Body: _options.Message });
2023-08-29 23:51:47 +00:00
} else {
if (a.isNullOrWhitespace(_options.URL)) {
await a.Update({ ID: _options.ID, Body: _options.URL });
2023-08-29 23:51:47 +00:00
} else {
if (_options.URL.startsWith("http://") || _options.URL.startsWith("https://") || _options.URL.startsWith("/")) {
let response = await a.retrieveURL(_options.URL);
await a.Update({ ID: _options.ID, Body: response });
2023-08-29 23:51:47 +00:00
} else {
await a.Update({ ID: _options.ID, Body: _options.URL });
2023-08-29 23:51:47 +00:00
}
}
}
},
Prompt: async function (options) {
const a = this;
2023-08-30 00:55:27 +00:00
let id = Math.floor(Math.random() * 10000) + 1000;
2023-08-29 23:51:47 +00:00
const _options = Object.assign(a.Default().PromptOptions, options);
2023-08-30 00:55:27 +00:00
switch (_options.Type) {
case "textbox":
return await a.showTextboxPrompt(id, _options);
case "button":
default:
return await a.showButtonPrompt(id, _options);
}
},
Clear: function () {
this.body.querySelectorAll(".modal").forEach(function(e) {
e.parentNode.removeChild(e);
});
2023-08-03 10:29:17 +00:00
this.removeBackdrop();
2023-08-03 10:29:17 +00:00
},
Close: function (id) {
let modal = this.Find(id);
if (modal === null) {
return;
}
modal.Modal.forEach(function(e) {
e.parentNode.removeChild(e);
});
modal = this.Find(id);
if (modal !== null) {
return;
}
this.removeBackdrop();
2023-08-03 10:29:17 +00:00
},
2023-08-29 23:51:47 +00:00
Update: async function (options) {
const a = this;
let _options = Object.assign(a.Default().UpdateOptions, options);
const modal = a.Find(_options.ID);
if (modal === null) {
return;
}
2023-08-29 23:51:47 +00:00
if (!this.isNullOrWhitespace(_options.Title)) {
modal.Title.forEach(function(e) {
e.innerHTML = _options.Title;
});
}
2023-08-29 23:51:47 +00:00
if (!this.isNullOrWhitespace(_options.Body)) {
modal.Body.forEach(function(e) {
a.html(e, _options.Body);
});
}
2023-08-29 23:51:47 +00:00
if (!this.isNullOrWhitespace(_options.BodyURL)) {
if (_options.BodyURL.startsWith("http://") || _options.BodyURL.startsWith("https://") || _options.BodyURL.startsWith("/")) {
// ok
} else {
_options.BodyURL = null;
}
}
2023-08-03 10:29:17 +00:00
2023-08-29 23:51:47 +00:00
if (!this.isNullOrWhitespace(_options.BodyURL)) {
let response = await a.retrieveURL(_options.BodyURL);
await a.Update({ ID: _options.ID, Body: response });
2023-08-03 10:29:17 +00:00
}
2023-08-29 23:51:47 +00:00
if (!this.isNullOrWhitespace(_options.Footer)) {
modal.Footer.forEach(function(e) {
a.html(e, _options.Footer);
});
}
if (!this.isNullOrWhitespace(_options.Size)) {
modal.Modal[0].querySelectorAll(".modal-dialog").forEach(function(e) {
2023-08-30 00:02:45 +00:00
e.classList.forEach(function(e2) {
if (e2 == "modal-dialog") {
return;
}
if (e2.startsWith("modal-")) {
e.classList.remove(e2);
}
});
2023-08-29 23:51:47 +00:00
e.classList.add("modal-" + _options.Size);
});
}
2023-08-03 10:29:17 +00:00
},
Exists: function (id) {
return (this.Find(id) !== null);
},
Find: function (id) {
const a = this;
const modal = a.body.querySelectorAll("#" + a.pfx + id + ".modal");
if (!modal) {
return null;
2023-08-03 10:29:17 +00:00
}
if (modal.length <= 0) {
return null;
}
2023-08-03 10:29:17 +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-dismiss='modal']"),
Modal: modal
};
2023-08-03 10:29:17 +00:00
},
2023-08-29 23:51:47 +00:00
Default: function() {
return {
ShowOptions: {
ID: null,
Title: "",
Message: "",
URL: null,
Size: "md",
Colour: "secondary",
ShowFooter: true
},
PromptOptions: {
2023-08-30 00:55:27 +00:00
Type: "button",
2023-08-29 23:51:47 +00:00
Title: "",
Message: "",
Size: "md",
Buttons: [
{ Label: "Yes", Value: "Yes", Colour: "primary" },
{ Label: "No", Value: "No", Colour: "secondary" },
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
2023-08-30 00:55:27 +00:00
],
Textbox: {
Label: "",
LabelSize: 4,
Placeholder: "",
Value: "",
BoxSize: 8
}
2023-08-29 23:51:47 +00:00
},
ToastOptions: {
ID: null,
Title: "",
Message: "",
Size: "md"
},
UpdateOptions: {
ID: null,
Title: null,
Body: null,
BodyURL: null,
Footer: null,
Size: null
}
2023-08-29 23:51:47 +00:00
};
},
addBackdrop: function () {
let a = this;
// don't allow duplicates
if (a.body.querySelectorAll(".modal-backdrop").length > 0) {
return;
}
2023-08-03 10:29:17 +00:00
a.appendHtml(a.body, '<div class="modal-backdrop fade show"></div>');
2023-08-03 10:29:17 +00:00
// lock background
a.body.classList.add("modal-open");
a.body.style.overflow = "hidden";
2023-08-03 10:29:17 +00:00
// close
let backdrop = a.body.querySelectorAll(".modal-backdrop")[0];
backdrop.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
2023-08-03 10:29:17 +00:00
a.Clear();
2023-08-03 10:29:17 +00:00
});
},
addModal: function (id, title, size, showFooter, closeColour) {
var a = this;
// don't allow duplicates
let modal = a.Find(id);
if (modal !== null) {
return;
}
let html = "";
html += '<div class="modal fade show d-block" id="' + a.pfx + id + '" tabindex="-1">';
html += ' <div class="modal-dialog modal-' + size + '">';
html += ' <div class="modal-content">';
html += ' <div class="modal-header">';
html += ' <span class="modal-title font-weight-bold">' + title + '</span>';
html += ' <button type="button" class="close" data-dismiss="modal" aria-label="Close">';
html += ' <span aria-hidden="true">&times;</span>';
html += ' </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" role="status">';
html += ' <span class="sr-only">Loading...</span>';
html += ' </div>';
html += ' </div>';
html += '</div>';
html += ' </div>';
if (showFooter === true) {
html += ' <div class="modal-footer">';
html += ' <button type="button" class="btn btn-' + closeColour + '" data-dismiss="modal">Close</button>';
html += ' </div>';
}
html += ' </div>';
html += ' </div>';
html += '</div>';
a.appendHtml(a.body, html);
modal = a.Find(id);
if (modal === null) {
return;
}
modal.Close.forEach(function(e){
e.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
a.Close(id);
});
e.addEventListener("auxclick", function(e){
e.stopPropagation();
e.preventDefault();
if (e.button === 1) {
a.toggleSize();
}
});
2023-08-03 10:29:17 +00:00
});
},
2023-08-30 00:55:27 +00:00
showButtonPrompt: async function (id, options) {
const a = this;
return await new Promise(async (resolve, reject) => {
await a.Show({
ID: id,
Title: options.Title,
Message: options.Message,
Size: options.Size
});
2023-08-30 00:55:27 +00:00
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 });
2023-08-30 00:55:27 +00:00
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("");
});
});
});
},
showTextboxPrompt: async function (id, options) {
const a = this;
return await new Promise(async (resolve, reject) => {
options.Buttons = [
{ Label: "OK", Value: "", Colour: "primary" },
{ Label: "Cancel", Value: "", Colour: "secondary" }
];
await a.Show({
ID: id,
Title: options.Title,
Message: options.Message,
Size: options.Size
});
let body = '';
if (!a.isNullOrWhitespace(options.Message)) {
body += '<p>' + options.Message + '</p>';
}
body += '<div class="form-group row">';
if (a.isNullOrWhitespace(options.Textbox.Label) || (options.Textbox.LabelSize <= 0)) {
2023-08-30 00:55:27 +00:00
body += '<div class="col-sm-12">';
body += '<input type="text" class="form-control" id="textbox' + id + '" placeholder="' + options.Textbox.Placeholder + '" value="' + options.Textbox.Value + '">';
2023-08-30 00:55:27 +00:00
body += '</div>';
} else {
body += '<label for="textbox' + id + '" class="col-sm-' + options.Textbox.LabelSize + ' col-form-label">' + options.Textbox.Label + '</label>';
body += '<div class="col-sm-' + options.Textbox.BoxSize + '">';
body += '<input type="text" class="form-control" id="textbox' + id + '" placeholder="' + options.Textbox.Placeholder + '" value="' + options.Textbox.Value + '">';
2023-08-30 00:55:27 +00:00
body += '</div>';
}
body += '</div>';
let footer = '';
options.Buttons.forEach(function(e) {
footer += '<button type="button" class="btn btn-' + e.Colour + '" data-prompt-value="' + e.Value + '">' + e.Label + '</button>';
});
a.Update({
ID: id,
Body: body,
Footer: footer
});
const modal = a.Find(id);
const buttons = modal.Footer[0].querySelectorAll("button");
buttons[0].addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
const value = modal.Body[0].querySelectorAll("input")[0].value;
a.Close(id);
resolve(value);
});
buttons[1].addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
a.Close(id);
resolve("");
});
modal.Close.forEach(function(sender) {
sender.addEventListener("click", function(e){
e.stopPropagation();
e.preventDefault();
a.Close(id);
resolve("");
});
});
});
},
appendHtml: function (el, html) {
let node = document.createElement('template');
node.innerHTML = html;
2023-08-03 10:29:17 +00:00
node = node.content.firstChild;
2023-08-03 10:29:17 +00:00
el.appendChild(node);
2023-08-03 10:29:17 +00:00
},
html: function (el, newHtml) {
/// todo: replace with pure JS
if (jQuery) {
jQuery(el).html(newHtml);
} else {
el.innerHTML = newHtml;
}
2023-08-03 10:29:17 +00:00
},
isNullOrWhitespace: function(e) {
if (typeof (e) == "undefined") {
return true;
}
if (e == null) {
return true;
}
if (e == false) {
return true;
}
return (e.trim().length <= 0);
},
removeBackdrop: function () {
if (this.body.querySelectorAll(".modal-backdrop").length <= 0) {
2023-08-03 10:29:17 +00:00
return;
}
if (this.body.querySelectorAll(".modal").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;
},
retrieveURL: async function (url) {
return await new Promise(async (resolve) => {
await fetch(url, {
cache: 'no-cache',
credentials: 'same-origin'
}).then(data => data.text()).then(data => {
resolve(data);
}).catch((error) => {
resolve("Error: " + error);
});
});
},
toggleSize: function () {
var a = this;
let modal = a.Find(a.id);
if (modal === null) {
return;
}
let modalDialog = modal.Modal[0].querySelectorAll(".modal-dialog")[0];
if (modalDialog.classList.contains('modal-sm')) {
2023-08-30 00:02:45 +00:00
a.Update({ ID: a.id, Size: "md" });
} else if (modalDialog.classList.contains('modal-md')) {
2023-08-30 00:02:45 +00:00
a.Update({ ID: a.id, Size: "lg" });
} else if (modalDialog.classList.contains('modal-lg')) {
2023-08-30 00:02:45 +00:00
a.Update({ ID: a.id, Size: "xl" });
} else if (modalDialog.classList.contains('modal-xl')) {
2023-08-30 00:02:45 +00:00
a.Update({ ID: a.id, Size: "sm" });
} else {
2023-08-30 00:02:45 +00:00
a.Update({ ID: a.id, Size: "md" });
2023-08-03 10:29:17 +00:00
}
2023-08-29 23:51:47 +00:00
},
//
2023-08-30 00:02:45 +00:00
// deprecated/legacy-support
2023-08-29 23:51:47 +00:00
Create: async function (id, title, url, size) {
await this.Show({
ID: id,
Title: title,
Message: url,
URL: url,
Size: size,
Colour: "secondary"
});
},
UpdateTitle: function (id, title) {
this.Update({ ID: id, Title: title });
},
UpdateSize: function (id, size) {
this.Update({ ID: id, Size: size });
},
UpdateBody: function (id, content) {
this.Update({ ID: id, Body: content });
},
UpdateFooter: function (id, content) {
this.Update({ ID: id, Footer: content });
},
Toast: async function (options) {
const a = this;
const _options = Object.assign(a.Default().ToastOptions, options);
await this.Show({
ID: _options.ID,
Title: _options.Title,
Message: _options.Message,
URL: null,
Size: _options.Size,
Colour: "secondary",
ShowFooter: false
});
},
ShowToast: function (id, title, message, size) {
this.Toast({ ID: id, Title: title, Message: message, Size: size });
2023-08-03 10:29:17 +00:00
}
};