Skip to content

Commit

Permalink
CMDCT-3324: ADD-CH Content Updates (FFY2024) (#2082)
Browse files Browse the repository at this point in the history
  • Loading branch information
karla-vm authored Mar 1, 2024
1 parent caac7ac commit 8ab45bb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/ui-src/src/measures/2024/ADDCH/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ export const data: DataDrivenTypes.PerformanceMeasure = {
questionText: [
"Percentage of children newly prescribed attention-deficit/hyperactivity disorder (ADHD) medication who had at least three follow-up care visits within a 10-month period, one of which was within 30 days of when the first ADHD medication was dispensed. Two rates are reported.",
],
questionSubtextTitles: [
questionListTitles: [
"Initiation Phase",
"Continuation and Maintenance (C&M) Phase",
],
questionSubtext: [
questionListOrderedItems: [
"Percentage of children ages 6 to 12 with a prescription dispensed for ADHD medication, who had one follow-up visit with a practitioner with prescribing authority during the 30-day Initiation Phase.",
"Percentage of children ages 6 to 12 with a prescription dispensed for ADHD medication who remained on the medication for at least 210 days and who, in addition to the visit in the Initiation Phase, had at least two follow-up visits with a practitioner within 270 days (9 months) after the Initiation Phase ended.",
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface PerformanceMeasureData {
customPrompt?: string; // Default: "Enter a number for the numerator and the denominator. Rate will auto-calculate:"
questionText?: string[];
questionListItems?: string[];
questionListOrderedItems?: string[];
questionListTitles?: string[];
questionSubtext?: string[];
questionSubtextTitles?: string[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,23 @@ export const PerformanceMeasure = ({
})}
</CUI.UnorderedList>
)}
{data.questionListOrderedItems && (
<CUI.OrderedList m="5" ml="10" spacing={5}>
{data.questionListOrderedItems?.map((item, idx) => {
return (
<CUI.ListItem key={`performanceMeasureListItem.${idx}`}>
{data.questionListTitles?.[idx] && (
<CUI.Text display="inline" fontWeight="600">
{data.questionListTitles?.[idx]}
<br />
</CUI.Text>
)}
{item}
</CUI.ListItem>
);
})}
</CUI.OrderedList>
)}
{showtextbox && (
<QMR.TextArea
label="If this measure has been reported by the state previously and there has been a substantial change in the rate or measure-eligible population, please provide any available context below:"
Expand Down

0 comments on commit 8ab45bb

Please sign in to comment.