Skip to content

Commit b27d30c

Browse files
committedJan 10, 2024
feat(dom-to-react): pass index as 2nd argument to replace option
Closes #1240
1 parent b56255e commit b27d30c

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed
 

‎README.md

+13
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,19 @@ parse('<p id="replace">text</p>', {
196196
});
197197
```
198198

199+
The second argument is the index:
200+
201+
```ts
202+
parse('<br>', {
203+
replace(domNode, index) {
204+
console.assert(typeof index === 'number');
205+
},
206+
});
207+
```
208+
209+
> [!NOTE]
210+
> The index will restart at 0 when traversing the node's children so don't rely on index being a unique key.
211+
199212
#### replace with TypeScript
200213

201214
For TypeScript, you'll need to check that `domNode` is an instance of domhandler's `Element`:

‎__tests__/dom-to-react.test.tsx

+11-2
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ describe('replace option', () => {
182182
},
183183
);
184184

185-
it("does not set key if there's a single node", () => {
185+
it('does not set key for a single node', () => {
186186
const reactElement = domToReact(htmlToDOM(html.single), {
187187
replace: () => <div />,
188188
}) as JSX.Element;
189189
expect(reactElement.key).toBe(null);
190190
});
191191

192-
it("does not modify keys if they're already set", () => {
192+
it('does not modify keys if they are already set', () => {
193193
const reactElements = domToReact(
194194
htmlToDOM(html.single + html.customElement),
195195
{
@@ -230,6 +230,15 @@ describe('replace option', () => {
230230
const reactElement = domToReact(htmlToDOM('<div>test</div>'), options);
231231
expect(reactElement).toEqual(<div>test</div>);
232232
});
233+
234+
it('passes index as the 2nd argument', () => {
235+
const reactElement = domToReact(htmlToDOM('<li>one</li><li>two</li>'), {
236+
replace(domNode, index) {
237+
expect(typeof index).toBe('number');
238+
},
239+
});
240+
expect(reactElement).toHaveLength(2);
241+
});
233242
});
234243

235244
describe('transform option', () => {

‎src/dom-to-react.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function domToReact(
4444

4545
// replace with custom React element (if present)
4646
if (hasReplace) {
47-
let replaceElement = options.replace!(node) as JSX.Element;
47+
let replaceElement = options.replace!(node, index) as JSX.Element;
4848

4949
if (isValidElement(replaceElement)) {
5050
// set "key" prop for sibling elements

‎src/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export interface HTMLReactParserOptions {
1919

2020
replace?: (
2121
domNode: DOMNode,
22+
index: number,
2223
) => JSX.Element | string | null | boolean | object | void;
2324

2425
transform?: (

0 commit comments

Comments
 (0)
Please sign in to comment.