generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase.js
114 lines (104 loc) · 3.76 KB
/
base.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
* @fileOverview Base JavaScript Function Library.
* @author <a href="https://github.com/richardhenyash">Richard Ash</a>
* @version 1.1.1
*/
/*jshint esversion: 6 */
/* globals $, bootstrap */
// On click event handler added to error information button to build modal dialog
$("#errorInformationBtn").click(function() {
(buildInformationModal("#errorInformationBtn", "information-modal-title", null, "#informationModal", "modal-sm"));
});
/* Show Toast Messages */
/* Thanks to help from Shaun at code instutute, https://getbootstrap.com/docs/5.0/components/toasts/#usage */
/* and https://stackoverflow.com/questions/63515279/how-to-initialize-toasts-with-javascript-in-bootstrap-5 */
let toastElList = [].slice.call(document.querySelectorAll('.toast'));
let toastList = toastElList.map(function (toastEl) {
/* Set toast initialisation options */
let option = {
animation: true,
autohide: false,
delay: 5000,
};
let bsToast = new bootstrap.Toast(toastEl, option);
/* Show toasts */
bsToast.show();
});
/**
* [Function to set the correct colour on a select element
* @return {[modalTitle]} [Modal title, string]
*/
function setSelectColour(selectId, unSelectedColour, selectedColour) {
let selectSelected = $(selectId).val();
let returnColour;
if(!selectSelected) {
returnColour = unSelectedColour;
$(selectId).css('color', unSelectedColour);
} else {
returnColour = selectedColour;
$(selectId).css('color', selectedColour);
}
return returnColour;
}
/**
* [Function to build information modal from data attributes and javascript content array]
* @return {[modalTitle]} [Modal title, string]
*/
function buildInformationModal(btnId, titleAttribute, scriptId, modalId, modalSize) {
let modalTitleId = modalId + "Title";
let modalContentId = modalId + "Content";
let modalSizeId = modalId + "Size";
// Get modal title from data atttribute
let modalTitle = $(btnId).data(titleAttribute);
$(modalTitleId).text(modalTitle);
let contentHTML;
if (scriptId) {
// Get modal content from javascript content array if passed
let contentArray = JSON.parse($(scriptId).text());
// Build content HTML
contentHTML= "<p>" + contentArray.join("</p><p>") + "</p>";
} else {
// Else get modal content from data attribute
let modalContent = $(btnId).data("information-modal-content");
// Build content HTML
contentHTML= "<p>" + modalContent + "</p>";
}
// Remove size classes
$(modalSizeId).removeClass("modal-sm");
$(modalSizeId).removeClass("modal-lg");
$(modalSizeId).removeClass("modal-xl");
// Set modal size
if ((modalSize) != "") {
$(modalSizeId).addClass(modalSize);
}
// Update modal content
$(modalContentId).html(contentHTML);
// Show content
$(modalId).modal('show');
return modalTitle;
}
/**
* [Function to build confirm modal from data attributes]
* @return {[modalTitle]} [Modal title, string]
*/
function buildConfirmModal(btnId, modalId) {
let modalTitleId = modalId + "Title";
let modalContentId = modalId + "Content";
let modalLinkId = modalId + "Confirmed";
// Get modal title from data atttribute
let modalTitle = $(btnId).data("confirm-modal-title");
$(modalTitleId).text(modalTitle);
// Get modal content from data attribute
let modalContent = $(btnId).data("confirm-modal-content");
// Build content HTML
let contentHTML= "<p>" + modalContent + "</p>";
// Update modal content
$(modalContentId).html(contentHTML);
// Get modal link from data atttribute
let modalLink = $(btnId).data("confirm-modal-link");
// Update modal link
$(modalLinkId).attr("href", modalLink);
// Show content
$(modalId).modal('show');
return modalTitle;
}