2015-08-13 04:59:55 +02:00
|
|
|
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
|
|
|
|
// IT'S ALL JUST JUNK FOR OUR DOCS!
|
|
|
|
// ++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
|
|
|
|
/*!
|
2018-04-02 13:55:58 +02:00
|
|
|
* JavaScript for Bootstrap's docs (https://getbootstrap.com/)
|
2022-01-03 14:03:42 +01:00
|
|
|
* Copyright 2011-2022 The Bootstrap Authors
|
|
|
|
* Copyright 2011-2022 Twitter, Inc.
|
2019-02-06 10:12:56 +01:00
|
|
|
* Licensed under the Creative Commons Attribution 3.0 Unported License.
|
|
|
|
* For details, see https://creativecommons.org/licenses/by/3.0/.
|
2015-08-13 04:59:55 +02:00
|
|
|
*/
|
|
|
|
|
2022-02-19 14:16:23 +01:00
|
|
|
/* global ClipboardJS: false, bootstrap: false */
|
2015-08-13 04:59:55 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
(() => {
|
2016-12-31 06:25:26 +01:00
|
|
|
'use strict'
|
2015-08-13 04:59:55 +02:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Tooltip and popover demos
|
2020-03-28 17:05:11 +01:00
|
|
|
document.querySelectorAll('.tooltip-demo')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(tooltip => {
|
2019-02-24 14:42:18 +01:00
|
|
|
new bootstrap.Tooltip(tooltip, {
|
2020-07-22 21:33:11 +02:00
|
|
|
selector: '[data-bs-toggle="tooltip"]'
|
2018-11-20 22:35:11 +01:00
|
|
|
})
|
2019-02-24 14:42:18 +01:00
|
|
|
})
|
2015-08-13 04:59:55 +02:00
|
|
|
|
2020-07-22 21:33:11 +02:00
|
|
|
document.querySelectorAll('[data-bs-toggle="popover"]')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(popover => {
|
2019-02-24 14:42:18 +01:00
|
|
|
new bootstrap.Popover(popover)
|
|
|
|
})
|
2018-11-20 22:35:11 +01:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
const toastPlacement = document.getElementById('toastPlacement')
|
2020-11-29 15:58:44 +01:00
|
|
|
if (toastPlacement) {
|
|
|
|
document.getElementById('selectToastPlacement').addEventListener('change', function () {
|
|
|
|
if (!toastPlacement.dataset.originalClass) {
|
|
|
|
toastPlacement.dataset.originalClass = toastPlacement.className
|
|
|
|
}
|
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
toastPlacement.className = `${toastPlacement.dataset.originalClass} ${this.value}`
|
2020-11-29 15:58:44 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-18 14:10:01 +01:00
|
|
|
document.querySelectorAll('.bd-example .toast')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(toastNode => {
|
|
|
|
const toast = new bootstrap.Toast(toastNode, {
|
2019-02-24 14:42:18 +01:00
|
|
|
autohide: false
|
2018-08-23 21:06:35 +02:00
|
|
|
})
|
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
toast.show()
|
|
|
|
})
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
const toastTrigger = document.getElementById('liveToastBtn')
|
|
|
|
const toastLiveExample = document.getElementById('liveToast')
|
2021-01-18 14:10:01 +01:00
|
|
|
if (toastTrigger) {
|
2022-04-12 17:07:25 +02:00
|
|
|
toastTrigger.addEventListener('click', () => {
|
|
|
|
const toast = new bootstrap.Toast(toastLiveExample)
|
2021-01-18 14:10:01 +01:00
|
|
|
|
|
|
|
toast.show()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
const alertPlaceholder = document.getElementById('liveAlertPlaceholder')
|
|
|
|
const alertTrigger = document.getElementById('liveAlertBtn')
|
2021-06-29 17:46:25 +02:00
|
|
|
|
|
|
|
function alert(message, type) {
|
2022-04-12 17:07:25 +02:00
|
|
|
const wrapper = document.createElement('div')
|
|
|
|
wrapper.innerHTML = `<div class="alert alert-${type} alert-dismissible" role="alert">${message}<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button></div>`
|
2021-06-29 17:46:25 +02:00
|
|
|
|
|
|
|
alertPlaceholder.append(wrapper)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (alertTrigger) {
|
2022-04-12 17:07:25 +02:00
|
|
|
alertTrigger.addEventListener('click', () => {
|
2021-06-29 17:46:25 +02:00
|
|
|
alert('Nice, you triggered this alert message!', 'success')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Demos within modals
|
2020-03-28 17:05:11 +01:00
|
|
|
document.querySelectorAll('.tooltip-test')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(tooltip => {
|
2019-02-24 14:42:18 +01:00
|
|
|
new bootstrap.Tooltip(tooltip)
|
|
|
|
})
|
2015-08-13 04:59:55 +02:00
|
|
|
|
2020-03-28 17:05:11 +01:00
|
|
|
document.querySelectorAll('.popover-test')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(popover => {
|
2019-02-24 14:42:18 +01:00
|
|
|
new bootstrap.Popover(popover)
|
|
|
|
})
|
2015-09-07 17:28:42 +02:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Indeterminate checkbox example
|
2020-03-28 17:05:11 +01:00
|
|
|
document.querySelectorAll('.bd-example-indeterminate [type="checkbox"]')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(checkbox => {
|
2019-02-24 14:42:18 +01:00
|
|
|
checkbox.indeterminate = true
|
|
|
|
})
|
2015-08-18 06:21:39 +02:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Disable empty links in docs examples
|
2020-03-28 17:05:11 +01:00
|
|
|
document.querySelectorAll('.bd-content [href="#"]')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(link => {
|
|
|
|
link.addEventListener('click', event => {
|
2021-09-15 13:27:46 +02:00
|
|
|
event.preventDefault()
|
2019-02-24 14:42:18 +01:00
|
|
|
})
|
|
|
|
})
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Modal relatedTarget demo
|
2022-04-12 17:07:25 +02:00
|
|
|
const exampleModal = document.getElementById('exampleModal')
|
2019-02-24 14:42:18 +01:00
|
|
|
if (exampleModal) {
|
2022-04-12 17:07:25 +02:00
|
|
|
exampleModal.addEventListener('show.bs.modal', event => {
|
2020-05-19 07:33:12 +02:00
|
|
|
// Button that triggered the modal
|
2022-04-12 17:07:25 +02:00
|
|
|
const button = event.relatedTarget
|
2020-07-22 21:33:11 +02:00
|
|
|
// Extract info from data-bs-* attributes
|
2022-04-12 17:07:25 +02:00
|
|
|
const recipient = button.getAttribute('data-bs-whatever')
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2019-02-24 14:42:18 +01:00
|
|
|
// Update the modal's content.
|
2022-04-12 17:07:25 +02:00
|
|
|
const modalTitle = exampleModal.querySelector('.modal-title')
|
|
|
|
const modalBodyInput = exampleModal.querySelector('.modal-body input')
|
2015-09-15 18:36:36 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
modalTitle.textContent = `New message to ${recipient}`
|
2019-02-24 14:42:18 +01:00
|
|
|
modalBodyInput.value = recipient
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert copy to clipboard button before .highlight
|
2022-04-12 17:07:25 +02:00
|
|
|
const btnTitle = 'Copy to clipboard'
|
|
|
|
const btnEdit = 'Edit on StackBlitz'
|
|
|
|
const btnHtml = '<div class="bd-clipboard"><button type="button" class="btn-clipboard">Copy</button></div>'
|
2020-11-13 17:56:04 +01:00
|
|
|
document.querySelectorAll('div.highlight')
|
2022-04-12 17:07:25 +02:00
|
|
|
.forEach(element => {
|
2019-02-24 14:42:18 +01:00
|
|
|
element.insertAdjacentHTML('beforebegin', btnHtml)
|
|
|
|
})
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2022-03-09 16:32:58 +01:00
|
|
|
/**
|
|
|
|
*
|
2022-03-11 16:56:57 +01:00
|
|
|
* @param {string} selector
|
2022-03-09 16:32:58 +01:00
|
|
|
* @param {string} title
|
|
|
|
*/
|
2022-03-11 16:56:57 +01:00
|
|
|
function snippetButtonTooltip(selector, title) {
|
2022-04-12 17:07:25 +02:00
|
|
|
document.querySelectorAll(selector).forEach(btn => {
|
|
|
|
const tooltipBtn = new bootstrap.Tooltip(btn, { title })
|
2022-03-11 16:56:57 +01:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
btn.addEventListener('mouseleave', () => {
|
2022-03-11 16:56:57 +01:00
|
|
|
// Explicitly hide tooltip, since after clicking it remains
|
|
|
|
// focused (as it's a button), so tooltip would otherwise
|
|
|
|
// remain visible until focus is moved away
|
|
|
|
tooltipBtn.hide()
|
|
|
|
})
|
2015-10-13 23:51:03 +02:00
|
|
|
})
|
2022-03-09 16:32:58 +01:00
|
|
|
}
|
|
|
|
|
2022-04-01 10:01:51 +02:00
|
|
|
snippetButtonTooltip('.btn-clipboard', btnTitle)
|
|
|
|
snippetButtonTooltip('.btn-edit', btnEdit)
|
2015-10-13 23:50:42 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
const clipboard = new ClipboardJS('.btn-clipboard', {
|
|
|
|
target(trigger) {
|
2019-02-24 14:42:18 +01:00
|
|
|
return trigger.parentNode.nextElementSibling
|
|
|
|
}
|
|
|
|
})
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
clipboard.on('success', event => {
|
|
|
|
const tooltipBtn = bootstrap.Tooltip.getInstance(event.trigger)
|
2015-10-13 23:51:03 +02:00
|
|
|
|
2021-11-25 18:14:02 +01:00
|
|
|
tooltipBtn.setContent({ '.tooltip-inner': 'Copied!' })
|
2022-04-12 17:07:25 +02:00
|
|
|
event.trigger.addEventListener('hidden.bs.tooltip', () => {
|
2022-02-07 09:05:43 +01:00
|
|
|
tooltipBtn.setContent({ '.tooltip-inner': btnTitle })
|
2021-11-25 18:14:02 +01:00
|
|
|
}, { once: true })
|
2021-09-15 13:27:46 +02:00
|
|
|
event.clearSelection()
|
2019-02-24 14:42:18 +01:00
|
|
|
})
|
2018-07-19 18:48:52 +02:00
|
|
|
|
2022-04-12 17:07:25 +02:00
|
|
|
clipboard.on('error', event => {
|
|
|
|
const modifierKey = /mac/i.test(navigator.userAgent) ? '\u2318' : 'Ctrl-'
|
|
|
|
const fallbackMsg = `Press ${modifierKey}C to copy`
|
|
|
|
const tooltipBtn = bootstrap.Tooltip.getInstance(event.trigger)
|
2015-10-13 23:51:03 +02:00
|
|
|
|
2021-11-25 18:14:02 +01:00
|
|
|
tooltipBtn.setContent({ '.tooltip-inner': fallbackMsg })
|
2022-04-12 17:07:25 +02:00
|
|
|
event.trigger.addEventListener('hidden.bs.tooltip', () => {
|
2022-02-07 09:05:43 +01:00
|
|
|
tooltipBtn.setContent({ '.tooltip-inner': btnTitle })
|
2021-11-25 18:14:02 +01:00
|
|
|
}, { once: true })
|
2019-02-24 14:42:18 +01:00
|
|
|
})
|
2019-02-26 12:20:34 +01:00
|
|
|
})()
|