All files / react/components/SideNav/Content LevelTwoContent.jsx

17.64% Statements 3/17
0% Branches 0/56
0% Functions 0/1
17.64% Lines 3/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217                                                    2x   2x                                                                                                                                                                                                                                                                                                                                                                       2x                
import React from 'react';
import {
  NavLinkContainer,
  NavLinkInline,
  NavLinkDrawer,
  NavItemInline,
} from '../Links';
import AnimationGroup from '../AnimationGroup/AnimationGroup';
import { PracticeDetails } from '../Details';
import { ScoreChart } from '../Chart';
import PropTypes from 'prop-types';
import {
  AccountHomeIcon,
  DashboardIcon,
  StarIcon,
  CliniciansIcon,
  ScoreIncrease,
  TooltipIcon,
} from '../../../lib/SvgComponents.jsx';
import {
  submissionsUrl,
  manageUrl,
  dashboardUrl,
  performanceFeedbackUrl,
} from '../helpers';
 
const PAST_REPORTING_YEARS = ['2017', '2018'];
 
const LevelTwoContent = ({
  isExpanded,
  chartData,
  showReportingLinks,
  config: {
    chartActive = true,
    openDrawersByDefault,
    linkCallback,
    updateTime,
    practiceId,
    practiceName,
    practiceTin,
    apmEntityId,
    isConnectedUsersPage,
    vgId,
    roleAbbr,
    performanceYear,
    finalFeedbackOpen,
    isApmPaymentDetailsPage,
    useTooltips,
    cpcPlusId,
    pcfId,
  } = {},
}) => {
  const linkClass = isExpanded ? 'link-inline' : 'link-collapsed';
  let links = [];
 
  if (isApmPaymentDetailsPage) {
    const apmDetailsUrl = '/user/apm-incentive-payments/(.*)/practice-details';
    links.push(
      <NavItemInline
        icon={<CliniciansIcon />}
        className={linkClass}
        label="Payment Details"
        urlExpressionToMatch={apmDetailsUrl}
        showLabel={isExpanded}
      />
    );
  } else {
    const linkLabel = isConnectedUsersPage
      ? 'Connected Users'
      : 'Eligibility & Reporting';
    let items = [];
 
    const practiceUrlSegment =
      performanceYear === '2017' || performanceYear === '2018' || !roleAbbr
        ? practiceId
        : practiceId + '_' + roleAbbr;
 
    if (showReportingLinks && !apmEntityId) {
      items = [
        {
          url: `${submissionsUrl}/reporting/${practiceUrlSegment}/overview`,
          label: vgId ? 'Virtual Group Reporting' : 'Group Reporting Overview',
          items: [
            {
              url: `${submissionsUrl}/reporting/${practiceUrlSegment}/quality`,
              label: 'Quality Measures',
            },
            {
              url: `${submissionsUrl}/reporting/${practiceUrlSegment}/aci`,
              label: 'Promoting Interoperability',
            },
            {
              url: `${submissionsUrl}/reporting/${practiceUrlSegment}/ia`,
              label: 'Improvement Activities',
            },
          ],
        },
      ];
    }
    links.push(
      <NavLinkDrawer
        key="connected-clinicians-link"
        isAlwaysOpen
        url={
          !isConnectedUsersPage
            ? `${dashboardUrl}`
            : `${manageUrl}/${practiceId}/connected-users`
        }
        isExpanded={isExpanded}
        openByDefault={openDrawersByDefault}
        leftIcon={<DashboardIcon />}
        className={linkClass}
        label={linkLabel}
        linkCallback={linkCallback}
        listOfLinks={
          !isConnectedUsersPage && [
            {
              label: vgId
                ? 'Virtual Group Details & Participants'
                : apmEntityId
                ? 'APM Entity Details & Participants'
                : 'Practice Details & Clinicians',
              items: items,
            },
          ]
        }
        disabled={isConnectedUsersPage ? true : false}
      />
    );
    if (
      (apmEntityId && performanceYear === '2018' && finalFeedbackOpen) ||
      (!apmEntityId &&
        !vgId &&
        !isConnectedUsersPage &&
        PAST_REPORTING_YEARS.indexOf(performanceYear) >= 0)
    ) {
      links.push(
        <NavLinkInline
          key="performance-feedback-link"
          icon={<StarIcon />}
          className={linkClass}
          url={performanceFeedbackUrl(
            finalFeedbackOpen && performanceYear === '2018'
              ? performanceYear
              : '2017'
          )}
          label="Performance Feedback"
          linkCallback={linkCallback}
          showLabel={isExpanded}
          useTooltips={useTooltips}
        />
      );
    }
  }
 
  return (
    <div className="sidebar-content">
      <AnimationGroup display={isExpanded}>
        <NavLinkInline
          icon={<AccountHomeIcon />}
          url={submissionsUrl}
          label="Account Home"
          showLabel={isExpanded}
          className="account-home-link"
          linkCallback={linkCallback}
          useTooltips={useTooltips}
        />
        <hr />
      </AnimationGroup>
      <AnimationGroup display={isExpanded} className={'details'}>
        <PracticeDetails
          practiceName={practiceName}
          {...(!practiceTin ? {} : { practiceTin })}
          {...(!apmEntityId ? {} : { apmEntityId })}
          {...(!vgId ? {} : { vgId })}
          {...(!cpcPlusId ? {} : { cpcPlusId })}
          {...(!pcfId ? {} : { pcfId })}
        />
        <hr />
      </AnimationGroup>
      <div className="level-two-nav animation-flat">
        <NavLinkContainer listOfLinks={links} />
        <AnimationGroup display={isExpanded && chartActive} className="chart">
          <div>
            <hr />
            <div className="chart-title">
              <p className="title">Final Group Score</p>
              <p className="disclaimer">
                <svg className="left-icon" aria-hidden="true">
                  <ScoreIncrease />
                </svg>
                Score may increase
                <svg className="right-icon" aria-hidden="true">
                  <TooltipIcon />
                </svg>
              </p>
              {updateTime && (
                <p className="timestamp">Last update at {updateTime}</p>
              )}
            </div>
            <ScoreChart chartData={chartData} linkCallback={linkCallback} />
          </div>
        </AnimationGroup>
      </div>
    </div>
  );
};
 
LevelTwoContent.propTypes = {
  isExpanded: PropTypes.bool,
  config: PropTypes.object,
  chartData: PropTypes.object,
  showReportingLinks: PropTypes.bool,
};
 
export default LevelTwoContent;