Props not being extracted when using both memo and forward ref
Nobody has claimed this yet.
Assessment
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Newbie friendliness
- 35/100
- Issue type
- Bug
- Clarity
- Mostly clear
- Activity status
- Stale
- Tech stack
- react, typescript
- Domain
- documentation, tooling
Research direction
Start from the TypeScript reproductions using forwardRef and memo, and trace how the extractor handles their component types. Verify the two failing examples extract TextfieldProps, including the ref prop, while preserving the working behavior shown in the issue.
Written by the indexing model from the issue text.
Description
Doesn't work:
import { TextfieldProps } from './types';
const Textfield = forwardRef((props: TextfieldProps, ref) => {
^^^^^^^^^^^^^^^ not extracted
return <input />;
});
Textfield.displayName = 'Textfield';
export default memo(Textfield);
Doesn't work:
import { TextfieldProps } from './types';
const Textfield = forwardRef<unknown, TextfieldProps>((props: TextfieldProps, ref) => {
^^^^^^^^^^^^^^^ not extracted
return <input />;
});
Textfield.displayName = 'Textfield';
export default memo(Textfield);
Works
import { TextfieldProps } from './types';
const Textfield = forwardRef((props: TextfieldProps, ref) => {
return <input />;
});
Textfield.displayName = 'Textfield';
export default memo<TextfieldProps>(Textfield);
^^^^^^^^^^^^^^^ extracts, but now missing ref prop in the component types
- Dominant language
- JavaScript
- Stars
- 188
- Forks
- 31
- PR merge metrics
- No merged PRs in 30d
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from atlassian/extract-react-types
-
Difficulty 3/5 1-2 days Newbie friendliness 35/100
atlassian/extract-react-types#245 ·
-
Difficulty 1/5 Under an hour Newbie friendliness 55/100
atlassian/extract-react-types#209 ·
-
Difficulty 4/5 3-5 days Newbie friendliness 45/100
atlassian/extract-react-types#192 ·
-
@types/react question
Difficulty 4/5 3-5 days Newbie friendliness 25/100
atlassian/extract-react-types#180 · 6 comments ·
-
Difficulty 5/5 Over a week Newbie friendliness 20/100
atlassian/extract-react-types#178 ·
All issues in atlassian/extract-react-types
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
HarperFast/skills#96 ·
-
[Block] Latest Posts [Type] Bug
Difficulty 2/5 1-3 hours Newbie friendliness 76/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
Automattic/studio#4908 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 86/100
sugarlabs/musicblocks#8847 ·