All files / components/contact ContactSection.tsx

71.42% Statements 5/7
0% Branches 0/3
50% Functions 1/2
66.66% Lines 4/6

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 791x 1x 1x                                                   2x                                                                                                    
import Markdown from 'markdown-to-jsx'
import { ContactSectionRow } from './ContactSectionRow'
import { programs } from '../../lib/programs'
 
export interface ContactSectionDetailItem {
  content?: string
  id: string
  icon?: string
  button?: string[]
  highlight?: boolean
  link?: string
}
 
export interface ContactSectionDetail {
  title: string
  id: string
  color?: boolean
  items: ContactSectionDetailItem[]
}
 
export interface ContactSectionProps {
  lang: string
  title: string
  intro: string
  id: string
  details: ContactSectionDetail[]
}
 
export const ContactSection = ({
  lang,
  title,
  intro,
  id = 'mscaPlaceholder',
  details,
}: ContactSectionProps) => {
  return (
    <div
      data-cy="sections"
      className="mt-4 max-w-3xl"
      id={id}
      data-testid="contactSection-test"
    >
      <h2 className="py-2 font-display text-32px font-bold text-gray-darker md:pt-6 md:text-4xl">
        {title}
      </h2>
      <div
        className="prose max-w-none pb-4 prose-p:mb-2 prose-p:font-body prose-p:text-xl prose-ul:my-0 prose-ul:ml-2 prose-li:font-body prose-li:text-xl prose-li:marker:text-black"
        data-cy="section1"
      >
        <Markdown>{intro}</Markdown>
      </div>
      <dl className="divide-y-2 border-y-2" data-cy="section2">
        {details.map((sectionDetail) => {
          const button =
            sectionDetail.items[0]?.button &&
            sectionDetail.items[0].button.length > 0
          return (
            <ContactSectionRow
              lang={lang}
              key={sectionDetail.id}
              id={sectionDetail.id}
              title={sectionDetail.title}
              items={sectionDetail.items}
              detail={sectionDetail.items[0]?.content}
              buttonId={sectionDetail.items[0]?.id}
              iconFeature={sectionDetail.items[0]?.icon}
              highlight={sectionDetail.color}
              button={button}
              buttonURL={sectionDetail.items[0]?.link}
              refPageAA={`Contact ${programs(id.split('-')[0])}`}
            />
          )
        })}
      </dl>
      <div className="mt-4 pb-6" />
    </div>
  )
}