Compare commits
No commits in common. "master" and "release/0.1.5.006" have entirely different histories.
master
...
release/0.
453
bs4-test.html
453
bs4-test.html
@ -30,133 +30,93 @@
|
|||||||
<body class="py-5">
|
<body class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
<div class="row mb-3">
|
||||||
<div class="col-sm-4 border-right">
|
<div class="col-6 border-right">
|
||||||
<p><b>Example. Simple Text Modal</b></p>
|
|
||||||
<p>Launch a modal with a text body.</p>
|
|
||||||
|
|
||||||
<p><button id="buttonL1" type="button" class="btn btn-primary">Launch Modal</button></p>
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
|
<p><b>Example. Simple Text Modal</b></p>
|
||||||
<script>
|
<p>Launch an empty modal</p>
|
||||||
$(document).ready(function(){
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
$("#buttonL1").on('click', function(){
|
BSDialog.Show({
|
||||||
BSDialog.Show({
|
|
||||||
ID: "modalL1",
|
|
||||||
Title: "Modal Title",
|
|
||||||
Message: "Hello Momo!",
|
|
||||||
URL: null,
|
|
||||||
Size: "md",
|
|
||||||
Colour: "secondary"
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>BSDialog.Show({
|
|
||||||
ID: "modalL1",
|
ID: "modalL1",
|
||||||
Title: "Modal Title",
|
Title: "Modal Title",
|
||||||
Message: "Hello Momo!",
|
Message: "Hello Momo!",
|
||||||
URL: null,
|
URL: null,
|
||||||
Size: "md",
|
Size: "md",
|
||||||
Colour: "secondary"
|
Colour: "secondary"
|
||||||
});</pre>
|
});
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonL1" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
$("#buttonL1").on('click', function(){
|
||||||
|
BSDialog.Show({
|
||||||
|
ID: "modalL1",
|
||||||
|
Title: "Modal Title",
|
||||||
|
Message: "Hello Momo!",
|
||||||
|
URL: null,
|
||||||
|
Size: "md",
|
||||||
|
Colour: "secondary"
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
<div class="col-sm-4 border-right">
|
<p><b>Example. Prompt Modal (Buttons)</b></p>
|
||||||
|
<p>Launch a prompt modal and wait for a button response</p>
|
||||||
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
|
let response = await BSDialog.Prompt({
|
||||||
|
Title: "Modal Title",
|
||||||
|
Message: "Are you sure want to wait for a response?",
|
||||||
|
Size: "md",
|
||||||
|
Buttons: [
|
||||||
|
{ Label: "Yes", Value: "Yes", Colour: "primary" },
|
||||||
|
{ Label: "No", Value: "No", Colour: "secondary" },
|
||||||
|
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
<p><b>Example. Update Modal</b></p>
|
alert(response);
|
||||||
<p>Make changes (title, body, size or footer) to a modal.</p>
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonL2" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
<p><button id="buttonR1" type="button" class="btn btn-primary">Launch Modal</button></p>
|
$("#buttonL2").on('click', async function(){
|
||||||
<script>
|
let response = await BSDialog.Prompt({
|
||||||
$(document).ready(function(){
|
Title: "Modal Title",
|
||||||
|
Message: "Are you sure want to wait for a response?",
|
||||||
|
Size: "md",
|
||||||
|
Buttons: [
|
||||||
|
{ Label: "Yes", Value: "Yes", Colour: "primary" },
|
||||||
|
{ Label: "No", Value: "No", Colour: "secondary" },
|
||||||
|
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
$("#buttonR1").on('click', function(){
|
alert(response);
|
||||||
BSDialog.Show({
|
|
||||||
ID: "modalR1",
|
|
||||||
Title: "Modal Title",
|
|
||||||
Message: "Hello Momo!",
|
|
||||||
URL: null,
|
|
||||||
Size: "md",
|
|
||||||
Colour: "secondary"
|
|
||||||
});
|
});
|
||||||
|
|
||||||
BSDialog.Update({
|
|
||||||
ID: "modalR1",
|
|
||||||
Title: "Modal Changed Title",
|
|
||||||
Body: "Hello momo again!",
|
|
||||||
URL: null,
|
|
||||||
Size: "lg",
|
|
||||||
Footer: null
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
</script>
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>BSDialog.Update({
|
|
||||||
ID: "modalL1",
|
|
||||||
Title: "Modal Changed Title",
|
|
||||||
Body: "Hello momo again!",
|
|
||||||
URL: null,
|
|
||||||
Size: "lg",
|
|
||||||
Footer: null
|
|
||||||
});</pre>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
<div class="col-sm-4 border-right">
|
<p><b>Example. Multiple Modals</b></p>
|
||||||
|
<p>Launch multiple modals</p>
|
||||||
<p><b>Example. Multiple Modals (Stack)</b></p>
|
<div class="alert alert-secondary text-sm">
|
||||||
<p>Launch multiple modals, stacked on top of each other.</p>
|
<pre>
|
||||||
|
BSDialog.Show({
|
||||||
<p><button id="buttonL3" type="button" class="btn btn-primary">Launch Modal</button></p>
|
|
||||||
<script>
|
|
||||||
$(document).ready(function(){
|
|
||||||
|
|
||||||
$("#buttonL3").on('click', function(){
|
|
||||||
BSDialog.Show({
|
|
||||||
ID: "modalL3a",
|
|
||||||
Title: "Modal A Title",
|
|
||||||
Message: "First!",
|
|
||||||
URL: null,
|
|
||||||
Size: "md",
|
|
||||||
Colour: "secondary"
|
|
||||||
});
|
|
||||||
|
|
||||||
BSDialog.Show({
|
|
||||||
ID: "modalL3b",
|
|
||||||
Title: "Modal B Title",
|
|
||||||
Message: "Second!",
|
|
||||||
URL: null,
|
|
||||||
Size: "md",
|
|
||||||
Colour: "secondary"
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>BSDialog.Show({
|
|
||||||
ID: "modalL3a",
|
ID: "modalL3a",
|
||||||
Title: "Modal A Title",
|
Title: "Modal A Title",
|
||||||
Message: "First!",
|
Message: "First!",
|
||||||
@ -172,86 +132,47 @@ BSDialog.Show({
|
|||||||
URL: null,
|
URL: null,
|
||||||
Size: "md",
|
Size: "md",
|
||||||
Colour: "secondary"
|
Colour: "secondary"
|
||||||
});</pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
|
||||||
<div class="col-sm-4 border-right">
|
|
||||||
|
|
||||||
<p><b>Example. Button Prompt (Modal)</b></p>
|
|
||||||
<p>Launch a modal with a prompt of several buttons. Modal waits for a response from one of the buttons.</p>
|
|
||||||
|
|
||||||
<p><button id="buttonL2" type="button" class="btn btn-primary">Launch Modal</button></p>
|
|
||||||
<script>
|
|
||||||
$(document).ready(function(){
|
|
||||||
|
|
||||||
$("#buttonL2").on('click', async function(){
|
|
||||||
let response = await BSDialog.Prompt({
|
|
||||||
Title: "Modal Title",
|
|
||||||
Message: "Are you sure want to wait for a response?",
|
|
||||||
Size: "md",
|
|
||||||
Buttons: [
|
|
||||||
{ Label: "Yes", Value: "Yes", Colour: "primary" },
|
|
||||||
{ Label: "No", Value: "No", Colour: "secondary" },
|
|
||||||
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
alert(response);
|
|
||||||
});
|
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>let response = await BSDialog.Prompt({
|
|
||||||
Title: "Modal Title",
|
|
||||||
Message: "Are you sure want to wait for a response?",
|
|
||||||
Size: "md",
|
|
||||||
Buttons: [
|
|
||||||
{ Label: "Yes", Value: "Yes", Colour: "primary" },
|
|
||||||
{ Label: "No", Value: "No", Colour: "secondary" },
|
|
||||||
{ Label: "Cancel", Value: "Cancel", Colour: "secondary" }
|
|
||||||
]
|
|
||||||
});
|
});
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonL3" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
alert(response);</pre>
|
$("#buttonL3").on('click', function(){
|
||||||
</div>
|
BSDialog.Show({
|
||||||
</div>
|
ID: "modalL3a",
|
||||||
</div>
|
Title: "Modal A Title",
|
||||||
|
Message: "First!",
|
||||||
|
URL: null,
|
||||||
|
Size: "md",
|
||||||
|
Colour: "secondary"
|
||||||
|
});
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
BSDialog.Show({
|
||||||
<div class="col-sm-4 border-right">
|
ID: "modalL3b",
|
||||||
|
Title: "Modal B Title",
|
||||||
<p><b>Example. Text Prompt (Modal)</b></p>
|
Message: "Second!",
|
||||||
<p>Launch a modal with a text prompt. Modal waits for a response from the textbox.</p>
|
URL: null,
|
||||||
|
Size: "md",
|
||||||
<p><button id="buttonL2a" type="button" class="btn btn-primary">Launch Modal</button></p>
|
Colour: "secondary"
|
||||||
<script>
|
});
|
||||||
$(document).ready(function(){
|
|
||||||
|
|
||||||
$("#buttonL2a").on('click', async function(){
|
|
||||||
let response = await BSDialog.Prompt({
|
|
||||||
Type: "textbox",
|
|
||||||
Title: "Modal Title",
|
|
||||||
Message: "Are you sure want to wait for a response?",
|
|
||||||
Size: "md",
|
|
||||||
Label: "",
|
|
||||||
Placeholder: ""
|
|
||||||
});
|
});
|
||||||
|
|
||||||
alert(response);
|
|
||||||
});
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-8">
|
<div class="col-6">
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>let response = await BSDialog.Prompt({
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
|
<p><b>Example. Prompt Modal (Textbox)</b></p>
|
||||||
|
<p>Launch a prompt modal and wait for a textbox response</p>
|
||||||
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
|
let response = await BSDialog.Prompt({
|
||||||
Type: "textbox",
|
Type: "textbox",
|
||||||
Title: "Modal Title",
|
Title: "Modal Title",
|
||||||
Message: "Are you sure want to wait for a response?",
|
Message: "Are you sure want to wait for a response?",
|
||||||
@ -260,56 +181,152 @@ alert(response);</pre>
|
|||||||
Placeholder: ""
|
Placeholder: ""
|
||||||
});
|
});
|
||||||
|
|
||||||
alert(response);</pre>
|
alert(response);
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonL2a" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
$("#buttonL2a").on('click', async function(){
|
||||||
|
let response = await BSDialog.Prompt({
|
||||||
|
Type: "textbox",
|
||||||
|
Title: "Modal Title",
|
||||||
|
Message: "Are you sure want to wait for a response?",
|
||||||
|
Size: "md",
|
||||||
|
Label: "",
|
||||||
|
Placeholder: ""
|
||||||
|
});
|
||||||
|
|
||||||
|
alert(response);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
|
||||||
<div class="col-sm-4 border-right">
|
|
||||||
|
|
||||||
<p><b>Example. Close Modal</b></p>
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
<p>Close a modal using its identifier</p>
|
<p><b>Example. Prompt Modal (Textbox)</b></p>
|
||||||
<p><button id="buttonR2" type="button" class="btn btn-primary">Launch Modal</button></p>
|
<p>Launch a prompt modal and wait for a textbox response</p>
|
||||||
<script>
|
<div class="alert alert-secondary text-sm">
|
||||||
$(document).ready(function(){
|
<pre>
|
||||||
|
let response = await BSDialog.Prompt({
|
||||||
|
Type: "textbox",
|
||||||
|
Title: "Modal Title",
|
||||||
|
Message: "Are you sure want to wait for a response?",
|
||||||
|
Size: "md",
|
||||||
|
Textbox: {
|
||||||
|
Label: "Textbox Label",
|
||||||
|
LabelSize: 4,
|
||||||
|
Placeholder: "Placeholder",
|
||||||
|
Value: "Default Value",
|
||||||
|
BoxSize: 8
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
alert(response);
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonL2b" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
$("#buttonL2b").on('click', async function(){
|
||||||
|
let response = await BSDialog.Prompt({
|
||||||
|
Type: "textbox",
|
||||||
|
Title: "Modal Title",
|
||||||
|
Message: "Are you sure want to wait for a response?",
|
||||||
|
Size: "md",
|
||||||
|
Textbox: {
|
||||||
|
Label: "Textbox Label",
|
||||||
|
LabelSize: 4,
|
||||||
|
Placeholder: "Placeholder",
|
||||||
|
Value: "Default Value",
|
||||||
|
BoxSize: 8
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
alert(response);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
|
<p><b>Example. Simple Text Modal</b> <span class="badge badge-warning">Deprecated</span></p>
|
||||||
|
<p>Launch an empty modal</p>
|
||||||
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
|
BSDialog.Create('abc123', 'My Modal Box 123', 'Hello momo!', 'xl');
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="button1" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
$("#button1").on('click', function(){
|
||||||
|
BSDialog.Create('abc123', 'My Modal Box 123', 'Hello momo!', 'xl');
|
||||||
|
});
|
||||||
|
|
||||||
$("#buttonR2").on('click', function(){
|
|
||||||
BSDialog.Close("modalR1");
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
</script>
|
||||||
</script>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>BSDialog.Close("modalR1");</pre>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row mb-3 border-bottom">
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
<div class="col-sm-4 border-right">
|
<p><b>Example. Empty Modal and Updates.</b> <span class="badge badge-warning">Deprecated</span></p>
|
||||||
|
<p>Launch an empty modal then update its title, body, footer and size.</p>
|
||||||
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
|
BSDialog.Create('abc123', 'My Modal Box 123', null, 'sm');
|
||||||
|
BSDialog.UpdateTitle('abc123', 'My Modal Box 567');
|
||||||
|
BSDialog.UpdateBody('abc123', 'Help, I\'m toast!');
|
||||||
|
BSDialog.UpdateFooter('abc123', '');
|
||||||
|
BSDialog.UpdateSize('abc123', 'lg');
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="buttonR3" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
<p><b>Example. Clear Modal</b></p>
|
$("#buttonR3").on('click', function(){
|
||||||
<p>Close all modals</p>
|
BSDialog.Create('abc123', 'My Modal Box 123', null, 'sm');
|
||||||
<p><button id="buttonR3" type="button" class="btn btn-primary">Launch Modal</button></p>
|
BSDialog.UpdateTitle('abc123', 'My Modal Box 567');
|
||||||
<script>
|
BSDialog.UpdateBody('abc123', 'Help, I\'m toast!');
|
||||||
$(document).ready(function(){
|
BSDialog.UpdateFooter('abc123', '');
|
||||||
|
BSDialog.UpdateSize('abc123', 'lg');
|
||||||
|
});
|
||||||
|
|
||||||
$("#buttonR3").on('click', function(){
|
|
||||||
BSDialog.Clear();
|
|
||||||
});
|
});
|
||||||
|
</script>
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-8">
|
|
||||||
<div class="alert alert-secondary text-sm">
|
|
||||||
<pre>BSDialog.Clear();</pre>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="pb-3 mb-3 border-bottom">
|
||||||
|
<p><b>Example. Toast Modal.</b> <span class="badge badge-warning">Deprecated</span></p>
|
||||||
|
<p>Show a toast-style modal</p>
|
||||||
|
<div class="alert alert-secondary text-sm">
|
||||||
|
<pre>
|
||||||
|
BSDialog.ShowToast('abc123', 'My Modal Box 123', 'Help! I\'m toast.', 'sm');
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<p><button id="button6" type="button" class="btn btn-primary">Launch Modal</button></p>
|
||||||
|
<script>
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
$("#button6").on('click', function(){
|
||||||
|
BSDialog.ShowToast('abc123', 'My Modal Box 123', 'Help! I\'m toast.', 'sm');
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
441
bsdialog4.js
441
bsdialog4.js
@ -1,188 +1,133 @@
|
|||||||
/**
|
/**
|
||||||
* BSDialog4
|
* BSDialog4
|
||||||
* @version v0.1.7.022 (2024/01/21 03:40)
|
* @version v0.1.5.006 (2023/11/14 17:40)
|
||||||
*/
|
*/
|
||||||
class BSDialog4 {
|
var BSDialog = {
|
||||||
constructor() {
|
Show: async function (options) {
|
||||||
}
|
|
||||||
|
|
||||||
get #prefix() {
|
|
||||||
return "bsdia4_";
|
|
||||||
}
|
|
||||||
|
|
||||||
get #body() {
|
|
||||||
return document.getElementsByTagName("body")[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
get #sizeList() {
|
|
||||||
return [
|
|
||||||
"modal-sm",
|
|
||||||
"modal-md",
|
|
||||||
"modal-lg",
|
|
||||||
"modal-xl",
|
|
||||||
"modal-xxl"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
async Show(options) {
|
|
||||||
const a = this;
|
const a = this;
|
||||||
const _options = Object.assign({
|
const _options = Object.assign(a.Options.ShowModal, options);
|
||||||
ID: null,
|
|
||||||
Title: "",
|
|
||||||
Message: "",
|
|
||||||
URL: null,
|
|
||||||
Size: "md",
|
|
||||||
Colour: "secondary",
|
|
||||||
ShowFooter: true,
|
|
||||||
EasyClose: true,
|
|
||||||
IsMovable: true
|
|
||||||
}, options);
|
|
||||||
|
|
||||||
a.addModal(_options.ID, _options.Title, _options.Size, _options.ShowFooter, _options.IsMovable, _options.Colour);
|
a.id = _options.ID;
|
||||||
|
a.pfx = "bsdia4_";
|
||||||
|
a.body = document.getElementsByTagName("body")[0];
|
||||||
|
|
||||||
$("#" + a.#prefix + _options.ID).modal({
|
a.addModal(_options.ID, _options.Title, _options.Size, _options.ShowFooter, _options.Colour);
|
||||||
|
|
||||||
|
$("#" + a.pfx + _options.ID).modal({
|
||||||
backdrop: _options.EasyClose,
|
backdrop: _options.EasyClose,
|
||||||
show: true
|
show: true
|
||||||
});
|
});
|
||||||
|
|
||||||
if (a.#isURL(_options.URL)) {
|
if (_options.URL == null) {
|
||||||
const response = await a.#retrieveURL(_options.URL);
|
|
||||||
|
|
||||||
await a.Update({ ID: _options.ID, Body: response });
|
|
||||||
} else {
|
|
||||||
await a.Update({ ID: _options.ID, Body: _options.Message });
|
await a.Update({ ID: _options.ID, Body: _options.Message });
|
||||||
}
|
} else {
|
||||||
}
|
if (a.isNullOrWhitespace(_options.URL)) {
|
||||||
|
await a.Update({ ID: _options.ID, Body: _options.URL });
|
||||||
|
} else {
|
||||||
|
if (_options.URL.startsWith("http://") || _options.URL.startsWith("https://") || _options.URL.startsWith("/")) {
|
||||||
|
let response = await a.retrieveURL(_options.URL);
|
||||||
|
|
||||||
async Prompt(options) {
|
await a.Update({ ID: _options.ID, Body: response });
|
||||||
const a = this;
|
} else {
|
||||||
const id = Math.floor(Math.random() * 10000) + 1000;
|
await a.Update({ ID: _options.ID, Body: _options.URL });
|
||||||
const _options = Object.assign({
|
}
|
||||||
Type: "button",
|
|
||||||
Title: "",
|
|
||||||
Message: "",
|
|
||||||
Size: "md",
|
|
||||||
EasyClose: true,
|
|
||||||
IsMovable: 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
|
|
||||||
}
|
}
|
||||||
}, options);
|
}
|
||||||
|
},
|
||||||
|
Prompt: async function (options) {
|
||||||
|
const a = this;
|
||||||
|
let id = Math.floor(Math.random() * 10000) + 1000;
|
||||||
|
|
||||||
|
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 () {
|
||||||
async Clear() {
|
this.body.querySelectorAll(".modal").forEach(function(e) {
|
||||||
const a = this;
|
e.parentNode.removeChild(e);
|
||||||
|
|
||||||
document.querySelectorAll('.modal').forEach(async function(e) {
|
|
||||||
await a.Close(e.getAttribute("id"));
|
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
|
||||||
async Close(id) {
|
this.removeBackdrop();
|
||||||
|
},
|
||||||
|
Close: function (id) {
|
||||||
|
let modal = this.Find(id);
|
||||||
|
if (modal === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
modal.Modal.parentNode.removeChild(modal.Modal);
|
||||||
|
|
||||||
|
modal = this.Find(id);
|
||||||
|
if (modal !== null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.removeBackdrop();
|
||||||
|
},
|
||||||
|
Update: async function (options) {
|
||||||
const a = this;
|
const a = this;
|
||||||
|
let _options = Object.assign(a.Options.UpdateModal, options);
|
||||||
if (id.toString().startsWith(a.#prefix)) {
|
|
||||||
id = id.toString().substr(a.#prefix.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
const node = document.getElementById(a.#prefix + id);
|
|
||||||
|
|
||||||
if (node) {
|
|
||||||
await $(node).modal('hide');
|
|
||||||
|
|
||||||
node.parentNode.removeChild(node);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (document.querySelectorAll('.modal').length > 0) {
|
|
||||||
if (!a.#body.classList.contains("modal-open")) {
|
|
||||||
a.#body.classList.add("modal-open");
|
|
||||||
|
|
||||||
a.#body.style.paddingRight = "17px";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async Pop() {
|
|
||||||
const a = this;
|
|
||||||
|
|
||||||
if (document.querySelectorAll('.modal').length > 0) {
|
|
||||||
const id = document.querySelectorAll('.modal')[0].getAttribute("id");
|
|
||||||
|
|
||||||
await a.Close(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async Update(options) {
|
|
||||||
const a = this;
|
|
||||||
const _options = Object.assign({
|
|
||||||
ID: null,
|
|
||||||
Title: null,
|
|
||||||
Body: null,
|
|
||||||
URL: null,
|
|
||||||
Footer: null,
|
|
||||||
Size: null
|
|
||||||
}, options);
|
|
||||||
|
|
||||||
const modal = a.Find(_options.ID);
|
const modal = a.Find(_options.ID);
|
||||||
if (modal === null) {
|
if (modal === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!a.#isNullOrWhitespace(_options.Title)) {
|
if (!this.isNullOrWhitespace(_options.Title)) {
|
||||||
modal.Title.innerHTML = _options.Title;
|
modal.Title.innerHTML = _options.Title;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!a.#isNullOrWhitespace(_options.Body)) {
|
if (!this.isNullOrWhitespace(_options.Body)) {
|
||||||
a.#html(modal.Body, _options.Body);
|
a.html(modal.Body, _options.Body);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.#isNullOrWhitespace(_options.Body)) {
|
if (!this.isNullOrWhitespace(_options.BodyURL)) {
|
||||||
a.#html(modal.Body, _options.Body);
|
if (_options.BodyURL.startsWith("http://") || _options.BodyURL.startsWith("https://") || _options.BodyURL.startsWith("/")) {
|
||||||
} else {
|
// ok
|
||||||
if (this.#isURL(_options.URL)) {
|
} else {
|
||||||
const response = await a.#retrieveURL(_options.URL);
|
_options.BodyURL = null;
|
||||||
|
|
||||||
await a.Update({ ID: _options.ID, Body: response });
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!a.#isNullOrWhitespace(_options.Footer)) {
|
if (!this.isNullOrWhitespace(_options.BodyURL)) {
|
||||||
a.#html(modal.Footer, _options.Footer);
|
let response = await a.retrieveURL(_options.BodyURL);
|
||||||
|
|
||||||
|
await a.Update({ ID: _options.ID, Body: response });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!a.#isNullOrWhitespace(_options.Size)) {
|
if (!this.isNullOrWhitespace(_options.Footer)) {
|
||||||
a.#setSize(_options.ID, "modal-" + _options.Size);
|
a.html(modal.Footer, _options.Footer);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
if (!this.isNullOrWhitespace(_options.Size)) {
|
||||||
|
modal.Modal.querySelectorAll(".modal-dialog").forEach(function(e) {
|
||||||
|
|
||||||
Exists(id) {
|
e.classList.forEach(function(e2) {
|
||||||
|
if (e2 == "modal-dialog") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e2.startsWith("modal-")) {
|
||||||
|
e.classList.remove(e2);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
e.classList.add("modal-" + _options.Size);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Exists: function (id) {
|
||||||
|
return (this.Find(id) !== null);
|
||||||
|
},
|
||||||
|
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;
|
||||||
@ -200,10 +145,47 @@ class BSDialog4 {
|
|||||||
Close: modal[0].querySelectorAll("[data-dismiss='modal']"),
|
Close: modal[0].querySelectorAll("[data-dismiss='modal']"),
|
||||||
Modal: modal[0]
|
Modal: modal[0]
|
||||||
};
|
};
|
||||||
}
|
},
|
||||||
|
Options: {
|
||||||
|
ShowModal: {
|
||||||
addModal(id, title, size, showFooter, isMovable, closeColour) {
|
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
|
||||||
|
}
|
||||||
|
},
|
||||||
|
addModal: function (id, title, size, showFooter, closeColour) {
|
||||||
const a = this;
|
const a = this;
|
||||||
|
|
||||||
// don't allow duplicates
|
// don't allow duplicates
|
||||||
@ -213,7 +195,7 @@ class BSDialog4 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let html = "";
|
let html = "";
|
||||||
html += '<div class="modal fade" style="display: none;" id="' + a.#prefix + id + '" tabindex="-1" aria-labelledby="exampleModalSmLabel" aria-hidden="true">';
|
html += '<div class="modal fade" style="display: none;" id="' + a.pfx + 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">';
|
||||||
@ -244,14 +226,14 @@ class BSDialog4 {
|
|||||||
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.#prefix + id).on('hidden.bs.modal', function (event) {
|
$("#" + a.pfx + id).on('hidden.bs.modal', function (event) {
|
||||||
a.Close(id);
|
a.Close(id);
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -259,48 +241,11 @@ class BSDialog4 {
|
|||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
a.#toggleSize(id);
|
a.toggleSize();
|
||||||
});
|
});
|
||||||
|
|
||||||
if (isMovable) {
|
},
|
||||||
const panel = modal.Modal.querySelectorAll(".modal-dialog")[0];
|
showButtonPrompt: async function (id, options) {
|
||||||
let isMovable = false;
|
|
||||||
let currentPos = { X: 0, Y: 0 };
|
|
||||||
let movePos = { X: 0, Y: 0 };
|
|
||||||
|
|
||||||
modal.Title.addEventListener("mousedown", function(e) {
|
|
||||||
if ((e.buttons == 1) && !isMovable) {
|
|
||||||
movePos = { X: e.clientX, Y: e.clientY };
|
|
||||||
currentPos = {
|
|
||||||
X: (a.#isNullOrWhitespace(panel.style.left) ? 0 : parseInt(panel.style.left.replace("px", ""))),
|
|
||||||
Y: (a.#isNullOrWhitespace(panel.style.top) ? 0 : parseInt(panel.style.top.replace("px", "")))
|
|
||||||
};
|
|
||||||
isMovable = true;
|
|
||||||
|
|
||||||
modal.Title.style.cursor = "move";
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
document.addEventListener("mouseup", function(e) {
|
|
||||||
if (isMovable) {
|
|
||||||
isMovable = false;
|
|
||||||
modal.Title.style.cursor = "default";
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
document.addEventListener("mousemove", function(e) {
|
|
||||||
if ((e.buttons == 1) && isMovable) {
|
|
||||||
panel.style.left = ((e.clientX - movePos.X) + currentPos.X) + 'px';
|
|
||||||
panel.style.top = ((e.clientY - movePos.Y) + currentPos.Y) + 'px';
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
async #showButtonPrompt(id, options) {
|
|
||||||
const a = this;
|
const a = this;
|
||||||
|
|
||||||
return await new Promise(async (resolve, reject) => {
|
return await new Promise(async (resolve, reject) => {
|
||||||
@ -345,9 +290,8 @@ class BSDialog4 {
|
|||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
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) => {
|
||||||
@ -366,13 +310,13 @@ class BSDialog4 {
|
|||||||
|
|
||||||
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>';
|
||||||
@ -431,26 +375,24 @@ class BSDialog4 {
|
|||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
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) {
|
||||||
#html(el, newHtml) {
|
/// todo: replace with pure JS
|
||||||
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;
|
||||||
}
|
}
|
||||||
@ -464,9 +406,24 @@ class BSDialog4 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (e.trim().length <= 0);
|
return (e.trim().length <= 0);
|
||||||
}
|
},
|
||||||
|
removeBackdrop: function () {
|
||||||
|
if (this.body.querySelectorAll(".modal-backdrop").length <= 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
async #retrieveURL(url) {
|
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) => {
|
return await new Promise(async (resolve) => {
|
||||||
await fetch(url, {
|
await fetch(url, {
|
||||||
cache: 'no-cache',
|
cache: 'no-cache',
|
||||||
@ -477,68 +434,28 @@ class BSDialog4 {
|
|||||||
resolve("Error: " + error);
|
resolve("Error: " + error);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
toggleSize: function () {
|
||||||
#isURL(value) {
|
|
||||||
const a = this;
|
const a = this;
|
||||||
|
|
||||||
if (a.#isNullOrWhitespace(value)) {
|
let modal = a.Find(a.id);
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (value.startsWith("http://") || value.startsWith("https://") || value.startsWith("/")) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
#setSize(id, size) {
|
|
||||||
const a = this;
|
|
||||||
|
|
||||||
const 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')) {
|
||||||
for (let i=0; i<a.#sizeList.length; i++) {
|
a.Update({ ID: a.id, Size: "md" });
|
||||||
modalDialog.classList.remove(a.#sizeList[i]);
|
} else if (modalDialog.classList.contains('modal-md')) {
|
||||||
|
a.Update({ ID: a.id, Size: "lg" });
|
||||||
|
} else if (modalDialog.classList.contains('modal-lg')) {
|
||||||
|
a.Update({ ID: a.id, Size: "xl" });
|
||||||
|
} else if (modalDialog.classList.contains('modal-xl')) {
|
||||||
|
a.Update({ ID: a.id, Size: "xxl" });
|
||||||
|
} else if (modalDialog.classList.contains('modal-xxl')) {
|
||||||
|
a.Update({ ID: a.id, Size: "sm" });
|
||||||
|
} else {
|
||||||
|
a.Update({ ID: a.id, Size: "md" });
|
||||||
}
|
}
|
||||||
|
|
||||||
modalDialog.classList.add(size);
|
|
||||||
}
|
}
|
||||||
|
};
|
||||||
#toggleSize(id) {
|
|
||||||
const a = this;
|
|
||||||
|
|
||||||
const modal = a.Find(id);
|
|
||||||
if (modal === null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let modalDialog = modal.Modal.querySelectorAll(".modal-dialog")[0];
|
|
||||||
|
|
||||||
let pos = 0;
|
|
||||||
for (let i=0; i<a.#sizeList.length; i++) {
|
|
||||||
if (modalDialog.classList.contains(a.#sizeList[i])) {
|
|
||||||
modalDialog.classList.remove(a.#sizeList[i]);
|
|
||||||
pos = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pos++;
|
|
||||||
|
|
||||||
if (pos > (a.#sizeList.length - 1)) {
|
|
||||||
pos = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
modalDialog.classList.add(a.#sizeList[pos]);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
var BSDialog = new BSDialog4();
|
|
4
bsdialog4.min.js
vendored
4
bsdialog4.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user