UNPKG

nexshop-web-contents

Version:

Nexshop Web Contents Project

219 lines (218 loc) 6.98 kB
<!doctype html> <html lang="en"> <head> <title>Code coverage report for nexshop-web-contents/src/component/contents-router.js</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">nexshop-web-contents/src/component</a> contents-router.js </h1> <div class='clearfix'> <div class='fl pad1y space-right2'> <span class="strong">100% </span> <span class="quiet">Statements</span> <span class='fraction'>18/18</span> </div> <div class='fl pad1y space-right2'> <span class="strong">100% </span> <span class="quiet">Branches</span> <span class='fraction'>2/2</span> </div> <div class='fl pad1y space-right2'> <span class="strong">100% </span> <span class="quiet">Functions</span> <span class='fraction'>4/4</span> </div> <div class='fl pad1y space-right2'> <span class="strong">100% </span> <span class="quiet">Lines</span> <span class='fraction'>18/18</span> </div> </div> </div> <div class='status-line high'></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 46 47 48 49 50 51 52</td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</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">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</span> <span class="cline-any cline-yes">3x</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">1x</span> <span class="cline-any cline-yes">1x</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">12x</span> <span class="cline-any cline-yes">12x</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">12x</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-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">3x</span> <span class="cline-any cline-yes">2x</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></td><td class="text"><pre class="prettyprint lang-js">import React, {Component} from 'react'; import { Redirect, Switch, Route, withRouter } from 'react-router-dom'; import {connect} from 'react-redux'; import {bindActionCreators} from 'redux'; import ContentsMain from './contents-main'; import Playlist from './playlist/playlist'; import PlaylistPreview from './preview/playlist/playlist-preview'; import {closeFloatingView} from '../action/floating-view'; import ContentsPreview from "./preview/contents/contents-preview"; import Scene from "./scene/scene"; import ScenePreview from "./preview/scene/scene-preview"; &nbsp; class ContentsRouter extends Component { componentDidMount() { this.props.history.listen(() =&gt; { this.props.actions.closeFloatingView(); }); } &nbsp; render() { const url = this.props.match.url; const redirectUrl = url.lastIndexOf('/') === url.length - 1 ? url.substr(0, url.length -1): url; &nbsp; return ( &lt;div&gt; &lt;Switch&gt; &lt;Route path={`${url}/main`} component={ContentsMain}/&gt; &lt;Route path={`${url}/create-playlist`} component={Playlist}/&gt; &lt;Route path={`${url}/playlist-detail`} component={Playlist}/&gt; &lt;Route path={`${url}/playlist-preview`} component={PlaylistPreview}/&gt; &lt;Route path={`${url}/contents-preview`} component={ContentsPreview}/&gt; &lt;Route path={`${url}/scene`} component={Scene}/&gt; &lt;Route path={`${url}/scene-preview`} component={ScenePreview}/&gt; &lt;Redirect exact from={`${url}`} to={`${redirectUrl}/main`} /&gt; &lt;/Switch&gt; &lt;/div&gt; ) } } &nbsp; const mapDispatchToProps = (dispatch) =&gt; { return { actions: bindActionCreators({closeFloatingView}, dispatch) } }; &nbsp; export default withRouter(connect(null, mapDispatchToProps)(ContentsRouter));</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="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Dec 18 2017 16:41:44 GMT+0900 (KST) </div> </div> <script src="../../../prettify.js"></script> <script> window.onload = function () { if (typeof prettyPrint === 'function') { prettyPrint(); } }; </script> <script src="../../../sorter.js"></script> </body> </html>