usds / benefits-enrollment-prototype

https://usds.github.io/benefits-enrollment-prototype/
31 stars 13 forks source link

Single-program flow #13

Closed raquelromano closed 7 years ago

raquelromano commented 7 years ago

We began this discussion in https://github.com/usds/enrollment/issues/165

Am guessing we are waiting until post-launch to tag and filter fields by program-type so that, e.g., if a user only checks health care in https://usds.github.io/benefits-enrollment-prototype/00-screener/select-benefits.html then the food-related questions should disappear from https://usds.github.io/benefits-enrollment-prototype/00-screener/quick-screener.html

Labeling as enhancement since this is more of a FR than a bug

mollieru commented 7 years ago

@raquelromano @jaredcunha what's your assessment on level of effort for this? i'd love to launch w this as it's something we've been hearing a lot about -- but lemme know if that feels unreasonable.

(it can be a tomorrow task)

jaredcunha commented 7 years ago

I think I can flag questions with snap-only or medicaid-only. We are storing every selection the user makes, so we can do something like,

if ( benefitChoiceHealthcare == "no" ) {
   $('.medicaid-only').remove();
}

if ( benefitChoiceFoodAssistance == "no" ) {
   $('.snap-only').remove();
}

Of course the only complication would be ferreting out errors that may arise due to the script looking for some piece of data that might be missing. Obviously this is not how you'd do things when you have server 😉 . But for the demo, it's very possible.

mollieru commented 7 years ago

Amazing. Love your can do attitude @jaredcunha :)

unless you've got state stuff tomorrow @annienguyen24, I'm thinking you two could sit next to eachother to run through which question associates w which application. This isn't the lightest lift -- so lmk if that sounds doable or if you need an assist.

annienguyenUSDS commented 7 years ago

@mollieru, if people apply for one program, should the question of sharing food or file taxes disappear in the screener? What they may qualify for will be affected by it and we would need to say you may qualify for X program instead of both benefits. We can leave in the screener questions, but make sure to take out X program you will qualify for in the screener results.

annienguyenUSDS commented 7 years ago

Single flow for Medicaid changes:

In Expenses Screen: take out questions related to utilities:

Single flow for SNAP changes:

screen shot 2016-11-01 at 9 13 14 pm

Add info about 3 day Expedited Service to Select Benefit Screen: (@mollieru, feedback on below?)

Last Screen for SNAP.

mollieru commented 7 years ago

This sounds right to me!

Mollie Ruskin U.S. Digital Service

-----Original Message----- From: T Annie Nguyen [notifications@github.commailto:notifications@github.com] Sent: Tuesday, November 01, 2016 11:55 AM Eastern Standard Time To: usds/benefits-enrollment-prototype Cc: Ruskin, Mollie; Mention Subject: Re: [usds/benefits-enrollment-prototype] Single-program flow (#13)

@mollieruhttps://github.com/mollieru, if people apply for one program, should the question of sharing food or file taxes disappear in the screener? What they may qualify for will be affected by it and we would need to say you may qualify for X program instead of both benefits.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHubhttps://github.com/usds/benefits-enrollment-prototype/issues/13#issuecomment-257604937, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ADgo7nSxb0OfytDloZTs2XF2APt1uNtsks5q52DKgaJpZM4KlSos.

raquelromano commented 7 years ago

Looks like Jared fixed this tonight!