2024-07-07 15:32:30 +00:00
|
|
|
import {svg} from '../svg.ts';
|
2021-11-16 08:16:05 +00:00
|
|
|
|
2022-12-25 17:17:48 +00:00
|
|
|
export function makeCodeCopyButton() {
|
2021-11-16 08:16:05 +00:00
|
|
|
const button = document.createElement('button');
|
|
|
|
button.classList.add('code-copy', 'ui', 'button');
|
|
|
|
button.innerHTML = svg('octicon-copy');
|
2022-12-25 17:17:48 +00:00
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function renderCodeCopy() {
|
|
|
|
const els = document.querySelectorAll('.markup .code-block code');
|
|
|
|
if (!els.length) return;
|
2021-11-16 08:16:05 +00:00
|
|
|
|
|
|
|
for (const el of els) {
|
2024-02-01 21:01:48 +00:00
|
|
|
if (!el.textContent) continue;
|
2022-12-25 17:17:48 +00:00
|
|
|
const btn = makeCodeCopyButton();
|
2024-02-01 21:01:48 +00:00
|
|
|
// remove final trailing newline introduced during HTML rendering
|
|
|
|
btn.setAttribute('data-clipboard-text', el.textContent.replace(/\r?\n$/, ''));
|
2021-11-16 08:16:05 +00:00
|
|
|
el.after(btn);
|
|
|
|
}
|
|
|
|
}
|