最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is it possible document with jsdoc children or render props used as a function? - Stack Overflow

programmeradmin1浏览0评论

I'm trying to create a wrapper ponent using the react render pattern, but I also want to document the arguments passed through render/children, in order to have, for example, an helpful intellisense.

I tried to define my own ponent as React.ExoticComponent<React.ConsumerProps<MYTYPE>> but doing this it means declaring the ponent like a <Context.Consumer>, hiding the input props.

const Wrapper = ({children}) => {

    const exampleFunction = () => {} 

    return (
        <div>
            {children({exampleFunction})}
        </div>
    )
}

const ImplementationComponent = () => {

    const exampleFunction = () => {} 

    return (
        <Wrapper>
            {({exampleFunction}) => (
                // <Components...>
            )}
        </Wrapper>
    )
}

I want the typechecking in the implementation, in order to help who shall use the wrapper ponent.

I'm trying to create a wrapper ponent using the react render pattern, but I also want to document the arguments passed through render/children, in order to have, for example, an helpful intellisense.

I tried to define my own ponent as React.ExoticComponent<React.ConsumerProps<MYTYPE>> but doing this it means declaring the ponent like a <Context.Consumer>, hiding the input props.

const Wrapper = ({children}) => {

    const exampleFunction = () => {} 

    return (
        <div>
            {children({exampleFunction})}
        </div>
    )
}

const ImplementationComponent = () => {

    const exampleFunction = () => {} 

    return (
        <Wrapper>
            {({exampleFunction}) => (
                // <Components...>
            )}
        </Wrapper>
    )
}

I want the typechecking in the implementation, in order to help who shall use the wrapper ponent.

Share Improve this question edited Jun 27, 2023 at 9:32 Mir-Ismaili 17.3k8 gold badges102 silver badges121 bronze badges asked Jun 26, 2019 at 10:09 DanieloDanielo 1642 silver badges15 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13
/** @param {{ children: JSX.Element}} [Props] */

const Wrapper = ({children}) => {...}

If you want to support string, null, nothing (empty), etc. use React.ReactNode and make it optional:

/**
 * @param {Object} props
 * @param {React.ReactNode} [props.children]
 * @returns {JSX.Element}
 */
function Wrapper ({children}) {
  // ...
})

Because:

type ReactNode = ReactElement | string | number | ReactFragment | ReactPortal | boolean | null | undefined;

But:

namespace JSX {
    interface Element extends React.ReactElement<any, any> { }
    ...

See: https://github./DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts

发布评论

评论列表(0)

  1. 暂无评论