-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add layer of abstraction in Panel
classes
#945
Conversation
87b56b5
to
9d6839f
Compare
555701f
to
1ae24a8
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #945 +/- ##
=======================================
Coverage 67.85% 67.85%
=======================================
Files 110 110
Lines 6206 6206
=======================================
Hits 4211 4211
Misses 1995 1995
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
1ae24a8
to
81cb0e0
Compare
@superstar54 please have a look at this when you get a chance 🙏 |
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.
LGTM!
81cb0e0
to
4ba319f
Compare
This PR looks to clean up the recently implemented plugin-based tab system in the resources/submission step (#939). The idea is to leverage the newly developed abstraction in #945 to encapsulate the behavior of ANY resource settings panel, leaving the global resource settings panel to override based on its unique added features. A few added items addressed in this PR: - PW code parallelization widget syncing between tabs - Support for syncing newly setup codes - Warning notification for overridden plugin resources - Syncing back with global resources on un-override
This PR adds a layer of abstraction for settings panels though the new
ConfigurationSettingsPanel
andResourceSettingsPanel
classes and their respectiveModel
classes. The rest of the codebase has been renamed for clarity.