mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-09 08:07:24 +01:00
* Fix #36515 * Fix #23076 * Remove unnecessary `mermaid.parse` * Fix data race when using `data-render-done` * Remove unnecessary `Promise.all` * Fix duplicate `load` event and duplicate SVG node rendering * Remove unnecessary `IntersectionObserver` * Add `bindFunctions` call, the old comment seems not true
26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
import {svg} from '../svg.ts';
|
|
import {queryElems} from '../utils/dom.ts';
|
|
|
|
export function makeCodeCopyButton(attrs: Record<string, string> = {}): HTMLButtonElement {
|
|
const button = document.createElement('button');
|
|
button.classList.add('code-copy', 'ui', 'button');
|
|
button.innerHTML = svg('octicon-copy');
|
|
for (const [key, value] of Object.entries(attrs)) {
|
|
button.setAttribute(key, value);
|
|
}
|
|
return button;
|
|
}
|
|
|
|
export function initMarkupCodeCopy(elMarkup: HTMLElement): void {
|
|
// .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');
|
|
btnContainer!.append(btn);
|
|
});
|
|
}
|