Refactor to JS class #8

Merged
Ray merged 1 commits from release/0.1.5.017 into master 2023-11-16 22:06:50 +00:00
2 changed files with 168 additions and 132 deletions
Showing only changes of commit 1b3b35afeb - Show all commits

View File

@ -1,76 +1,131 @@
/** /**
* BSDialog4 * BSDialog4
* @version v0.1.5.006 (2023/11/14 17:40) * @version v0.1.5.017 (2023/11/16 17:47)
*/ */
var BSDialog = {
Show: async function (options) { class BSDialog4 {
constructor() {
}
get Options() {
return {
ShowModal: {
ID: null,
Title: "",
Message: "",
URL: null,
Size: "md",
Colour: "secondary",
ShowFooter: true,
EasyClose: true
},
ShowPrompt: {
Type: "button",
Title: "",
Message: "",
Size: "md",
EasyClose: true,
Buttons: [
{ Label: "Yes", Value: "Yes", Colour: "primary" },
{ Label: "No", Value: "No", Colour: "secondary" },
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
],
Textbox: {
Label: "",
LabelSize: 4,
Placeholder: "",
Value: "",
BoxSize: 8
}
},
UpdateModal: {
ID: null,
Title: null,
Body: null,
BodyURL: null,
Footer: null,
Size: null
}
}
}
get #prefix() {
return "bsdia4_";
}
get #body() {
return document.getElementsByTagName("body")[0];
}
async Show(options) {
const a = this; const a = this;
const _options = Object.assign(a.Options.ShowModal, options); const _options = Object.assign(a.Options.ShowModal, options);
a.id = _options.ID;
a.pfx = "bsdia4_";
a.body = document.getElementsByTagName("body")[0];
a.addModal(_options.ID, _options.Title, _options.Size, _options.ShowFooter, _options.Colour); a.addModal(_options.ID, _options.Title, _options.Size, _options.ShowFooter, _options.Colour);
$("#" + a.pfx + _options.ID).modal({ $("#" + a.#prefix + _options.ID).modal({
backdrop: _options.EasyClose, backdrop: _options.EasyClose,
show: true show: true
}); });
if (_options.URL == null) { if (!a.#isNullOrWhitespace(_options.URL)) {
await a.Update({ ID: _options.ID, Body: _options.Message }); if (_options.URL.startsWith("http://") || _options.URL.startsWith("https://") || _options.URL.startsWith("/")) {
} else { const response = await a.#retrieveURL(_options.URL);
if (a.isNullOrWhitespace(_options.URL)) {
await a.Update({ ID: _options.ID, Body: _options.URL }); await a.Update({ ID: _options.ID, Body: response });
} else { } else {
if (_options.URL.startsWith("http://") || _options.URL.startsWith("https://") || _options.URL.startsWith("/")) { await a.Update({ ID: _options.ID, Body: _options.URL });
let response = await a.retrieveURL(_options.URL);
await a.Update({ ID: _options.ID, Body: response });
} else {
await a.Update({ ID: _options.ID, Body: _options.URL });
}
} }
} else {
await a.Update({ ID: _options.ID, Body: _options.Message });
} }
}, }
Prompt: async function (options) {
const a = this;
let id = Math.floor(Math.random() * 10000) + 1000;
async Prompt(options) {
const a = this;
const id = Math.floor(Math.random() * 10000) + 1000;
const _options = Object.assign(a.Options.ShowPrompt, options); const _options = Object.assign(a.Options.ShowPrompt, options);
switch (_options.Type) { switch (_options.Type) {
case "textbox": case "textbox":
return await a.showTextboxPrompt(id, _options); return await a.#showTextboxPrompt(id, _options);
case "button": case "button":
default: default:
return await a.showButtonPrompt(id, _options); return await a.#showButtonPrompt(id, _options);
} }
}, }
Clear: function () {
this.body.querySelectorAll(".modal").forEach(function(e) { Clear() {
const a = this;
a.#body.querySelectorAll(".modal").forEach(function(e) {
e.parentNode.removeChild(e); e.parentNode.removeChild(e);
}); });
this.removeBackdrop(); a.#removeBackdrop();
}, }
Close: function (id) {
let modal = this.Find(id); Close(id) {
const a = this;
let modal = a.Find(id);
if (modal === null) { if (modal === null) {
return; return;
} }
modal.Modal.parentNode.removeChild(modal.Modal); modal.Modal.parentNode.removeChild(modal.Modal);
modal = this.Find(id); modal = a.Find(id);
if (modal !== null) { if (modal !== null) {
return; return;
} }
this.removeBackdrop(); a.#removeBackdrop();
}, }
Update: async function (options) {
async Update(options) {
const a = this; const a = this;
let _options = Object.assign(a.Options.UpdateModal, options); let _options = Object.assign(a.Options.UpdateModal, options);
@ -79,15 +134,15 @@ var BSDialog = {
return; return;
} }
if (!this.isNullOrWhitespace(_options.Title)) { if (!a.#isNullOrWhitespace(_options.Title)) {
modal.Title.innerHTML = _options.Title; modal.Title.innerHTML = _options.Title;
} }
if (!this.isNullOrWhitespace(_options.Body)) { if (!a.#isNullOrWhitespace(_options.Body)) {
a.html(modal.Body, _options.Body); a.#html(modal.Body, _options.Body);
} }
if (!this.isNullOrWhitespace(_options.BodyURL)) { if (!a.#isNullOrWhitespace(_options.BodyURL)) {
if (_options.BodyURL.startsWith("http://") || _options.BodyURL.startsWith("https://") || _options.BodyURL.startsWith("/")) { if (_options.BodyURL.startsWith("http://") || _options.BodyURL.startsWith("https://") || _options.BodyURL.startsWith("/")) {
// ok // ok
} else { } else {
@ -95,17 +150,17 @@ var BSDialog = {
} }
} }
if (!this.isNullOrWhitespace(_options.BodyURL)) { if (!a.#isNullOrWhitespace(_options.BodyURL)) {
let response = await a.retrieveURL(_options.BodyURL); const response = await a.#retrieveURL(_options.BodyURL);
await a.Update({ ID: _options.ID, Body: response }); await a.Update({ ID: _options.ID, Body: response });
} }
if (!this.isNullOrWhitespace(_options.Footer)) { if (!a.#isNullOrWhitespace(_options.Footer)) {
a.html(modal.Footer, _options.Footer); a.#html(modal.Footer, _options.Footer);
} }
if (!this.isNullOrWhitespace(_options.Size)) { if (!a.#isNullOrWhitespace(_options.Size)) {
modal.Modal.querySelectorAll(".modal-dialog").forEach(function(e) { modal.Modal.querySelectorAll(".modal-dialog").forEach(function(e) {
e.classList.forEach(function(e2) { e.classList.forEach(function(e2) {
@ -121,13 +176,17 @@ var BSDialog = {
e.classList.add("modal-" + _options.Size); e.classList.add("modal-" + _options.Size);
}); });
} }
}, }
Exists: function (id) {
return (this.Find(id) !== null); Exists(id) {
},
Find: function (id) {
const a = this; const a = this;
const modal = a.body.querySelectorAll("#" + a.pfx + id + ".modal");
return (a.Find(id) !== null);
}
Find(id) {
const a = this;
const modal = a.#body.querySelectorAll("#" + a.#prefix + id + ".modal");
if (!modal) { if (!modal) {
return null; return null;
@ -145,47 +204,10 @@ var BSDialog = {
Close: modal[0].querySelectorAll("[data-dismiss='modal']"), Close: modal[0].querySelectorAll("[data-dismiss='modal']"),
Modal: modal[0] Modal: modal[0]
}; };
}, }
Options: {
ShowModal: {
ID: null, addModal(id, title, size, showFooter, closeColour) {
Title: "",
Message: "",
URL: null,
Size: "md",
Colour: "secondary",
ShowFooter: true,
EasyClose: true
},
ShowPrompt: {
Type: "button",
Title: "",
Message: "",
Size: "md",
EasyClose: true,
Buttons: [
{ Label: "Yes", Value: "Yes", Colour: "primary" },
{ Label: "No", Value: "No", Colour: "secondary" },
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
],
Textbox: {
Label: "",
LabelSize: 4,
Placeholder: "",
Value: "",
BoxSize: 8
}
},
UpdateModal: {
ID: null,
Title: null,
Body: null,
BodyURL: null,
Footer: null,
Size: null
}
},
addModal: function (id, title, size, showFooter, closeColour) {
const a = this; const a = this;
// don't allow duplicates // don't allow duplicates
@ -195,7 +217,7 @@ var BSDialog = {
} }
let html = ""; let html = "";
html += '<div class="modal fade" style="display: none;" id="' + a.pfx + id + '" tabindex="-1" aria-labelledby="exampleModalSmLabel" aria-hidden="true">'; html += '<div class="modal fade" style="display: none;" id="' + a.#prefix + id + '" tabindex="-1" aria-labelledby="exampleModalSmLabel" aria-hidden="true">';
html += ' <div class="modal-dialog modal-' + size + '">'; html += ' <div class="modal-dialog modal-' + size + '">';
html += ' <div class="modal-content">'; html += ' <div class="modal-content">';
html += ' <div class="modal-header">'; html += ' <div class="modal-header">';
@ -226,14 +248,14 @@ var BSDialog = {
html += ' </div>'; html += ' </div>';
html += '</div>'; html += '</div>';
a.appendHtml(a.body, html); a.#appendHtml(a.#body, html);
modal = a.Find(id); modal = a.Find(id);
if (modal === null) { if (modal === null) {
return; return;
} }
$("#" + a.pfx + id).on('hidden.bs.modal', function (event) { $("#" + a.#prefix + id).on('hidden.bs.modal', function (event) {
a.Close(id); a.Close(id);
}) })
@ -241,11 +263,12 @@ var BSDialog = {
e.stopPropagation(); e.stopPropagation();
e.preventDefault(); e.preventDefault();
a.toggleSize(); a.#toggleSize(id);
}); });
}, }
showButtonPrompt: async function (id, options) {
async #showButtonPrompt(id, options) {
const a = this; const a = this;
return await new Promise(async (resolve, reject) => { return await new Promise(async (resolve, reject) => {
@ -290,8 +313,9 @@ var BSDialog = {
}); });
}); });
}, }
showTextboxPrompt: async function (id, options) {
async #showTextboxPrompt(id, options) {
const a = this; const a = this;
return await new Promise(async (resolve, reject) => { return await new Promise(async (resolve, reject) => {
@ -310,13 +334,13 @@ var BSDialog = {
let body = ''; let body = '';
if (!a.isNullOrWhitespace(options.Message)) { if (!a.#isNullOrWhitespace(options.Message)) {
body += '<p>' + options.Message + '</p>'; body += '<p>' + options.Message + '</p>';
} }
body += '<div class="form-group row">'; body += '<div class="form-group row">';
if (a.isNullOrWhitespace(options.Textbox.Label) || (options.Textbox.LabelSize <= 0)) { if (a.#isNullOrWhitespace(options.Textbox.Label) || (options.Textbox.LabelSize <= 0)) {
body += '<div class="col-sm-12">'; body += '<div class="col-sm-12">';
body += '<input type="text" class="form-control" id="textbox' + id + '" placeholder="' + options.Textbox.Placeholder + '" value="' + options.Textbox.Value + '">'; body += '<input type="text" class="form-control" id="textbox' + id + '" placeholder="' + options.Textbox.Placeholder + '" value="' + options.Textbox.Value + '">';
body += '</div>'; body += '</div>';
@ -375,24 +399,26 @@ var BSDialog = {
}); });
}); });
}, }
appendHtml: function (el, html) {
#appendHtml(el, html) {
let node = document.createElement('template'); let node = document.createElement('template');
node.innerHTML = html; node.innerHTML = html;
node = node.content.firstChild; node = node.content.firstChild;
el.appendChild(node); el.appendChild(node);
}, }
html: function (el, newHtml) {
/// todo: replace with pure JS #html(el, newHtml) {
if (jQuery) { if (jQuery) {
jQuery(el).html(newHtml); jQuery(el).html(newHtml);
} else { } else {
el.innerHTML = newHtml; el.innerHTML = newHtml;
} }
}, }
isNullOrWhitespace: function(e) {
#isNullOrWhitespace(e) {
if (typeof (e) == "undefined") { if (typeof (e) == "undefined") {
return true; return true;
} }
@ -406,24 +432,29 @@ var BSDialog = {
} }
return (e.trim().length <= 0); return (e.trim().length <= 0);
}, }
removeBackdrop: function () {
if (this.body.querySelectorAll(".modal-backdrop").length <= 0) { #removeBackdrop() {
const a = this;
if (a.#body.querySelectorAll(".modal-backdrop").length <= 0) {
return; return;
} }
if (this.body.querySelectorAll(".modal").length > 0) { if (a.#body.querySelectorAll(".modal").length > 0) {
return; return;
} }
let backdrop = this.body.querySelectorAll(".modal-backdrop")[0]; a.#body.querySelectorAll(".modal-backdrop").forEach(function(e){
backdrop.parentNode.removeChild(backdrop); e.parentNode.removeChild(e);
});
// unlock background // unlock background
this.body.classList.remove("modal-open"); a.#body.classList.remove("modal-open");
this.body.style.overflow = null; a.#body.style.overflow = null;
}, }
retrieveURL: async function (url) {
async #retrieveURL(url) {
return await new Promise(async (resolve) => { return await new Promise(async (resolve) => {
await fetch(url, { await fetch(url, {
cache: 'no-cache', cache: 'no-cache',
@ -434,28 +465,33 @@ var BSDialog = {
resolve("Error: " + error); resolve("Error: " + error);
}); });
}); });
}, }
toggleSize: function () {
#toggleSize(id) {
const a = this; const a = this;
let modal = a.Find(a.id); let modal = a.Find(id);
if (modal === null) { if (modal === null) {
return; return;
} }
let modalDialog = modal.Modal.querySelectorAll(".modal-dialog")[0]; let modalDialog = modal.Modal.querySelectorAll(".modal-dialog")[0];
if (modalDialog.classList.contains('modal-sm')) { if (modalDialog.classList.contains('modal-sm')) {
a.Update({ ID: a.id, Size: "md" }); a.Update({ ID: id, Size: "md" });
} else if (modalDialog.classList.contains('modal-md')) { } else if (modalDialog.classList.contains('modal-md')) {
a.Update({ ID: a.id, Size: "lg" }); a.Update({ ID: id, Size: "lg" });
} else if (modalDialog.classList.contains('modal-lg')) { } else if (modalDialog.classList.contains('modal-lg')) {
a.Update({ ID: a.id, Size: "xl" }); a.Update({ ID: id, Size: "xl" });
} else if (modalDialog.classList.contains('modal-xl')) { } else if (modalDialog.classList.contains('modal-xl')) {
a.Update({ ID: a.id, Size: "xxl" }); a.Update({ ID: id, Size: "xxl" });
} else if (modalDialog.classList.contains('modal-xxl')) { } else if (modalDialog.classList.contains('modal-xxl')) {
a.Update({ ID: a.id, Size: "sm" }); a.Update({ ID: id, Size: "sm" });
} else { } else {
a.Update({ ID: a.id, Size: "md" }); a.Update({ ID: id, Size: "md" });
} }
} }
};
}
var BSDialog = new BSDialog4();

4
bsdialog4.min.js vendored

File diff suppressed because one or more lines are too long