-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Setup "Connect bank account" workspace flow #5703
Merged
tgolen
merged 31 commits into
tgolen-workspace-settings
from
marcaaron-connectBankAccount2
Oct 8, 2021
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
73ff6ab
Move bank-account flow into workspace flow
marcaaron a7727f4
adding the basically done thing page but bank icons need a bankName a…
marcaaron 16a458e
Create interstitial page to redirect or show continue button
marcaaron 9e03ec0
fix subStep logic so that we remember the option selected;
marcaaron 8519ad3
Fix bankName stuff
marcaaron 74e4a55
add initial english translations
marcaaron 235b3d9
clean up getPaymentMethods
marcaaron 93e9d35
use initWithStoredValues
marcaaron d87cfc8
Remove add work email and replace with Concierge
marcaaron 1038edf
Add noop onPress
marcaaron 72fb8d7
dont show the continue setup screen if we are in an open state
marcaaron 8db44a0
fix weird bug that silently breaks navigating to a new step
marcaaron cd2d639
pop the WorkspaceBankAccountPage before navigating to /bank-account
marcaaron 10e27c7
remove unneeded link out to olddot
marcaaron 62a5191
Navigate to correct next step
marcaaron 183903a
add missing propTypes
marcaaron 81dea7f
add translations
marcaaron ac85502
add translations and assets
marcaaron 665da6d
Merge branch 'tgolen-workspace-settings' into marcaaron-connectBankAc…
marcaaron 18b05d3
remove unneeded import
marcaaron 6dce153
update copy
marcaaron 89a326f
change icon
marcaaron 198a064
remove assets
marcaaron c06423f
remove unused things
marcaaron 87271a8
fix conflicts
marcaaron 78da1f0
update route
marcaaron 50ab411
move loading false so ACHContractStep does not reshow
marcaaron 075fc07
add workaround for navigation
marcaaron d8a9be7
fix conflicts
marcaaron d68da52
remove pop
marcaaron a409a59
Remove extra dismissModal as it is no longer needed. Add a dismissMod…
marcaaron 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 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 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 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,15 @@ | ||
import PropTypes from 'prop-types'; | ||
|
||
export default PropTypes.shape({ | ||
/** The name of the institution (bank of america, etc */ | ||
addressName: PropTypes.string, | ||
|
||
/** The masked bank account number */ | ||
accountNumber: PropTypes.string, | ||
|
||
/** The bankAccountID in the bankAccounts db */ | ||
bankAccountID: PropTypes.number, | ||
|
||
/** The bank account type */ | ||
type: PropTypes.string, | ||
}); |
This file contains 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 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 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 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 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 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 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
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.
I changed this because it was breaking on the next line and preventing the redirect logic I added. I don't think this should matter since we aren't using the questions and answers from expectID yet. Maybe @ctkochan22 can double check I'm not doing anything dumb here.