mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-29 06:06:21 +00:00
Introduces a frontend external-render framework that runs renderer plugins inside an `iframe` (loaded via `srcdoc` to keep the CSP `sandbox` directive working without origin-related console noise), and migrates the 3D viewer and OpenAPI/Swagger renderers onto it. PDF and asciicast paths are refactored to share the same `data-render-name` mechanism. Adds e2e coverage for 3D, PDF, asciicast and OpenAPI render paths, plus a regression for the `RefTypeNameSubURL` double-escape on non-ASCII branch names. Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Claude (Opus 4.6) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
32 lines
1.5 KiB
TypeScript
32 lines
1.5 KiB
TypeScript
import {initMarkupCodeMermaid} from './mermaid.ts';
|
|
import {initMarkupCodeMath} from './math.ts';
|
|
import {initMarkupCodeCopy} from './codecopy.ts';
|
|
import {initMarkupRenderAsciicast} from './asciicast.ts';
|
|
import {initMarkupTasklist} from './tasklist.ts';
|
|
import {registerGlobalInitFunc, registerGlobalSelectorFunc} from '../modules/observer.ts';
|
|
import {initExternalRenderIframe} from './render-iframe.ts';
|
|
import {initMarkupRefIssue} from './refissue.ts';
|
|
import {toggleElemClass} from '../utils/dom.ts';
|
|
|
|
// code that runs for all markup content
|
|
export function initMarkupContent(): void {
|
|
registerGlobalInitFunc('initExternalRenderIframe', initExternalRenderIframe);
|
|
registerGlobalSelectorFunc('.markup', (el: HTMLElement) => {
|
|
if (el.matches('.truncated-markup')) {
|
|
// when the rendered markup is truncated (e.g.: user's home activity feed)
|
|
// we should not initialize any of the features (e.g.: code copy button), due to:
|
|
// * truncated markup already means that the container doesn't want to show complex contents
|
|
// * truncated markup may contain incomplete HTML/mermaid elements
|
|
// so the only thing we need to do is to remove the "is-loading" class added by the backend render.
|
|
toggleElemClass(el.querySelectorAll('.is-loading'), 'is-loading', false);
|
|
return;
|
|
}
|
|
initMarkupCodeCopy(el);
|
|
initMarkupTasklist(el);
|
|
initMarkupCodeMermaid(el);
|
|
initMarkupCodeMath(el);
|
|
initMarkupRenderAsciicast(el);
|
|
initMarkupRefIssue(el);
|
|
});
|
|
}
|