|
|
--- |
|
|
interface Props { src: string; title?: string; desc?: string; frameless?: boolean; align?: 'left' | 'center' | 'right' } |
|
|
const { src, title, desc, frameless = false, align = 'left' } = Astro.props as Props; |
|
|
|
|
|
|
|
|
const embeds = (import.meta as any).glob('../content/embeds/**/*.html', { query: '?raw', import: 'default', eager: true }) as Record<string, string>; |
|
|
|
|
|
function resolveFragment(requested: string): string | null { |
|
|
|
|
|
const needle = requested.replace(/^\/*/, ''); |
|
|
for (const [key, html] of Object.entries(embeds)) { |
|
|
if (key.endsWith('/' + needle) || key.endsWith('/' + needle.replace(/^embeds\//, ''))) { |
|
|
return html; |
|
|
} |
|
|
} |
|
|
return null; |
|
|
} |
|
|
|
|
|
const html = resolveFragment(src); |
|
|
const mountId = `frag-${Math.random().toString(36).slice(2)}`; |
|
|
--- |
|
|
{ html ? ( |
|
|
<figure class="html-embed"> |
|
|
{title && <figcaption class="html-embed__title" style={`text-align:${align}`}>{title}</figcaption>} |
|
|
<div class={`html-embed__card${frameless ? ' is-frameless' : ''}`}> |
|
|
<div id={mountId} set:html={html} /> |
|
|
</div> |
|
|
{desc && <figcaption class="html-embed__desc" style={`text-align:${align}`} set:html={desc}></figcaption>} |
|
|
</figure> |
|
|
) : ( |
|
|
<div></div> |
|
|
) } |
|
|
|
|
|
<script> |
|
|
|
|
|
const scriptEl = document.currentScript; |
|
|
const mount = scriptEl ? scriptEl.previousElementSibling : null; |
|
|
const execute = () => { |
|
|
if (!mount) return; |
|
|
const scripts = mount.querySelectorAll('script'); |
|
|
scripts.forEach(old => { |
|
|
|
|
|
if (old.type && old.type !== 'text/javascript' && old.type !== 'module' && old.type !== '') return; |
|
|
if (old.dataset.executed === 'true') return; |
|
|
old.dataset.executed = 'true'; |
|
|
if (old.src) { |
|
|
const s = document.createElement('script'); |
|
|
Array.from(old.attributes).forEach(({ name, value }) => s.setAttribute(name, value)); |
|
|
document.body.appendChild(s); |
|
|
} else { |
|
|
try { |
|
|
|
|
|
(0, eval)(old.text || ''); |
|
|
} catch (e) { |
|
|
console.error('HtmlEmbed inline script error:', e); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}; |
|
|
|
|
|
|
|
|
if (window.Plotly || window.d3 || document.readyState === 'complete') execute(); |
|
|
else window.addEventListener('load', execute, { once: true }); |
|
|
</script> |
|
|
|
|
|
<style> |
|
|
.html-embed { margin: 12px 0; } |
|
|
.html-embed__title { |
|
|
text-align: left; |
|
|
font-weight: 600; |
|
|
font-size: 0.95rem; |
|
|
color: var(--text-color); |
|
|
margin: 0 0 6px 0; |
|
|
} |
|
|
.html-embed__card { |
|
|
background: var(--code-bg); |
|
|
border: 1px solid var(--border-color); |
|
|
border-radius: 10px; |
|
|
padding: 8px; |
|
|
} |
|
|
.html-embed__card.is-frameless { |
|
|
background: transparent; |
|
|
border-color: transparent; |
|
|
} |
|
|
.html-embed__desc { |
|
|
text-align: left; |
|
|
font-size: 0.9rem; |
|
|
color: var(--muted-color); |
|
|
margin: 6px 0 0 0; |
|
|
} |
|
|
@media (prefers-color-scheme: dark) { |
|
|
[data-theme="dark"] .html-embed__card:not(.is-frameless) { background: #12151b; border-color: rgba(255,255,255,.15); } |
|
|
} |
|
|
@media print { |
|
|
.html-embed, .html-embed__card { break-inside: avoid; page-break-inside: avoid; } |
|
|
} |
|
|
</style> |
|
|
|
|
|
|
|
|
|