2023-07-30 13:21:02 +00:00
|
|
|
/**
|
|
|
|
* BSDialog5
|
2023-11-14 20:47:57 +00:00
|
|
|
* @version v0.2.1.005 (2023/11/14 2028)
|
2023-07-30 13:21:02 +00:00
|
|
|
*/
|
|
|
|
var BSDialog5 = {
|
2023-08-21 20:16:47 +00:00
|
|
|
Default: function() {
|
|
|
|
return {
|
|
|
|
ShowOptions: {
|
|
|
|
ID: null,
|
|
|
|
Title: "",
|
|
|
|
Message: "",
|
|
|
|
URL: null,
|
|
|
|
Size: "md",
|
|
|
|
Colour: "secondary",
|
2023-11-12 14:51:35 +00:00
|
|
|
ShowFooter: true,
|
|
|
|
EasyClose: true
|
2023-08-21 20:16:47 +00:00
|
|
|
},
|
|
|
|
PromptOptions: {
|
2023-11-12 14:51:35 +00:00
|
|
|
Type: "button",
|
2023-08-21 20:16:47 +00:00
|
|
|
Title: "",
|
|
|
|
Message: "",
|
|
|
|
Size: "md",
|
2023-11-12 14:51:35 +00:00
|
|
|
EasyClose: true,
|
2023-08-21 20:16:47 +00:00
|
|
|
Buttons: [
|
|
|
|
{ Label: "Yes", Value: "Yes", Colour: "primary" },
|
|
|
|
{ Label: "No", Value: "No", Colour: "secondary" },
|
|
|
|
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
|
2023-11-12 14:51:35 +00:00
|
|
|
],
|
|
|
|
Textbox: {
|
|
|
|
Label: "",
|
|
|
|
LabelSize: 4,
|
|
|
|
Placeholder: "",
|
|
|
|
Value: "",
|
|
|
|
BoxSize: 8
|
|
|
|
}
|
2023-08-21 20:16:47 +00:00
|
|
|
},
|
|
|
|
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
|
|
|
|
2023-08-21 20:16:47 +00:00
|
|
|
a.id = _options.ID;
|
2023-07-30 13:22:26 +00:00
|
|
|
a.pfx = "bsdia5_";
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-14 20:47:57 +00:00
|
|
|
a.addModal(_options.ID, _options.Title, _options.Size, _options.ShowFooter, _options.Colour);
|
|
|
|
|
|
|
|
(new bootstrap.Modal(document.getElementById(a.pfx + _options.ID), {
|
|
|
|
backdrop: _options.EasyClose
|
|
|
|
})).show();
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-08-21 20:16:47 +00:00
|
|
|
if (_options.URL == null) {
|
|
|
|
await a.Update({ ID: _options.ID, Body: _options.Message });
|
2023-07-30 13:21:02 +00:00
|
|
|
} else {
|
2023-08-21 20:16:47 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
},
|
2023-08-21 20:16:47 +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);
|
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
switch (_options.Type) {
|
|
|
|
case "textbox":
|
|
|
|
return await a.showTextboxPrompt(id, _options);
|
|
|
|
case "button":
|
|
|
|
default:
|
|
|
|
return await a.showButtonPrompt(id, _options);
|
|
|
|
}
|
2023-08-21 20:16:47 +00:00
|
|
|
},
|
2023-07-30 13:21:02 +00:00
|
|
|
Clear: function () {
|
2023-08-21 20:16:47 +00:00
|
|
|
this.GetBody().querySelectorAll(".modal").forEach(function(e) {
|
2023-07-30 13:22:26 +00:00
|
|
|
e.parentNode.removeChild(e);
|
|
|
|
});
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +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) {
|
2023-07-30 13:22:26 +00:00
|
|
|
return;
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
modal.Modal.parentNode.removeChild(modal.Modal);
|
2023-07-30 13:22:26 +00:00
|
|
|
|
2023-07-30 13:44:18 +00:00
|
|
|
modal = this.Find(id);
|
|
|
|
if (modal !== null) {
|
2023-07-30 13:22:26 +00:00
|
|
|
return;
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
this.removeBackdrop();
|
2023-07-30 13:21:02 +00:00
|
|
|
},
|
2023-08-21 20:16:47 +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) {
|
2023-07-30 13:22:26 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
if (!this.isNullOrWhitespace(_options.Title)) modal.Title.innerHTML = _options.Title;
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
if (!this.isNullOrWhitespace(_options.Body)) a.html(modal.Body, _options.Body);
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-08-21 20:16: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.isNullOrWhitespace(_options.BodyURL)) {
|
|
|
|
await a.UpdateBodyRemote(_options.ID, _options.BodyURL);
|
|
|
|
}
|
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
if (!this.isNullOrWhitespace(_options.Footer)) a.html(modal.Footer, _options.Footer);
|
2023-08-21 20:16:47 +00:00
|
|
|
|
|
|
|
if (!this.isNullOrWhitespace(_options.Size)) {
|
2023-11-12 14:51:35 +00:00
|
|
|
modal.Modal.classList.remove("modal-sm");
|
|
|
|
modal.Modal.classList.remove("modal-md");
|
|
|
|
modal.Modal.classList.remove("modal-lg");
|
|
|
|
modal.Modal.classList.remove("modal-xl");
|
|
|
|
modal.Modal.classList.add("modal-" + _options.Size);
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
2023-07-30 13:22:26 +00:00
|
|
|
UpdateBodyRemote: async function (id, url) {
|
2023-08-21 20:16:47 +00:00
|
|
|
const a = this;
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
if (!a.Exists(id)) {
|
|
|
|
return;
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
await fetch(url, {
|
|
|
|
cache: 'no-cache',
|
|
|
|
credentials: 'same-origin'
|
|
|
|
}).then(data => data.text()).then(data => {
|
2023-08-21 20:16:47 +00:00
|
|
|
a.Update({ ID: id, Body: data });
|
2023-07-30 13:22:26 +00:00
|
|
|
}).catch((error) => {
|
2023-08-21 20:16:47 +00:00
|
|
|
a.Update({ ID: id, Body: "Error: " + error });
|
2023-08-03 12:53:34 +00:00
|
|
|
});
|
|
|
|
},
|
2023-07-30 13:22:26 +00:00
|
|
|
Exists: function (id) {
|
|
|
|
return (this.Find(id) !== null);
|
|
|
|
},
|
|
|
|
Find: function (id) {
|
2023-08-21 20:16:47 +00:00
|
|
|
const modal = this.GetBody().querySelectorAll("#" + this.pfx + id + ".modal");
|
2023-07-30 13:22:26 +00:00
|
|
|
if (!modal) {
|
|
|
|
return null;
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
if (modal.length <= 0) {
|
|
|
|
return null;
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
return {
|
2023-11-12 14:51:35 +00:00
|
|
|
Title: modal[0].querySelectorAll(".modal-title")[0],
|
|
|
|
Header: modal[0].querySelectorAll(".modal-header")[0],
|
|
|
|
Body: modal[0].querySelectorAll(".modal-body")[0],
|
|
|
|
Footer: modal[0].querySelectorAll(".modal-footer")[0],
|
2023-07-30 13:22:26 +00:00
|
|
|
Close: modal[0].querySelectorAll("[data-bs-dismiss='modal']"),
|
2023-11-12 14:51:35 +00:00
|
|
|
Modal: modal[0]
|
2023-07-30 13:22:26 +00:00
|
|
|
};
|
2023-07-30 13:21:02 +00:00
|
|
|
},
|
2023-08-21 20:16:47 +00:00
|
|
|
GetBody: function() {
|
|
|
|
return document.getElementsByTagName("body")[0];
|
2023-07-30 13:22:26 +00:00
|
|
|
},
|
2023-11-14 20:47:57 +00:00
|
|
|
addModal: function (id, title, size, showFooter, closeColour) {
|
2023-08-21 20:16:47 +00:00
|
|
|
const a = this;
|
2023-07-30 13:21:02 +00:00
|
|
|
|
|
|
|
// don't allow duplicates
|
2023-07-30 13:22:26 +00:00
|
|
|
let modal = a.Find(id);
|
|
|
|
if (modal !== null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let html = "";
|
2023-11-14 20:47:57 +00:00
|
|
|
html += '<div class="modal modal-' + size + ' fade" id="' + a.pfx + id + '" tabindex="-1" aria-labelledby="' + a.pfx + id + '" aria-hidden="true" style="display:none;">';
|
2023-07-30 13:22:26 +00:00
|
|
|
html += ' <div class="modal-dialog">';
|
|
|
|
html += ' <div class="modal-content">';
|
|
|
|
html += ' <div class="modal-header">';
|
2023-11-12 14:51:35 +00:00
|
|
|
html += ' <span class="modal-title fs-5" style="cursor: default; user-select: none;">' + title + '</span>';
|
|
|
|
html += ' <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close" style="user-select: none;"></button>';
|
2023-07-30 13:22:26 +00:00
|
|
|
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>';
|
2023-08-21 20:16:47 +00:00
|
|
|
|
|
|
|
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>';
|
|
|
|
|
2023-08-21 20:16:47 +00:00
|
|
|
a.appendHtml(a.GetBody(), html);
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
modal = a.Find(id);
|
|
|
|
if (modal === null) {
|
2023-07-30 13:21:02 +00:00
|
|
|
return;
|
2023-07-30 13:22:26 +00:00
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-14 20:47:57 +00:00
|
|
|
document.getElementById(a.pfx + id).addEventListener('hidden.bs.modal', function (event) {
|
|
|
|
a.Close(id);
|
2023-11-12 14:51:35 +00:00
|
|
|
});
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
modal.Title.addEventListener("dblclick", function(e){
|
2023-08-03 12:53:34 +00:00
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
a.toggleSize();
|
2023-08-03 12:53:34 +00:00
|
|
|
});
|
2023-11-12 14:51:35 +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,
|
|
|
|
EasyClose: options.EasyClose
|
|
|
|
});
|
|
|
|
|
|
|
|
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.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,
|
|
|
|
EasyClose: options.EasyClose
|
|
|
|
});
|
|
|
|
|
|
|
|
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)) {
|
|
|
|
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 += '</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 + '">';
|
|
|
|
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.querySelectorAll("button");
|
|
|
|
|
|
|
|
buttons[0].addEventListener("click", function(e){
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const value = modal.Body.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("");
|
|
|
|
});
|
|
|
|
});
|
2023-08-03 12:53:34 +00:00
|
|
|
|
|
|
|
});
|
2023-07-30 13:21:02 +00:00
|
|
|
},
|
2023-11-12 14:51:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
appendHtml: function (el, html) {
|
|
|
|
let node = document.createElement('template');
|
|
|
|
node.innerHTML = html;
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
node = node.content.firstChild;
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
el.appendChild(node);
|
2023-07-30 13:21:02 +00:00
|
|
|
},
|
2023-07-30 13:22:26 +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) {
|
2023-07-30 13:22:26 +00:00
|
|
|
if (typeof (e) == "undefined") {
|
|
|
|
return true;
|
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
if (e == null) {
|
|
|
|
return true;
|
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
if (e == false) {
|
|
|
|
return true;
|
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
|
2023-07-30 13:22:26 +00:00
|
|
|
return (e.trim().length <= 0);
|
2023-08-03 12:53:34 +00:00
|
|
|
},
|
|
|
|
removeBackdrop: function () {
|
2023-08-21 20:16:47 +00:00
|
|
|
const a = this;
|
|
|
|
|
|
|
|
if (a.GetBody().querySelectorAll(".modal-backdrop").length <= 0) {
|
2023-08-03 12:53:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 20:16:47 +00:00
|
|
|
if (a.GetBody().querySelectorAll(".modal").length > 0) {
|
2023-08-19 13:06:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-08-21 20:16:47 +00:00
|
|
|
let backdrop = a.GetBody().querySelectorAll(".modal-backdrop")[0];
|
2023-08-03 12:53:34 +00:00
|
|
|
backdrop.parentNode.removeChild(backdrop);
|
|
|
|
|
|
|
|
// unlock background
|
2023-08-21 20:16:47 +00:00
|
|
|
a.GetBody().classList.remove("modal-open");
|
|
|
|
a.GetBody().style.overflow = null;
|
2023-08-03 12:53:34 +00:00
|
|
|
},
|
|
|
|
toggleSize: function () {
|
2023-08-21 20:16:47 +00:00
|
|
|
const a = this;
|
2023-08-03 12:53:34 +00:00
|
|
|
|
|
|
|
let modal = a.Find(a.id);
|
|
|
|
if (modal === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-12 14:51:35 +00:00
|
|
|
if (modal.Modal.classList.contains('modal-sm')) {
|
|
|
|
modal.Modal.classList.remove("modal-sm");
|
|
|
|
modal.Modal.classList.add("modal-md");
|
|
|
|
} else if (modal.Modal.classList.contains('modal-md')) {
|
|
|
|
modal.Modal.classList.remove("modal-md");
|
|
|
|
modal.Modal.classList.add("modal-lg");
|
|
|
|
} else if (modal.Modal.classList.contains('modal-lg')) {
|
|
|
|
modal.Modal.classList.remove("modal-lg");
|
|
|
|
modal.Modal.classList.add("modal-xl");
|
|
|
|
} else if (modal.Modal.classList.contains('modal-xl')) {
|
|
|
|
modal.Modal.classList.remove("modal-xl");
|
|
|
|
modal.Modal.classList.add("modal-xxl");
|
|
|
|
} else if (modal.Modal.classList.contains('modal-xxl')) {
|
|
|
|
modal.Modal.classList.remove("modal-xxl");
|
|
|
|
modal.Modal.classList.add("modal-sm");
|
2023-08-03 12:53:34 +00:00
|
|
|
} else {
|
2023-11-12 14:51:35 +00:00
|
|
|
modal.Modal.classList.remove("modal-sm");
|
|
|
|
modal.Modal.classList.remove("modal-md");
|
|
|
|
modal.Modal.classList.remove("modal-lg");
|
|
|
|
modal.Modal.classList.remove("modal-xl");
|
|
|
|
modal.Modal.classList.remove("modal-xxl");
|
|
|
|
modal.Modal.classList.add("modal-md");
|
2023-08-03 12:53:34 +00:00
|
|
|
}
|
2023-07-30 13:21:02 +00:00
|
|
|
}
|
|
|
|
};
|