mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-11-22 06:23:01 +00:00
Changed Tour.mjs
- Bold action writting - completed tour on exit - previous button at end
This commit is contained in:
parent
dee2681744
commit
016bd03362
3 changed files with 41 additions and 31 deletions
|
@ -124,10 +124,7 @@ class Tour {
|
||||||
|
|
||||||
this.tour.addStep("complete", {
|
this.tour.addStep("complete", {
|
||||||
text: "Tour complete!\nIf you need any additional assistance, let us know :-)",
|
text: "Tour complete!\nIf you need any additional assistance, let us know :-)",
|
||||||
buttons: [
|
buttons: this.get_buttons(true, false, false)
|
||||||
{ text: "Previous", action: this.tour.back },
|
|
||||||
{ text: "Done", action: this.tour.cancel } //Changed from next to cancel for ease
|
|
||||||
]
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,21 +141,34 @@ class Tour {
|
||||||
this.tour.start();
|
this.tour.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
get_buttons(no_continue = false, no_prev = false) {
|
completed_tour()
|
||||||
|
{
|
||||||
|
window.localStorage.setItem("completed_tour", (new Date()).toISOString());
|
||||||
|
}
|
||||||
|
|
||||||
|
get_buttons(no_continue = false, no_prev = false, no_end = true) {
|
||||||
let next = { text: "Next", action: this.tour.next },
|
let next = { text: "Next", action: this.tour.next },
|
||||||
prev = { text: "Previous", action: this.tour.back },
|
prev = { text: "Previous", action: this.tour.back },
|
||||||
exit = { text: "Exit", action: () =>
|
exit = { text: "Exit", action: () =>
|
||||||
{
|
{
|
||||||
window.localStorage.setItem("completed_tour", (new Date()).toISOString());
|
this.completed_tour();
|
||||||
this.tour.cancel()
|
this.tour.cancel();
|
||||||
} };
|
} },
|
||||||
|
|
||||||
|
end = { text: "Done", action: () =>
|
||||||
|
{
|
||||||
|
this.completed_tour();
|
||||||
|
this.tour.next();
|
||||||
|
} }
|
||||||
|
|
||||||
let result = [];
|
let result = [];
|
||||||
|
|
||||||
if(!no_prev) result.push(prev);
|
if(!no_prev) result.push(prev);
|
||||||
if(!no_continue) {
|
if(!no_continue) {
|
||||||
result.push(next);
|
result.push(next);
|
||||||
result.push(exit);
|
result.push(exit);
|
||||||
}
|
}
|
||||||
|
if(!no_end) result.push(end);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
26
package-lock.json
generated
26
package-lock.json
generated
|
@ -394,7 +394,7 @@
|
||||||
"chart.js": {
|
"chart.js": {
|
||||||
"version": "2.8.0",
|
"version": "2.8.0",
|
||||||
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.8.0.tgz",
|
"resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.8.0.tgz",
|
||||||
"integrity": "sha512-Di3wUL4BFvqI5FB5K26aQ+hvWh8wnP9A3DWGvXHVkO13D3DSnaSsdZx29cXlEsYKVkn1E2az+ZYFS4t0zi8x0w==",
|
"integrity": "sha1-twOxDQ9OxQeerv3NbKMtyPgm4Ok=",
|
||||||
"requires": {
|
"requires": {
|
||||||
"chartjs-color": "^2.1.0",
|
"chartjs-color": "^2.1.0",
|
||||||
"moment": "^2.10.2"
|
"moment": "^2.10.2"
|
||||||
|
@ -403,7 +403,7 @@
|
||||||
"chartjs-color": {
|
"chartjs-color": {
|
||||||
"version": "2.3.0",
|
"version": "2.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.3.0.tgz",
|
||||||
"integrity": "sha512-hEvVheqczsoHD+fZ+tfPUE+1+RbV6b+eksp2LwAhwRTVXEjCSEavvk+Hg3H6SZfGlPh/UfmWKGIvZbtobOEm3g==",
|
"integrity": "sha1-Dn4ejbo36uhBX9PbOL9XIAfdlY8=",
|
||||||
"requires": {
|
"requires": {
|
||||||
"chartjs-color-string": "^0.6.0",
|
"chartjs-color-string": "^0.6.0",
|
||||||
"color-convert": "^0.5.3"
|
"color-convert": "^0.5.3"
|
||||||
|
@ -419,7 +419,7 @@
|
||||||
"chartjs-color-string": {
|
"chartjs-color-string": {
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz",
|
||||||
"integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==",
|
"integrity": "sha1-HfCWYhwOcHIKZPQTXqFx0FFAL3E=",
|
||||||
"requires": {
|
"requires": {
|
||||||
"color-name": "^1.0.0"
|
"color-name": "^1.0.0"
|
||||||
}
|
}
|
||||||
|
@ -427,7 +427,7 @@
|
||||||
"chroma-js": {
|
"chroma-js": {
|
||||||
"version": "2.0.4",
|
"version": "2.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.0.4.tgz",
|
||||||
"integrity": "sha512-gk71qOrSdBTLbsd0DIUO3QjZL8tTvMwpG1EoXYScy7rI4rcO4EyYH6zGuvCgUDumKumqg0pt6Ua+vWnMJsTYhw=="
|
"integrity": "sha1-Ua2lknSFZBFjDUXqUz1xcBhVTOo="
|
||||||
},
|
},
|
||||||
"class-utils": {
|
"class-utils": {
|
||||||
"version": "0.3.6",
|
"version": "0.3.6",
|
||||||
|
@ -1059,7 +1059,7 @@
|
||||||
"element-matches": {
|
"element-matches": {
|
||||||
"version": "0.1.2",
|
"version": "0.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/element-matches/-/element-matches-0.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/element-matches/-/element-matches-0.1.2.tgz",
|
||||||
"integrity": "sha512-yWh1otcs3OKUWDvu/IxyI36ZI3WNaRZlI0uG/DK6fu0pap0VYZ0J5pEGTk1zakme+hT0OKHwhlHc0N5TJhY6yQ=="
|
"integrity": "sha1-c0XLcellvSsS9yXlJFkcECGYNho="
|
||||||
},
|
},
|
||||||
"emojis-list": {
|
"emojis-list": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
|
@ -1682,7 +1682,7 @@
|
||||||
"iso8601-js-period": {
|
"iso8601-js-period": {
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/iso8601-js-period/-/iso8601-js-period-0.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/iso8601-js-period/-/iso8601-js-period-0.2.1.tgz",
|
||||||
"integrity": "sha512-iDyz2TQFBd5WhCZjruOwHj01JkQGu7YbVLCVdpA7lCGEcBzE3ffCPAhLh/M8TAp//kCixPpYN4XU54WHCxvD2Q=="
|
"integrity": "sha1-8X6h5FrhR4GwLx1wi1q0V/1xdKA="
|
||||||
},
|
},
|
||||||
"isobject": {
|
"isobject": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
|
@ -1757,7 +1757,7 @@
|
||||||
"leaflet": {
|
"leaflet": {
|
||||||
"version": "1.5.1",
|
"version": "1.5.1",
|
||||||
"resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.5.1.tgz",
|
"resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.5.1.tgz",
|
||||||
"integrity": "sha512-ekM9KAeG99tYisNBg0IzEywAlp0hYI5XRipsqRXyRTeuU8jcuntilpp+eFf5gaE0xubc9RuSNIVtByEKwqFV0w=="
|
"integrity": "sha1-mvudlj1myHAGaxNC56BvkoQPRr8="
|
||||||
},
|
},
|
||||||
"leaflet-fullscreen": {
|
"leaflet-fullscreen": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
|
@ -1767,7 +1767,7 @@
|
||||||
"leaflet.markercluster": {
|
"leaflet.markercluster": {
|
||||||
"version": "1.4.1",
|
"version": "1.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.4.1.tgz",
|
"resolved": "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.4.1.tgz",
|
||||||
"integrity": "sha512-ZSEpE/EFApR0bJ1w/dUGwTSUvWlpalKqIzkaYdYB7jaftQA/Y2Jav+eT4CMtEYFj+ZK4mswP13Q2acnPBnhGOw=="
|
"integrity": "sha1-tT8sTyynMG3asdu28YYdXoqmxeU="
|
||||||
},
|
},
|
||||||
"loader-utils": {
|
"loader-utils": {
|
||||||
"version": "0.2.17",
|
"version": "0.2.17",
|
||||||
|
@ -1938,7 +1938,7 @@
|
||||||
"moment": {
|
"moment": {
|
||||||
"version": "2.24.0",
|
"version": "2.24.0",
|
||||||
"resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz",
|
"resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz",
|
||||||
"integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="
|
"integrity": "sha1-DQVdU/UFKqZTyfbraLtdEr9cK1s="
|
||||||
},
|
},
|
||||||
"ms": {
|
"ms": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
@ -2162,7 +2162,7 @@
|
||||||
"popper.js": {
|
"popper.js": {
|
||||||
"version": "1.15.0",
|
"version": "1.15.0",
|
||||||
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz",
|
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz",
|
||||||
"integrity": "sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA=="
|
"integrity": "sha1-VWC5m7rXZH6fqkdca4BWYh9aT/I="
|
||||||
},
|
},
|
||||||
"posix-character-classes": {
|
"posix-character-classes": {
|
||||||
"version": "0.1.1",
|
"version": "0.1.1",
|
||||||
|
@ -4012,12 +4012,12 @@
|
||||||
"smartsettings": {
|
"smartsettings": {
|
||||||
"version": "1.2.3",
|
"version": "1.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/smartsettings/-/smartsettings-1.2.3.tgz",
|
"resolved": "https://registry.npmjs.org/smartsettings/-/smartsettings-1.2.3.tgz",
|
||||||
"integrity": "sha512-IPylE5IllnSAwKoA2To1otDrs40fdaQOnxCDXwjUCwnIHPr27Z+pjGpkbQqwhObb0poDnzldpbwa+5TYK107/g=="
|
"integrity": "sha1-IUi7BZY6ohd7Sk8b8FiHyut/hTs="
|
||||||
},
|
},
|
||||||
"smoothscroll-polyfill": {
|
"smoothscroll-polyfill": {
|
||||||
"version": "0.4.4",
|
"version": "0.4.4",
|
||||||
"resolved": "https://registry.npmjs.org/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz",
|
"resolved": "https://registry.npmjs.org/smoothscroll-polyfill/-/smoothscroll-polyfill-0.4.4.tgz",
|
||||||
"integrity": "sha512-TK5ZA9U5RqCwMpfoMq/l1mrH0JAR7y7KRvOBx0n2869aLxch+gT9GhN3yUfjiw+d/DiF1mKo14+hd62JyMmoBg=="
|
"integrity": "sha1-OiWRMdxpMObKgAA+HLA7YDtpq/g="
|
||||||
},
|
},
|
||||||
"snapdragon": {
|
"snapdragon": {
|
||||||
"version": "0.8.2",
|
"version": "0.8.2",
|
||||||
|
@ -4346,7 +4346,7 @@
|
||||||
"tippy.js": {
|
"tippy.js": {
|
||||||
"version": "4.3.4",
|
"version": "4.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-4.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-4.3.4.tgz",
|
||||||
"integrity": "sha512-O2ukxHOJTLVYZ/TfHjNd8WgAWoefX9uk5QiWRdHfX2PR2lBpUU4BJQLl7U2Ykc8K7o16gTeHEElpuRfgD5b0aA==",
|
"integrity": "sha1-mpH9XOjEAfGBt62qaywn89EF87o=",
|
||||||
"requires": {
|
"requires": {
|
||||||
"popper.js": "^1.14.7"
|
"popper.js": "^1.14.7"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue