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

259 lines (258 loc) 8.56 kB
<!doctype html> <html lang="en"> <head> <title>Code coverage report for app/selectors/dates.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/selectors</a> dates.ts </h1> <div class='clearfix'> </div> </div> <div class='status-line low'></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 65 66 67 68 69 70 71 72</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-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">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-yes">5x</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">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-yes">5x</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">12x</span> <span class="cline-any cline-yes">5x</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-no">&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-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-no">&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-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></td><td class="text"><pre class="prettyprint lang-js">import { createSelector } from 'reselect'; &nbsp; import { ICommit } from 'app/interfaces'; import { getStartDate, getEndDate, getCommits, getEarliestCommitDate, getLatestCommitDate, } from 'app/selectors/stateVars'; &nbsp; export const getDefaultedStartDate = createSelector( getStartDate, getEarliestCommitDate, getCommits, defaultStartDate ); &nbsp; export function defaultStartDate(startDate, earliestCommitDate, commits) { return ( startDate || earliestCommitDate || (<span class="branch-2 cbranch-no" title="branch not covered" >commits </span>&amp;&amp; <span class="branch-3 cbranch-no" title="branch not covered" >commits.length &gt; 0 </span>&amp;&amp; <span class="branch-4 cbranch-no" title="branch not covered" >commits[commits.length - 1].authorDate)</span> || <span class="branch-5 cbranch-no" title="branch not covered" > 0</span> ); } &nbsp; export const getDefaultedEndDate = createSelector( getEndDate, getLatestCommitDate, getCommits, defaultEndDate ); &nbsp; export function defaultEndDate(endDate, latestCommitDate, commits) { return ( endDate || latestCommitDate || (<span class="branch-2 cbranch-no" title="branch not covered" >commits </span>&amp;&amp; <span class="branch-3 cbranch-no" title="branch not covered" >commits.length &gt; 0 </span>&amp;&amp; <span class="branch-4 cbranch-no" title="branch not covered" >commits[0].authorDate)</span> || // @ts-ignore <span class="branch-5 cbranch-no" title="branch not covered" > Math.floor((new Date() as any) / 1000)</span> ); } &nbsp; export const hasDates = (startDate, endDate) =&gt; { return startDate || endDate; }; &nbsp; export const commitsMatchDates = <span class="fstat-no" title="function not covered" >(c</span>ommit, startDate, endDate) =&gt; { <span class="cstat-no" title="statement not covered" > if (!hasDates(startDate, endDate)) {</span> <span class="cstat-no" title="statement not covered" > return true;</span> } const commits = <span class="cstat-no" title="statement not covered" >Array.isArray(commit) ? commit : [commit];</span> <span class="cstat-no" title="statement not covered" > return commits.some(<span class="fstat-no" title="function not covered" >commit</span> =&gt; <span class="cstat-no" title="statement not covered" >isWithinDates(commit, startDate, endDate))</span>;</span> }; &nbsp; export function <span class="fstat-no" title="function not covered" >dateFilteredCommits(</span>commits, startDate, endDate) { <span class="cstat-no" title="statement not covered" > if (!commits) {</span> <span class="cstat-no" title="statement not covered" > return null;</span> } <span class="cstat-no" title="statement not covered" > return commits.filter(<span class="fstat-no" title="function not covered" >commit</span> =&gt; <span class="cstat-no" title="statement not covered" >isWithinDates(commit, startDate, endDate))</span>;</span> } &nbsp; function <span class="fstat-no" title="function not covered" >isWithinDates(</span> commit: ICommit, startDate: number, endDate: number ): boolean { <span class="cstat-no" title="statement not covered" > return (</span> startDate &lt;= commit.authorDate &amp;&amp; (!endDate || commit.authorDate &lt;= endDate) ); } &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>