-
Notifications
You must be signed in to change notification settings - Fork 325
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
fix(ui-react-storage): StoBro custom views type inferrence #6434
base: feat-expose-sb-types/main
Are you sure you want to change the base?
Conversation
|
RInput extends ExtendedActionConfigs & { | ||
custom?: Input['actions'] extends {} ? Input['actions']['custom'] : {}; | ||
}, |
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.
Is this something we can address in ExtendedActionConfigs
to reduce the amount of type inference logic we have here?
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.
We can. I write this logic to keep the RInput
interface. However I don't think RInput
generic is best for inference here. The better generic should be based on Custom extends CustomActionConfigs
. Would changing this generic consider as breaking change.
Description of changes
Fix an issue where the
<StorageBrowser />
views
property missing custom view names in type inferrence if both default actions and custom actions are specified in the input config.Issue #, if available
Follow-up to #6415 (comment)
The root cause is that original
Input['actions'] extends ExtendedActionConfigs ? Input['actions'] : ExtendedActionConfigs
generics infersExtendedActionConfigs
if inputactions
withdefault
is specified, but it should be inferred toInput['actions']
.Description of how you validated changes
Update the example code to make use of the correctly inferred type.
Checklist
yarn test
passes and tests are updated/addeddocs
,e2e
,examples
, or other private packages.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.