0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/site/assets/js/application.js

177 lines
5.5 KiB
JavaScript
Raw Normal View History

2015-08-13 04:59:55 +02:00
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
/*!
* 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.
* 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
*/
/* global ClipboardJS: false, bootstrap: false */
2015-08-13 04:59:55 +02:00
(() => {
'use strict'
2015-08-13 04:59:55 +02:00
// Tooltip and popover demos
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.tooltip-demo')
.forEach(tooltip => {
new bootstrap.Tooltip(tooltip, {
selector: '[data-bs-toggle="tooltip"]'
2018-11-20 22:35:11 +01:00
})
})
2015-08-13 04:59:55 +02:00
document.querySelectorAll('[data-bs-toggle="popover"]')
.forEach(popover => {
new bootstrap.Popover(popover)
})
2018-11-20 22:35:11 +01: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
}
toastPlacement.className = `${toastPlacement.dataset.originalClass} ${this.value}`
2020-11-29 15:58:44 +01:00
})
}
document.querySelectorAll('.bd-example .toast')
.forEach(toastNode => {
const toast = new bootstrap.Toast(toastNode, {
autohide: false
2018-08-23 21:06:35 +02:00
})
toast.show()
})
2018-07-19 18:48:52 +02:00
const toastTrigger = document.getElementById('liveToastBtn')
const toastLiveExample = document.getElementById('liveToast')
if (toastTrigger) {
toastTrigger.addEventListener('click', () => {
const toast = new bootstrap.Toast(toastLiveExample)
toast.show()
})
}
const alertPlaceholder = document.getElementById('liveAlertPlaceholder')
const alertTrigger = document.getElementById('liveAlertBtn')
function alert(message, type) {
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>`
alertPlaceholder.append(wrapper)
}
if (alertTrigger) {
alertTrigger.addEventListener('click', () => {
alert('Nice, you triggered this alert message!', 'success')
})
}
// Demos within modals
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.tooltip-test')
.forEach(tooltip => {
new bootstrap.Tooltip(tooltip)
})
2015-08-13 04:59:55 +02:00
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.popover-test')
.forEach(popover => {
new bootstrap.Popover(popover)
})
// Indeterminate checkbox example
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.bd-example-indeterminate [type="checkbox"]')
.forEach(checkbox => {
checkbox.indeterminate = true
})
2015-08-18 06:21:39 +02:00
// Disable empty links in docs examples
2020-03-28 17:05:11 +01:00
document.querySelectorAll('.bd-content [href="#"]')
.forEach(link => {
link.addEventListener('click', event => {
2021-09-15 13:27:46 +02:00
event.preventDefault()
})
})
2018-07-19 18:48:52 +02:00
// Modal relatedTarget demo
const exampleModal = document.getElementById('exampleModal')
if (exampleModal) {
exampleModal.addEventListener('show.bs.modal', event => {
// Button that triggered the modal
const button = event.relatedTarget
// Extract info from data-bs-* attributes
const recipient = button.getAttribute('data-bs-whatever')
2018-07-19 18:48:52 +02:00
// Update the modal's content.
const modalTitle = exampleModal.querySelector('.modal-title')
const modalBodyInput = exampleModal.querySelector('.modal-body input')
modalTitle.textContent = `New message to ${recipient}`
modalBodyInput.value = recipient
})
}
// Insert copy to clipboard button before .highlight
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>'
document.querySelectorAll('div.highlight')
.forEach(element => {
element.insertAdjacentHTML('beforebegin', btnHtml)
})
2018-07-19 18:48:52 +02:00
/**
*
2022-03-11 16:56:57 +01:00
* @param {string} selector
* @param {string} title
*/
2022-03-11 16:56:57 +01:00
function snippetButtonTooltip(selector, title) {
document.querySelectorAll(selector).forEach(btn => {
const tooltipBtn = new bootstrap.Tooltip(btn, { title })
2022-03-11 16:56:57 +01: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()
})
})
}
2022-04-01 10:01:51 +02:00
snippetButtonTooltip('.btn-clipboard', btnTitle)
snippetButtonTooltip('.btn-edit', btnEdit)
const clipboard = new ClipboardJS('.btn-clipboard', {
target(trigger) {
return trigger.parentNode.nextElementSibling
}
})
2018-07-19 18:48:52 +02:00
clipboard.on('success', event => {
const tooltipBtn = bootstrap.Tooltip.getInstance(event.trigger)
tooltipBtn.setContent({ '.tooltip-inner': 'Copied!' })
event.trigger.addEventListener('hidden.bs.tooltip', () => {
tooltipBtn.setContent({ '.tooltip-inner': btnTitle })
}, { once: true })
2021-09-15 13:27:46 +02:00
event.clearSelection()
})
2018-07-19 18:48:52 +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)
tooltipBtn.setContent({ '.tooltip-inner': fallbackMsg })
event.trigger.addEventListener('hidden.bs.tooltip', () => {
tooltipBtn.setContent({ '.tooltip-inner': btnTitle })
}, { once: true })
})
2019-02-26 12:20:34 +01:00
})()