-
Notifications
You must be signed in to change notification settings - Fork 10
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
Refactor component types and component inheritance #110
Conversation
Signed-off-by: Tyler Ohlsen <[email protected]>
Signed-off-by: Tyler Ohlsen <[email protected]>
@@ -6,7 +6,8 @@ | |||
"ui": true, | |||
"requiredBundles": [], | |||
"requiredPlugins": [ | |||
"navigation" | |||
"navigation", | |||
"opensearchDashboardsUtils" |
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.
needed for createGetterSetter()
used in services.ts
. Was recently removed from requiredBundles due to it causing build errors, but without it it causes runtime errors. Correct pattern is to include this in requiredPlugins.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #110 +/- ##
==========================================
+ Coverage 19.30% 25.42% +6.12%
==========================================
Files 50 53 +3
Lines 746 763 +17
Branches 71 73 +2
==========================================
+ Hits 144 194 +50
+ Misses 595 562 -33
Partials 7 7 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Tyler Ohlsen <[email protected]> (cherry picked from commit 616b1cb)
Signed-off-by: Tyler Ohlsen <[email protected]> (cherry picked from commit 616b1cb) Co-authored-by: Tyler Ohlsen <[email protected]>
Description
This PR refactors, renames, and improves upon the UI component class hierarchy used in the drag-and-drop workspace:
Demo video with hardcoded workflow state:
screen-capture.16.webm
Issues Resolved
Makes progress on #73
Check List
--signoff
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.