-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(four fields): This change add required fields to the submission forms #428
Conversation
This reverts commit 9f6889f.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved 🚀 You made it look easy, to just casually add a new dimension to our type/subtype handling across the board. this is awesome
Note: Deleting a type and/or subtype in seatool is captured and reflects in our UI as expected. All good there.
SPA_TYPE_NAME: type.SPA_TYPE_NAME.replace(/â|â/g, "-"), | ||
}; | ||
}) || null, | ||
subTypes: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -3,10 +3,8 @@ | |||
"version": "0.0.0", | |||
"dependencies": { | |||
"@aws-sdk/client-cognito-identity-provider": "^3.350.0", | |||
"@aws-sdk/client-dynamodb": "^3.281.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow 👍
@@ -87,6 +87,7 @@ describe("getNextBusinessDayTimestamp", () => { | |||
expect(nextDate).toEqual(Date.UTC(2024, 0, 16)); // Tuesday, midnight utc | |||
}); | |||
|
|||
// TODO: I dont know if its my time zone but this always fails for me in the MST |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test date is created for 3pm local, not explicitly eastern. So, 3pm local for you is 5pm east coast. The logic for getNextBizDay includes "if 5pm or after, go to the next day". 3pm your time is exactly 5pm, and should return the next day. Test isn't accounting for being run in other timezones. Wouldn't hold up merge to fix anything, in addition some of this might be changing or have changed with the unit test effort.
{ | ||
match_phrase: { | ||
name: { | ||
query: "Do Not Use", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
maximumRetryAttempts: 0 | ||
environment: | ||
region: ${self:provider.region} | ||
osDomain: ${param:osDomain} | ||
events: | ||
- http: | ||
path: /getSeaTypes | ||
path: /getTypes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a hefty one, glad we got it done but we should think about ways to better approach 4300 line change PRs 😰
🎉 This PR is included in version 1.5.0-val.15 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Linked Issues to Close
(for the epic)
https://qmacbis.atlassian.net/browse/OY2-27187
test link: https://d3tv3xhp6q8ov4.cloudfront.net/
Description of Changes
subject
,description
,types
, andsubtypes
in SPA WAIVER and Medicaid form submission pages, as per Figma design guidelines.type
andsubtype
fields to support multiple selections, enabling users to specify more than one option as applicable.type
toauthority
where relevant to better reflect its purpose.DetailSidebar
component that dynamically displays relevant sidebar items on the details page, based on the existing data.submission/common
directory to standardize the UI and facilitate reuse.Impact of Changes
These changes introduce new data collection fields in the form submission process, which may require users to adapt to the updated submission requirements. The database schema and related APIs have been updated to accommodate the new data types and structures. No backward-incompatible changes are introduced, but users should review the updated submission process for SPA WAIVER and Medicaid forms.
Additional Notes
*** We are still waiting on final approval form the business for the changes to the ui**