-
-
Notifications
You must be signed in to change notification settings - Fork 9.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
React.forwardRef cause invalid prop in PropTable for the withInfo addon #3389
Comments
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
I had this same issue and solved it by using I added the following code to jest.mock('@storybook/addon-info', () => ({
withInfo: () => storyFn => storyFn,
setDefaults: () => {},
})) Hope this helps someone |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
The new React context does not provide access to the context from lifecycle methods such as Does anyone know how to work around this? I'm getting this error outside tests in a plain storybook story so I don't think the Here's the pattern: import { Context } from 'somewhere'
const withContext = Component =>
React.forwardRef((props, ref) => (
<Context.Consumer>
{
({ contextValue1, contextValue2 }) =>
<Component
{...props}
contextValue1={contextValue1}
contextValue2={contextValue2}
ref={ref}
/>
}
</Context.Consumer>
)) |
The only workaround I've found is to turn off prop table generation: withInfo({
propTables: false
text: 'Here it is',
})(...) FWIW, I've pushed a demo repo demonstrating this failure with a basic React.Consumer example; .add(
'with info with a consumer',
withInfo('Is it Friday?')(() => (
<IsFridayContext.Consumer>
{isFriday =>
isFriday ? (
<a href="https://www.youtube.com/watch?v=kfVsfOSbJY0">It's friday</a>
) : (
"It's a miserable day"
)
}
</IsFridayContext.Consumer>
))
); |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
Hey there, it's me again! I am going close this issue to help our maintainers focus on the current development roadmap instead. If the issue mentioned is still a concern, please open a new ticket and mention this old one. Cheers and thanks for using Storybook! |
This is still broken, please reopen. |
+1 ⇢ Even with the new major release @storybook/addon-info 4.0.2 it's still broken. Please reopen. |
Still broken. |
The bots are broken |
Still receiving the error in |
same here, latest storybook and addons |
Still broken. |
This is still broken in |
this is still broken in |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
// Function Component
Component.diplayName = "Component Name"
// Class Component
static displayName = "Component Name" |
This is still broken in latest version. Any idea? I’m just ignoring it... |
Its working fine with me try check dependencies below "dependencies": {
"chroma-js": "1.3.7",
"classnames": "2.2.6",
"leaflet": "^1.4.0",
"leaflet-routing-machine": "^3.2.12",
"leaflet.markercluster": "^1.4.1",
"prop-types": "15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-leaflet": "^2.2.0",
"react-leaflet-markercluster": "^2.0.0-rc3",
"react-leaflet-search": "^0.6.0",
"react-pose": "3.2.1",
"react-select": "2.0.0",
"react-table": "6.8.6",
"recharts": "1.1.0",
"superagent": "3.8.3",
"tachyons": "4.11.1",
"tachyons-cli": "1.3.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@dump247/storybook-state": "^1.5.2",
"@sambego/storybook-state": "^1.3.2",
"@storybook/addon-a11y": "^4.1.11",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-centered": "^4.1.11",
"@storybook/addon-google-analytics": "^4.1.11",
"@storybook/addon-info": "^4.1.12",
"@storybook/addon-knobs": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addon-notes": "^4.1.11",
"@storybook/addon-options": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/react": "^4.1.11",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"css-mqpacker": "^7.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"jest": "^24.1.0",
"postcss-calc": "^7.0.1",
"postcss-class-repeat": "^0.1.1",
"postcss-conditionals": "^2.1.0",
"postcss-css-variables": "^0.11.0",
"postcss-custom-media": "^7.0.7",
"postcss-discard-comments": "^4.0.2",
"postcss-extend-rule": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-modules": "^1.4.1",
"rimraf": "^2.6.3",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-copy-assets-to": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"storybook-host": "^5.0.3",
"storybook-readme": "^4.0.5"
} |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
@damusnet we're in beta now and hope to do a full release in a few weeks |
This should be fixed in 5.1 |
I am still getting this issue in 5.2.8 |
|
@danieltott This is great but in my case I also received this console error when implementing. Warning: Functions are not valid as a React child. This may happen if you return a Component instead of from render. Or maybe you meant to call this function rather than return it. To fix this I had to call the storyFn instead of just returning it. My complete example below.
|
Bug or support request summary
Using React.forwardRef cause the prop
type
of PropTable to be incorrect.It causes bugs in the story source and proptypes table
Story without the forwardRef wrapper:
Story with the forwardRef wrapper: (Note the
Unknown
tag)Steps to reproduce
Add the wrapper React.forwardRef to a working component that is used in a story
React.forwardRef(({ text, onDelete, ...rest }, ref) => { ... }
My code example uses styled-components but normal DOM element reproduce the bug too.
Please specify which version of Storybook and optionally any affected addons that you're running
@storybook/react 3.4.0
@storybook/addon-info 3.4.0
Affected platforms
Chrome V65.0.3325.181, windows 10 V1709
I'm pretty sure its not related but my version of styled-components is 3.2.5
Screenshots / Screencast / Code Snippets (Optional)
This is the working exemple code:
This is the bug exemple code:
Story
The text was updated successfully, but these errors were encountered: