UNPKG

@git-temporal/git-temporal-react

Version:

<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

235 lines (234 loc) 7.97 kB
<!doctype html> <html lang="en"> <head> <title>Code coverage report for app/reducers/diff.ts</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">app/reducers</a> diff.ts </h1> <div class='clearfix'> </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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64</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">12x</span> <span class="cline-any cline-yes">53x</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-yes">53x</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">53x</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-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">53x</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">53x</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-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">53x</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">53x</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-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">53x</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">53x</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-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">53x</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 { ActionTypes } from 'app/actions/ActionTypes'; &nbsp; export const diff = (state = null, action: any) =&gt; { switch (action.type) { <span class="branch-0 cbranch-no" title="branch not covered" > case ActionTypes.RECEIVE_DIFF:</span> <span class="cstat-no" title="statement not covered" > return action.diff;</span> default: return state; } }; &nbsp; export const isDiffDeferred = (state = false, action: any) =&gt; { switch (action.type) { // we don't fetch the diff until after the first RECEIVE_COMMITS // but we are going to and an looks more responsive to throw up the // spinner on the DifferenceViewer container sdfaf <span class="branch-0 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_COMMITS:</span> <span class="branch-1 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_DIFF:</span> <span class="branch-2 cbranch-no" title="branch not covered" > case ActionTypes.RECEIVE_DIFF:</span> <span class="cstat-no" title="statement not covered" > return false;</span> <span class="branch-3 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_DEFERRED_DIFF:</span> <span class="cstat-no" title="statement not covered" > return true;</span> default: return state; } }; &nbsp; export const isDiffFetching = (state = false, action: any) =&gt; { switch (action.type) { // we don't fetch the diff until after the first RECEIVE_COMMITS // but we are going to and an looks more responsive to throw up the // spinner on the DifferenceViewer container sdfaf <span class="branch-0 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_COMMITS:</span> <span class="branch-1 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_DIFF:</span> <span class="cstat-no" title="statement not covered" > return true;</span> <span class="branch-2 cbranch-no" title="branch not covered" > case ActionTypes.RECEIVE_DIFF:</span> <span class="cstat-no" title="statement not covered" > return false;</span> default: return state; } }; &nbsp; export const diffLeftCommit = (state = null, action: any) =&gt; { switch (action.type) { <span class="branch-0 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_COMMITS:</span> <span class="cstat-no" title="statement not covered" > return null;</span> <span class="branch-1 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_DIFF:</span> <span class="cstat-no" title="statement not covered" > return action.leftCommit || null;</span> default: return state; } }; &nbsp; export const diffRightCommit = (state = null, action: any) =&gt; { switch (action.type) { <span class="branch-0 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_COMMITS:</span> <span class="cstat-no" title="statement not covered" > return null;</span> <span class="branch-1 cbranch-no" title="branch not covered" > case ActionTypes.REQUEST_DIFF:</span> <span class="cstat-no" title="statement not covered" > return action.rightCommit || null;</span> default: return state; } }; &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="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Jan 20 2020 20:05:02 GMT-0800 (PST) </div> </div> <script src="../../prettify.js"></script> <script> window.onload = function () { if (typeof prettyPrint === 'function') { prettyPrint(); } }; </script> <script src="../../sorter.js"></script> </body> </html>