Skip to content

Commit 88eea66

Browse files
fix(types): add back object to replace option return type
Fixes #1126 Maintains backward compatibility for invalid return type
1 parent 6f9ae44 commit 88eea66

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

__tests__/dom-to-react.test.tsx

+13-8
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,16 @@ describe('library option', () => {
172172
});
173173

174174
describe('replace option', () => {
175+
it.each([undefined, null, 0, 1, true, false, {}])(
176+
'does not replace for invalid return value %p',
177+
(value) => {
178+
const reactElement = domToReact(htmlToDOM('<br>'), {
179+
replace: () => value,
180+
}) as JSX.Element;
181+
expect(reactElement).toEqual(<br />);
182+
},
183+
);
184+
175185
it("does not set key if there's a single node", () => {
176186
const reactElement = domToReact(htmlToDOM(html.single), {
177187
replace: () => <div />,
@@ -213,17 +223,12 @@ describe('replace option', () => {
213223
const options: HTMLReactParserOptions = {
214224
replace(domNode) {
215225
if (domNode instanceof Element) {
216-
return <>{domToReact(domNode.children as DOMNode[], options)}</>;
226+
return domToReact(domNode.children as DOMNode[], options);
217227
}
218228
},
219229
};
220-
221-
const reactElement = domToReact(
222-
htmlToDOM(html.single),
223-
options,
224-
) as JSX.Element;
225-
226-
expect(reactElement).toBeInstanceOf(Object);
230+
const reactElement = domToReact(htmlToDOM('<div>test</div>'), options);
231+
expect(reactElement).toEqual(<div>test</div>);
227232
});
228233
});
229234

src/types.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ export interface HTMLReactParserOptions {
1717
[key: string]: any;
1818
};
1919

20-
replace?: (domNode: DOMNode) => JSX.Element | string | null | boolean | void;
20+
replace?: (
21+
domNode: DOMNode,
22+
) => JSX.Element | string | null | boolean | object | void;
2123

2224
transform?: (
2325
reactNode: ReactNode,

0 commit comments

Comments
 (0)