I have tables that I am displaying using dangerous HTML in reacting hooks
Live Demo : live demo code sand box
Data looks like this
export const json = [
{
template: `
<div ref={tableRef} className="table">
<table>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
</tr>
</tbody>
</table>
</div>
`
}
];
And here am displaying data using dangerousHTML
......
export default function App(props) {
const tableRef = useRef("");
let tables = data.json;
return (
<div className="App">
<input type="text" />
<div
ref={tableRef}
dangerouslySetInnerHTML={{ __html: tables[0].template }}
/>
</div>
);
}
Question: What do I need to do to access table data in this table (assume I would like to change name on input change) ?
First off, be careful with this approach, as it's an easy way to open your users to XSS attacks.
That said, in this case you will have to access & manage the dangerously set HTML manually. Since this is a textbook example of a "side effect" do the management within
useEffect
.Assuming you create a state value for the input,
iVal
, you could change the table text like this:So because of the dependency array (
[iVal, tableRef]
) youruseEffect
will update wheniVal
(ortableRef
) changes.Working example forked from your codesandbox: