2022-03-18 22:35:45 +00:00
|
|
|
import { h } from 'preact';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Astro passes `children` as a string of HTML, so we need
|
|
|
|
* a wrapper `div` to render that content as VNodes.
|
|
|
|
*
|
|
|
|
* As a bonus, we can signal to Preact that this subtree is
|
|
|
|
* entirely static and will never change via `shouldComponentUpdate`.
|
|
|
|
*/
|
2022-09-22 14:32:42 +00:00
|
|
|
const StaticHtml = ({ value, name }) => {
|
2022-03-18 22:35:45 +00:00
|
|
|
if (!value) return null;
|
2022-06-23 15:10:54 +00:00
|
|
|
return h('astro-slot', { name, dangerouslySetInnerHTML: { __html: value } });
|
2022-03-18 22:35:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This tells Preact to opt-out of re-rendering this subtree,
|
|
|
|
* In addition to being a performance optimization,
|
|
|
|
* this also allows other frameworks to attach to `children`.
|
|
|
|
*
|
|
|
|
* See https://preactjs.com/guide/v8/external-dom-mutations
|
|
|
|
*/
|
|
|
|
StaticHtml.shouldComponentUpdate = () => false;
|
|
|
|
|
|
|
|
export default StaticHtml;
|