[react/no-unstable-nested-components] Declare this component outside parent component “HelpModal” or memoize it. If you want to allow component creation in props, set allowAsProps option to true.
错误代码:
[gfm]}components={{// 在这里code({ node, inline, className, children, ...props }) {const match = /language-(\w+)/.exec(className || '');return !inline && match ? (String(children).replace(/\n$/, '')}style={dark}language={match[1]}PreTag="div"{...props}/>) : (className} {...props}>{children}
);},}}
>{helpText}
参考:How to fix ‘eslint-disable-next-line react/no-unstable-nested-components’
将代码抽离出来,并使用useCallback
。
const renderCodeMarkdown = useCallback(({ node, inline, className, children, ...props }) => {const match = /language-(\w+)/.exec(className || '');return !inline && match ? (dark} language={match[1]} PreTag="div" {...props}>{String(children).replace(/\n$/, '')} ) : (className} {...props}>{children}
);}, []);[gfm]}components={{// 在这里code: renderCodeMarkdown,}}
>{helpText}
react-markdown官方文档中,有指出components属性的用法,html标签code
作为key,不同标签有不同的props
。
在使用antd Select
组件的dropdownRender
属性的时候,如果根据官方文档的写法也会存在eslint校验不通过的情况。
所以,同上处理方式,解决如下:
const renderDropdown = useCallback((menu) => {return (<>{menu}{ margin: '8px 0' }} />{ padding: '0 8px 4px' }}>`${t('shark-please-input')} ${t('shark-fe-case-create-start-page')}`}ref={inputRef}value={pagePathName}onChange={(e) => setPagePathName(e.target.value)}/> >);},[addPagePathItem, pagePathName, t],
);{ width: 300 }}placeholder={t('shark-fe-case-create-start-page') as string}// 在这里dropdownRender={renderDropdown}options={pagePathOpts}
/>