V
V
Vladimir Golub2019-09-02 13:25:58
React
Vladimir Golub, 2019-09-02 13:25:58

How to add a component to an html element?

There is markup markup, which I receive from the server. Is it possible to insert React components there?

prepareMoreBlocks = (arrId) => {
        if (typeof document !== "undefined") {
            let readMoreBlocks = document.getElementsByClassName("readmore-snippet-container");

            for (var i = 0; i < readMoreBlocks.length; i++) {
                let linkEl = readMoreBlocks[i].querySelector('a');

                if (linkEl) {
                    //arrId.push(linkEl.dataset.id);

                    //console.log(linkEl.);

                    linkEl.appendChild(<Badge
                        className={'news-card-item__list-badges-item'}
                        type={'sound-wave'}
                        //key={badge}
                    />)
                }
            }
        }
    };

I am getting an error:
Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Arthur, 2019-09-03
@cloudz

you can try to convert the component as for ssr
https://reactjs.org/docs/react-dom-server.html#ref...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question