department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ivc-champva/10-7959C/config/constants.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

// When all files shown on `MissingFileOverview` are uploaded, go here next:
export const UPLOADS_COMPLETE_PATH = 'form-signature';

/* List of required files - not enforced by the form because we want
users to be able to opt into mailing these documents. This object 
performs double duty by also providing a map to presentable names. */
export const requiredFiles = {
  applicantMedicareIneligibleProof: 'Proof of Medicare Ineligibility',
  applicantMedicarePartAPartBCard: 'Medicare card',
  applicantMedicarePartDCard: 'Medicare Part D card',
  // Note: The text 'Primary health insurance' and 'Secondary health insurance'
  // are replaced via regex in `MissingFileConsentPage > prefixFileNames()`
  primaryInsuranceCard: 'Primary health insurance card',
  secondaryInsuranceCard: 'Secondary health insurance card',
  primaryInsuranceScheduleOfBenefits:
    'Primary health insurance schedule of benefits document',
  secondaryInsuranceScheduleOfBenefits:
    'Secondary health insurance schedule of benefits document',
};

export const office = 'Chief Business Office Purchased Care';
export const officeAddress = (
  <>
    {office}
    <br />
    P.O. Box 469063
    <br />
    Denver, CO 80246-9063
  </>
);
export const officeFaxNum = '3033317808';