-
Notifications
You must be signed in to change notification settings - Fork 4
feat(SDK-1161): add PrintChecksForm #2586
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9121ec6
feat(SDK-1161): add print-checks terminal screens and event vocabulary
krisxcrash a1b611f
feat(SDK-1161): add PrintChecksBanner
krisxcrash 88d88b5
chore: update derived files
github-actions[bot] 61fb2a2
feat(SDK-1161): add PrintChecksForm
krisxcrash 1b591c6
chore: update derived files
github-actions[bot] a561e91
Merge remote-tracking branch 'origin/kw/feat/print-checks-2-banner' i…
krisxcrash f7652ba
Merge remote-tracking branch 'origin/main' into kw/feat/print-checks-…
krisxcrash c6014fd
Merge branch 'main' into kw/feat/print-checks-2-banner
krisxcrash 5366f1b
Merge branch 'kw/feat/print-checks-2-banner' into kw/feat/print-check…
krisxcrash e748260
Merge branch 'main' into kw/feat/print-checks-3-form
krisxcrash File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/components/Payroll/PrintChecks/PrintChecksForm/PrintChecksForm.stories.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| import { Suspense } from 'react' | ||
| import { fn } from 'storybook/test' | ||
| import { PrintChecksForm } from './PrintChecksForm' | ||
| import { GustoTestProvider } from '@/test/GustoTestApiProvider' | ||
| import { FlowContext } from '@/components/Flow/useFlow' | ||
| import { useI18n } from '@/i18n' | ||
|
|
||
| function I18nLoader({ children }: { children: React.ReactNode }) { | ||
| useI18n('Payroll.PrintChecksForm') | ||
| return <>{children}</> | ||
| } | ||
|
|
||
| export default { | ||
| title: 'Domain/Payroll/PrintChecksForm', | ||
| decorators: [ | ||
| (Story: React.ComponentType) => ( | ||
| <Suspense fallback={<div>Loading translations...</div>}> | ||
| <I18nLoader> | ||
| <GustoTestProvider> | ||
| <Story /> | ||
| </GustoTestProvider> | ||
| </I18nLoader> | ||
| </Suspense> | ||
| ), | ||
| ], | ||
| } | ||
|
|
||
| export const Default = () => ( | ||
| <FlowContext.Provider value={{ component: null, onEvent: fn().mockName('onEvent') }}> | ||
| <PrintChecksForm payrollId="payroll-1" onEvent={fn().mockName('onEvent')} /> | ||
| <PrintChecksForm.Footer onEvent={fn().mockName('onEvent')} /> | ||
| </FlowContext.Provider> | ||
| ) | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
same feedback around stories, i think there should be an abstraction to share this stuff, i feel like it exists already?