-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.tsx
191 lines (184 loc) · 5.39 KB
/
options.tsx
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
import { OptionData } from "@/features/selection-flow/plan-types";
import {
ORIGIN,
SPA_SUBMISSION_ORIGIN,
WAIVER_SUBMISSION_ORIGIN,
} from "@/utils";
export const AUTHORITY_OPTIONS: OptionData[] = [
{
title: "State Plan Amendment (SPA)",
description: "Submit a new Medicaid or CHIP State Plan Amendment",
to: "/new-submission/spa",
},
{
title: "Waiver Action",
description:
"Submit Waivers, Amendments, Renewals, and Temporary Extensions",
to: "/new-submission/waiver",
},
];
export const SPA_OPTIONS: OptionData[] = [
{
title: "Medicaid SPA",
description: "Submit a new Medicaid State Plan Amendment",
to: "/new-submission/spa/medicaid",
},
{
title: "CHIP SPA",
description: "Submit a new CHIP State Plan Amendment",
to: "/new-submission/spa/chip",
},
];
export const MEDICAID_SPA_OPTIONS: OptionData[] = [
{
title: "Medicaid Eligibility, Enrollment, Administration, and Health Homes",
description: "Redirects to the MACPro Appian submission system",
to: "/new-submission/spa/medicaid/landing/medicaid-eligibility",
},
{
title: "All Other Medicaid SPA Submissions",
description: "Create a new Medicaid State Plan Amendment",
to: {
pathname: "/new-submission/spa/medicaid/create",
search: new URLSearchParams({
[ORIGIN]: SPA_SUBMISSION_ORIGIN,
}).toString(),
},
},
];
export const CHIP_SPA_OPTIONS: OptionData[] = [
{
title: "CHIP Eligibility",
description: "Redirects to the MMDL submission system",
to: "/new-submission/spa/chip/landing/chip-eligibility",
},
{
title: "All Other CHIP SPA Submissions",
description: "Create a new CHIP State Plan Amendment",
to: {
pathname: "/new-submission/spa/chip/create",
search: new URLSearchParams({
[ORIGIN]: SPA_SUBMISSION_ORIGIN,
}).toString(),
},
},
];
export const WAIVER_OPTIONS: OptionData[] = [
{
title: "Request Temporary Extension",
description: "Submit for 1915(b) or 1915(c)",
to: {
pathname: "/new-submission/waiver/temporary-extensions",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
{
title: "1915(b) Waiver Actions",
description: "Submit 1915(b) Waivers, Amendments, and Renewals",
to: "/new-submission/waiver/b",
},
{
title: "1915(c) Appendix K Amendment",
description: "Create a 1915(c) Appendix K Amendment",
to: {
pathname: "/new-submission/waiver/app-k",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
];
export const B_WAIVER_OPTIONS: OptionData[] = [
{
title: "1915(b)(4) FFS Selective Contracting Waivers",
description:
"Submit 1915(b)(4) FFS Selective Contracting Waivers, Amendments, and Renewals",
to: "/new-submission/waiver/b/b4",
},
{
title: "1915(b) Comprehensive (Capitated) Waiver Authority",
description: (
<>
Submit 1915(b) Comprehensive (Capitated) Waivers, Amendments and
Renewals <br />
<b>
<em>
Not applicable for 1915(b)(4) FFS Selective Contracting Waiver
actions
</em>
</b>
</>
),
to: "/new-submission/waiver/b/capitated",
},
];
export const B4_WAIVER_OPTIONS: OptionData[] = [
{
title: "1915(b)(4) FFS Selective Contracting New Initial Waiver",
description:
"Create a new 1915(b)(4) FFS Selective Contracting Initial Waiver",
to: {
pathname: "/new-submission/waiver/b/b4/initial/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
{
title: "1915(b)(4) FFS Selective Contracting Renewal Waiver",
description:
"Renew an existing 1915(b)(4) FFS Selective Contracting Waiver",
to: {
pathname: "/new-submission/waiver/b/b4/renewal/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
{
title: "1915(b)(4) FFS Selective Contracting Waiver Amendment",
description:
"Amend an existing 1915(b)(4) FFS Selective Contracting Waiver",
to: {
pathname: "/new-submission/waiver/b/b4/amendment/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
];
export const BCAP_WAIVER_OPTIONS: OptionData[] = [
{
title: "1915(b) Comprehensive (Capitated) New Initial Waiver",
description:
"Create a new 1915(b) Comprehensive (Capitated) Initial Waiver",
to: {
pathname: "/new-submission/waiver/b/capitated/initial/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
{
title: "1915(b) Comprehensive (Capitated) Renewal Waiver",
description: "Renew an existing 1915(b) Comprehensive (Capitated) Waiver",
to: {
pathname: "/new-submission/waiver/b/capitated/renewal/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
{
title: "1915(b) Comprehensive (Capitated) Waiver Amendment ",
description: "Amend an existing 1915(b) Comprehensive (Capitated) Waiver",
to: {
pathname: "/new-submission/waiver/b/capitated/amendment/create",
search: new URLSearchParams({
[ORIGIN]: WAIVER_SUBMISSION_ORIGIN,
}).toString(),
},
},
];