@quatico/dom-serializer
v0.6.3
Published
A DOM serializer for web components
Downloads
12
Readme
@quatico/dom-serializer
A markup serializer that renders the complete DOM structure, including shadow DOM, into a string. The library can be used as:
- a snapshot serializer for Jest,
- an imported
renderToString()
function, - an HTML element to show the DOM structure of an element.
Install
Add the @quatico/dom-serializer
as (dev-) dependency to your project
pnpm add -D @quatico/dom-serializer
Jest Serializer
You can use the library as serializer for your Jest snapshot tests.
Add it to snapshotSerializers
in your jest.config.js
:
// jest.config.js
module.exports = {
/* ... */
snapshotSerializers: ["@quatico/dom-serializer/bin/serializer"],
}
Call toMatchSnapshot()
or toMatchInlineSnapshot()
in your Jest tests to create/compare the snapshot:
describe("my-element", () => {
it(`shows markup with default properties`, async () => {
const el: HTMLElement = ...;
expect(el).toMatchSnapshot();
});
...
Customize the snapshot
You can use the package as library. Create a script file of the following structure
and import the DomSerializer
with a module.exports
statement:
// ./tests/customSnapshotSerializer.ts
import { DomSerializer } from "@quatico/dom-serializer";
module.exports = new DomSerializer({ filterTags: ["script"] });
Add your customSnapshotSerializer.ts
to your jest.config.js:
// jest.config.js
module.exports = {
/* ... */
snapshotSerializers: ["./tests/customSnapshotSerializer.ts"],
}
The class DomSerializer provides the following RenderOptions
to customize the snapshot:
diffable
: Boolean to add extra line breaks for better comparability; defaults to true.filterAttrs
: Array of lowercase attributes names that are filtered out of the snapshot; defaults to [].filterComments
: Flag to filter out HTML comments from the snapshot; defaults to true.filterTags
: Array of lowercase tag names that are filtered out of the snapshot; defaults to ["style", "script"].indent
: Initial indent string for resulting structure; defaults to empty string. Child levels are indented by 4 spaces.shadow
: Boolean to enable/disable the rendering of shadow DOM contents; defaults to true.shadowDepth
: Number of showRoots to be rendered; defaults to infinity.shadowRoots
: Controls how shadow roots are rendered. Defaults to "declarative".slottedContent
: Controls how slotted content is rendered. Show it as referenced child or copy to the slot element. Defaults to "ignore".
Render a DOM structure as string
You can also use the library to render a DOM structure into a string:
import { renderToString } from "@quatico/dom-serializer";
const htmlElement = ...;
const string = renderToString(htmlElement, {
diffable: true,
filterAttrs: ["id"],
filterComments: true,
filterTags: ["style", "script"],
shadow: true,
shadowDepth: 1,
shadowRoots: "declarative",
});
Here the same RenderOptions
as for the DomSerializer
can be used to customize the resulting string.
Render the DOM structure into an React component
Using the library can easily create an React component that shows the DOM structure of a provided element, e.g., in Storybook:
import { renderToString } from "@quatico/dom-serializer";
import { Source } from "@storybook/components";
import * as React from "react";
import { useEffect, useRef, useState } from "react";
export const DomMarkup = ({ children, shadow, shadowDepth = 1, diffable = false }: any) => {
const domRef = useRef<HTMLDivElement>(null);
const [markup, setMarkup] = useState("");
useEffect(() => {
const host = domRef.current;
setMarkup(
host?.firstElementChild ? renderToString(host.firstElementChild, { diffable, shadow, shadowDepth }) : ""
);
});
return (
<div>
<div ref={domRef} style={{ display: "none" }} className={"dom-markup__dom-container"}>
{children}
</div>
<div className={"dom-markup__markup-container"}>
<Source language={"html"} format={false} code={markup} />
</div>
</div>
);
};