-
Notifications
You must be signed in to change notification settings - Fork 53
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
V2Wizard: Add Repositories step #1569
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1569 +/- ##
==========================================
- Coverage 77.40% 77.38% -0.03%
==========================================
Files 68 68
Lines 1974 1972 -2
Branches 550 550
==========================================
- Hits 1528 1526 -2
Misses 405 405
Partials 41 41 see 1 file with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
093cf5d
to
fa114d0
Compare
I've tried to clean up the logic in |
4599c2a
to
11043c9
Compare
9436664
to
456ec54
Compare
456ec54
to
4b36b80
Compare
4b36b80
to
19a5820
Compare
19a5820
to
e05abb0
Compare
This creates a new folder for the Repositories step and copies over all needed files: - Repositories.tsx - RepositoriesStatus.tsx - RepositoryUnavailable.tsx
e05abb0
to
ba24832
Compare
src/Components/CreateImageWizardV2/utilities/checkRepositoriesAvailability.ts
Outdated
Show resolved
Hide resolved
This adds Content as a step and Repositories as a substep to the Wizard.
This adds checkRepositoriesAvailability.ts to a newly created `utilities` folder.
This adds needed components to the Repositories step skeleton.
This adds disabled CreateImageWizard.content.test.tsx test suite to the V2Wizard.
This enables test for the Repositories step.
ba24832
to
0213dac
Compare
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.
Wonderful work! I wrote most of this original code and you've done a great job cleaning it up and adapting it to the new wizard... I'd still like to do a bit more refactoring on my old messy code but I think this is perfect for now and will let us keep moving and start working on the packages step! Thank you!
This PR adds Repository step to the V2Wizard. Files were migrated to TypeScript, new directory was created for utilities that are used across more steps and
.content
test suite was added and updates so only relevant tests are enabled.