Last active
October 31, 2021 15:51
-
-
Save magicspon/1095cd5267adda9329383a63d130fdf9 to your computer and use it in GitHub Desktop.
Next/Image from html string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import ReactDOMServer from 'react-dom/server' | |
import Image from 'next/image' | |
import Parse, { | |
HTMLReactParserOptions, | |
DOMNode, | |
Element, | |
} from 'html-react-parser' | |
const isElement = (domNode: DOMNode): domNode is Element => { | |
const isTag = domNode.type === 'tag' | |
const hasAttributes = (domNode as Element).attribs !== undefined | |
return isTag && hasAttributes | |
} | |
export default function parseRichText(html: string): string { | |
const parserOptions: HTMLReactParserOptions = { | |
replace: (domNode) => { | |
if (isElement(domNode) && domNode.name === 'img') { | |
return ( | |
<Image | |
src={domNode.attribs.src} | |
alt={domNode.attribs.alt} | |
width={domNode.attribs.width} | |
height={domNode.attribs.height} | |
priority // either loading="eager" or this prop is required for this to work | |
// loading="eager" // lazy does not work | |
/> | |
) | |
} | |
return domNode | |
}, | |
} | |
const Component = Parse(html, parserOptions) as React.ReactElement | |
const reactHtml = ReactDOMServer.renderToStaticMarkup(Component) | |
return reactHtml | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment