UNPKG

vast-player-react

Version:

A React Component That Plays an Inline VAST 4.0 Ad

198 lines (197 loc) 5.98 kB
<!doctype html> <html lang="en"> <head> <title>Code coverage report for resources/html-resource.jsx</title> <meta charset="utf-8" /> <link rel="stylesheet" href="../prettify.css" /> <link rel="stylesheet" href="../base.css" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <style type='text/css'> .coverage-summary .sorter { background-image: url(../sort-arrow-sprite.png); } </style> </head> <body> <div class='wrapper'> <div class='pad1'> <h1> <a href="../index.html">all files</a> / <a href="index.html">resources/</a> html-resource.jsx </h1> <div class='clearfix'> <div class='fl pad1y space-right2'> <span class="strong">61.54% </span> <span class="quiet">Statements</span> <span class='fraction'>8/13</span> </div> <div class='fl pad1y space-right2'> <span class="strong">0% </span> <span class="quiet">Branches</span> <span class='fraction'>0/2</span> </div> <div class='fl pad1y space-right2'> <span class="strong">0% </span> <span class="quiet">Functions</span> <span class='fraction'>0/4</span> </div> <div class='fl pad1y space-right2'> <span class="strong">61.54% </span> <span class="quiet">Lines</span> <span class='fraction'>8/13</span> </div> </div> </div> <div class='status-line medium'></div> <pre><table class="coverage"> <tr><td class="line-count quiet">1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45</td><td class="line-coverage quiet"><span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes"></span> <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">'use strict'; &nbsp; import React from 'react'; import Bluebird from 'bluebird'; import axios from 'axios'; import { vastBaseStyle } from '../helpers/styles'; &nbsp; class HtmlResource extends React.Component { &nbsp; constructor(<span class="fstat-no" title="function not covered" >props) {</span> super(<span class="cstat-no" title="statement not covered" >props);</span> &nbsp; this.<span class="cstat-no" title="statement not covered" >state = {</span> html: null, htmlSrc: this.props.resource.getValue(), }; } &nbsp; componentDidMount() <span class="fstat-no" title="function not covered" >{</span> Bluebird.<span class="cstat-no" title="statement not covered" >resolve(axios.get(this.state.htmlSrc)).then(<span class="fstat-no" title="function not covered" >(htmlStr) =&gt; {</span></span> this.<span class="cstat-no" title="statement not covered" >setState({</span> html: { __html: htmlStr.data }, }); }); } &nbsp; render() <span class="fstat-no" title="function not covered" >{</span> return ( <span class="cstat-no" title="statement not covered" > &lt;div</span> style={vastBaseStyle} dangerouslySetInnerHTML={this.state.html} &gt; &lt;/div&gt; ); } &nbsp; } &nbsp; HtmlResource.propTypes = { resource: React.PropTypes.object.isRequired, request: React.PropTypes.object, }; &nbsp; export default HtmlResource; &nbsp;</pre></td></tr> </table></pre> <div class='push'></div><!-- for sticky footer --> </div><!-- /wrapper --> <div class='footer quiet pad2 space-top1 center small'> Code coverage generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Wed Dec 28 2016 14:58:39 GMT-0500 (EST) </div> </div> <script src="../prettify.js"></script> <script> window.onload = function () { if (typeof prettyPrint === 'function') { prettyPrint(); } }; </script> <script src="../sorter.js"></script> </body> </html>