admin管理员组文章数量:1349240
I have a utility which produces a thumbnail for a video and returns it as an HTMLCanvasElement
. I'd like to render that element in React, like so:
render () {
return (
<div className='video-thumbnail'>
{this.props.videoThumbnailCanvas}
</div>
);
}
But when I try that, I get an error that:
Error: Objects are not valid as a React child (found: [object HTMLCanvasElement]).
What's a good way to do this? One idea is to do direct DOM manipulation from ponentDidMount
(e.g. React.getDOMNode(this).appendChild(this.props.videoThumbnailCanvas)
), but that seems rather hack-like.
I have a utility which produces a thumbnail for a video and returns it as an HTMLCanvasElement
. I'd like to render that element in React, like so:
render () {
return (
<div className='video-thumbnail'>
{this.props.videoThumbnailCanvas}
</div>
);
}
But when I try that, I get an error that:
Error: Objects are not valid as a React child (found: [object HTMLCanvasElement]).
What's a good way to do this? One idea is to do direct DOM manipulation from ponentDidMount
(e.g. React.getDOMNode(this).appendChild(this.props.videoThumbnailCanvas)
), but that seems rather hack-like.
-
Do you control the utility function? Can you have it return a
<canvas></canvas>
JSX element instead? – Danny Delott Commented Jul 20, 2017 at 0:22 -
@DannyDelott -- I do control it. It currently looks something like this: ' function getThumb() { let canvas:HTMLCanvasElement = document.createElement('canvas'); let context = canvas.getContext('2d'); if (context) { context.drawImage(videoElement, 0, 0, w, h); } return canvas; } ' I am not sure how I would draw to the
context
with a JSX element. – allenrabinovich Commented Jul 20, 2017 at 0:35 -
I believe you cannot use
document.creteElement
in yourgetThumb()
– Muhaimin Commented Jul 20, 2017 at 1:47 - @Muhaimin: why not? It does work. – allenrabinovich Commented Jul 20, 2017 at 15:29
- it's wrong practise – Muhaimin Commented Jul 21, 2017 at 5:41
1 Answer
Reset to default 9I got the same problem and you can solve in 2 ways:
the easy way:
render () {
const src = this.props.videoThumbnailCanvas.toDataURL();
return (
<div className='video-thumbnail'>
<img src={src} />
</div>
);
}
the other way i like more (but is personal):
onComponentDidMount() {
const element = document.getElementById('uniquePlaceHolderKey');
element.parentNode.replaceChild(this.props.videoThumbnailCanvas, element);
}
render () {
return (
<div className='video-thumbnail'>
<div id="uniquePlaceHolderKey" ></div>
</div>
);
}
This second solution lets you load a temp element that you will swap with your own painted canvas instance. I did not found a proper react solution to force the appending of a pre rendered canvas element.
There are proper react methods to get an element of a ponent ( like this.findDomNode()
) that are preferable to getElementById since work on the ponent instance.
本文标签: javascriptHow do I render an HTMLCanvasElement in ReactStack Overflow
版权声明:本文标题:javascript - How do I render an `HTMLCanvasElement` in React? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743859060a2551398.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论