Files
Atay-Makhzan/web_src/js/markup/codecopy.ts
T

23 lines
907 B
TypeScript
Raw Normal View History

import {svg} from '../svg.ts';
2025-04-05 11:56:48 +08:00
import {queryElems} from '../utils/dom.ts';
2024-11-11 12:13:57 +01:00
export function makeCodeCopyButton(): HTMLButtonElement {
const button = document.createElement('button');
button.classList.add('code-copy', 'ui', 'button');
button.innerHTML = svg('octicon-copy');
return button;
}
export function initMarkupCodeCopy(elMarkup: HTMLElement): void {
2025-04-05 11:56:48 +08:00
// .markup .code-block code
queryElems(elMarkup, '.code-block code', (el) => {
if (!el.textContent) return;
const btn = makeCodeCopyButton();
// remove final trailing newline introduced during HTML rendering
btn.setAttribute('data-clipboard-text', el.textContent.replace(/\r?\n$/, ''));
// we only want to use `.code-block-container` if it exists, no matter `.code-block` exists or not.
const btnContainer = el.closest('.code-block-container') ?? el.closest('.code-block');
2025-12-03 03:13:16 +01:00
btnContainer!.append(btn);
2025-04-05 11:56:48 +08:00
});
}