React의 조건부 랩핑
import { FC, ReactNode, createElement } from 'react';
interface WrapProps {
if?: boolean;
with: typeof createElement.arguments[0];
wrapperProps: typeof createElement.arguments[1];
children: NonNullable<ReactNode>;
}
const Wrap: FC<WrapProps> = ({
if: condition,
with: wrapper,
wrapperProps,
children,
}) =>
condition ? createElement(wrapper, wrapperProps, [children]) : <>{children}</>;
export default Wrap;
용법:
<Wrap if with="a" wrapperProps={{ 'data-testid': 'wrapper' }}>
<p>Wrapped text</p>
</Wrap>
이 구성 요소는 동적 구성 요소 생성을 허용하므로
React.createElement
를 사용합니다. 이는 Wrap에 (children) => <p>{children}</p>
와 같은 함수를 제공하는 대신 React Component 인스턴스나 HTML 노드 이름을 전달할 수 있음을 의미합니다.
Reference
이 문제에 관하여(React의 조건부 랩핑), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hnrq/conditional-wrap-in-react-1p1e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)