最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I render an `HTMLCanvasElement` in React? - Stack Overflow

programmeradmin1浏览0评论

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.

Share Improve this question asked Jul 19, 2017 at 23:40 allenrabinovichallenrabinovich 4843 silver badges11 bronze badges 6
  • 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 your getThumb() – 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
 |  Show 1 more ment

1 Answer 1

Reset to default 9

I 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.

发布评论

评论列表(0)

  1. 暂无评论