-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.js
92 lines (86 loc) · 2.62 KB
/
main.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
// JS for links.html and options.html
const backToTop = document.getElementById('back-to-top')
if (backToTop) {
window.addEventListener('scroll', debounce(onScroll))
backToTop.addEventListener('click', () => {
document.body.scrollTop = 0
document.documentElement.scrollTop = 0
})
}
// noinspection TypeScriptUMDGlobal
if (typeof ClipboardJS !== 'undefined') {
document
.querySelectorAll('.clip')
.forEach((el) =>
el.addEventListener('click', (e) => e.preventDefault())
)
// noinspection TypeScriptUMDGlobal
const clipboard = new ClipboardJS('.clip')
clipboard.on('success', function (event) {
// console.debug('clipboard.success:', event)
// const text = event.text
// console.debug(`text: "${text}"`)
// noinspection JSUnresolvedReference
if (event.trigger.dataset.toast) {
// noinspection JSUnresolvedReference
showToast(event.trigger.dataset.toast, 'success')
} else {
showToast('Copied to Clipboard', 'success')
}
})
clipboard.on('error', function (event) {
console.debug('clipboard.error:', event)
showToast('Clipboard Copy Failed', 'warning')
})
}
$('.form-control').on('change input', function () {
$(this).removeClass('is-invalid')
})
/**
* On Scroll Callback
* @function onScroll
*/
function onScroll() {
if (
document.body.scrollTop > 20 ||
document.documentElement.scrollTop > 20
) {
backToTop.style.display = 'block'
} else {
backToTop.style.display = 'none'
}
}
/**
* Show Bootstrap Toast
* @function showToast
* @param {String} message
* @param {String} type
*/
function showToast(message, type = 'primary') {
console.debug(`showToast: ${type}: ${message}`)
const clone = document.querySelector('#clones .toast')
const container = document.getElementById('toast-container')
if (!clone || !container) {
return console.warn('Missing clone or container:', clone, container)
}
const element = clone.cloneNode(true)
element.querySelector('.toast-body').textContent = message
element.classList.add(`text-bg-${type}`)
container.appendChild(element)
const toast = new bootstrap.Toast(element)
element.addEventListener('mousemove', () => toast.hide())
toast.show()
}
/**
* DeBounce Function
* @function debounce
* @param {Function} fn
* @param {Number} timeout
*/
function debounce(fn, timeout = 250) {
let timeoutID
return (...args) => {
clearTimeout(timeoutID)
timeoutID = setTimeout(() => fn(...args), timeout)
}
}