-
Notifications
You must be signed in to change notification settings - Fork 42
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
Experience/16759/code mapping results page #17436
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Manifest Files |
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 with nits
|
||
export type CodeMappingFormProps = PropsWithChildren; | ||
interface CodeMappingFormProps { | ||
onSubmitHandler: FormEventHandler<HTMLFormElement>; |
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.
nit: rename to onSubmit to follow event handler property names on dom elements
interface CodeMappingResultsProps { | ||
fileName: string; | ||
data: CodeMapData[]; | ||
initialStepHandler: () => void; |
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.
nit: maybe rename to onReset, if that's what is practically happening on button usage
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.
) : ( | ||
<Alert type={"error"} heading={"Your file contains unmapped codes "}> | ||
Review unmapped codes for any user error, such as a typo. If the unmapped codes are accurate, | ||
download the table and send the file to your onboarding engineer or [email protected]. Our |
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.
missing hyperlinks:
- "download the table" should be linked to download the CSV. ok if this is just a placeholder link as a reminder to implement it once the CSV functionality is incorporated.
- "[email protected]" should be hyperlinked to
mailto:[email protected]
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.
Talked via Slack: we have a discrete ticket for downloading the CSV and will tackle this then.
Branch deployed to Chromatic 🚀.
View via: |
|
|
This PR adds the Code Map Result F/E code which includes:
This PR explicitly does not include:
Sample:
Fixes #16759