12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * Set up copy/paste for code blocks
- */
- const copySVG = `<svg aria-labelledby="title" aria-hidden="true" data-prefix="far" data-icon="copy" class="svg-inline--fa fa-copy fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
- <title id="title" lang="en">Copy code</title>
- <path fill="#777" d="M433.941 65.941l-51.882-51.882A48 48 0 0 0 348.118 0H176c-26.51 0-48 21.49-48 48v48H48c-26.51 0-48 21.49-48 48v320c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48v-48h80c26.51 0 48-21.49 48-48V99.882a48 48 0 0 0-14.059-33.941zM266 464H54a6 6 0 0 1-6-6V150a6 6 0 0 1 6-6h74v224c0 26.51 21.49 48 48 48h96v42a6 6 0 0 1-6 6zm128-96H182a6 6 0 0 1-6-6V54a6 6 0 0 1 6-6h106v88c0 13.255 10.745 24 24 24h88v202a6 6 0 0 1-6 6zm6-256h-64V48h9.632c1.591 0 3.117.632 4.243 1.757l48.368 48.368a6 6 0 0 1 1.757 4.243V112z"></path>
- </svg>`
- const clipboardButton = id =>
- `<a id="copy-button-${id}" class="btn copybtn o-tooltip--left" data-tooltip="Copy" data-clipboard-target="#${id}">
- ${copySVG}
- </a>`
- // Clears selected text since ClipboardJS will select the text when copying
- const clearSelection = () => {
- if (window.getSelection) {
- window.getSelection().removeAllRanges()
- } else if (document.selection) {
- document.selection.empty()
- }
- }
- // Changes tooltip text for two seconds, then changes it back
- const temporarilyChangeTooltip = (el, newText) => {
- const oldText = el.getAttribute('data-tooltip')
- el.setAttribute('data-tooltip', newText)
- setTimeout(() => el.setAttribute('data-tooltip', oldText), 2000)
- }
- const addCopyButtonToCodeCells = () => {
- // If ClipboardJS hasn't loaded, wait a bit and try again. This
- // happens because we load ClipboardJS asynchronously.
- if (window.ClipboardJS === undefined) {
- setTimeout(addCopyButtonToCodeCells, 250)
- return
- }
- pageElements['codeCells'].forEach((codeCell) => {
- const id = codeCell.getAttribute('id')
- if (document.getElementById("copy-button" + id) == null) {
- codeCell.insertAdjacentHTML('afterend', clipboardButton(id));
- }
- })
- const clipboard = new ClipboardJS('.copybtn')
- clipboard.on('success', event => {
- clearSelection()
- temporarilyChangeTooltip(event.trigger, 'Copied!')
- })
- clipboard.on('error', event => {
- temporarilyChangeTooltip(event.trigger, 'Failed to copy')
- })
- // Get rid of clipboard before the next page visit to avoid memory leak
- document.addEventListener('turbolinks:before-visit', () =>
- clipboard.destroy()
- )
- }
- initFunction(addCopyButtonToCodeCells);
|