Can not parse function component
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 35/100
- Issue type
- Bug
- Clarity
- Mostly clear
- Activity status
- Stale
- Tech stack
- javascript, react
- Domain
- documentation, tooling
Research direction
Reproduce the failure with the JSX example reported as src/app/components/Checkbox.jsx using react-styleguidist 9.1.2. No test or parser file is named in the report; done means the functional component parses without a RangeError while class components continue to parse correctly.
Written by the indexing model from the issue text.
Description
I using react-styleguidist.
But fuctional component is can't parse.
my code:
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { sizeEnum } from '../../types/enum';
import styles from './Checkbox.module.scss';
/**
* Design Guide Checkbox.
*/
function Checkbox(props) {
const { id, name, value, label, size, checked, disabled, onChange } = props;
const labelClass = classNames(styles.label, styles[size]);
const inputClass = classNames(styles.input, styles[size]);
return (
<label className={labelClass} htmlFor={id}>
<input
type="checkbox"
id={id}
className={inputClass}
name={name}
value={value}
checked={checked}
disabled={disabled}
onChange={onChange}
/>
{label || value}
</label>
);
}
Checkbox.propTypes = {
/** id */
id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
/** input name */
name: PropTypes.string.isRequired,
/** input value */
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
/** label */
label: PropTypes.string,
/** size */
size: PropTypes.oneOf([sizeEnum.large, sizeEnum.medium]),
/** checked */
checked: PropTypes.bool,
/** disabled */
disabled: PropTypes.bool,
/** onChange */
onChange: PropTypes.func,
};
Checkbox.defaultProps = {
label: '',
size: sizeEnum.medium,
checked: false,
disabled: false,
onChange: () => null,
};
export default Checkbox;
display message:
Warning: Cannot parse src/app/components/Checkbox.jsx: RangeError: Maximum call stack size exceeded
class component is parsed well.
react-styleguidist version is 9.1.2
- Dominant language
- TypeScript
- Stars
- 3.8k
- Forks
- 316
- Avg merge
- 3h 28m
- Merged PRs (30d)
- 6
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 reactjs/react-docgen
-
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
reactjs/react-docgen#1102 ·
-
Typescript Status Open
Difficulty 5/5 Over a week Newbie friendliness 20/100
reactjs/react-docgen#1005 · 4 reactions ·
-
Difficulty 3/5 1-2 days Newbie friendliness 48/100
reactjs/react-docgen#997 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 42/100
reactjs/react-docgen#994 · 1 comment ·
-
Difficulty 4/5 3-5 days Newbie friendliness 25/100
reactjs/react-docgen#982 · 2 comments ·
All issues in reactjs/react-docgen
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
copse-dev/agent-pane#2953 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
Eynzof/Hermes-CN-Desktop#610 ·
-
bug clawsweeper:linked-pr-open clawsweeper:needs-live-repro clawsweeper:no-new-fix-pr impact:message-loss issue-rating: 🐚 platinum hermit P2 regression
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
enhancement
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
-
calcite-components needs triage refactor
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
Esri/calcite-design-system#15203 ·