1. ホーム
  2. reactjs

[解決済み] React.cloneElementのプロパティを子に与えるとき、正しいタイピングを割り当てるにはどうすればよいですか?

2023-01-22 05:21:37

質問

ReactとTypescriptを使用しています。ラッパーとして動作するリアクトコンポーネントがあり、そのプロパティを子要素にコピーしたいと思っています。Reactのガイドに従ってclone要素を使用しています。 https://facebook.github.io/react/blog/2015/03/03/react-v0.13-rc2.html#react.cloneelement . しかし React.cloneElement を使用すると、Typescriptから以下のようなエラーが表示されます。

Argument of type 'ReactChild' is not assignable to parameter of type 'ReactElement<any>'.at line 27 col 39
  Type 'string' is not assignable to type 'ReactElement<any>'.

react.cloneElementに正しい型付けをするにはどうしたらよいですか?

上記のエラーを再現する例です。

import * as React from 'react';

interface AnimationProperties {
    width: number;
    height: number;
}

/**
 * the svg html element which serves as a wrapper for the entire animation
 */
export class Animation extends React.Component<AnimationProperties, undefined>{

    /**
     * render all children with properties from parent
     *
     * @return {React.ReactNode} react children
     */
    renderChildren(): React.ReactNode {
        return React.Children.map(this.props.children, (child) => {
            return React.cloneElement(child, { // <-- line that is causing error
                width: this.props.width,
                height: this.props.height
            });
        });
    }

    /**
     * render method for react component
     */
    render() {
        return React.createElement('svg', {
            width: this.props.width,
            height: this.props.height
        }, this.renderChildren());
    }
}

どのように解決するのですか?

問題は の定義が ReactChild はこうです。

type ReactText = string | number;
type ReactChild = ReactElement<any> | ReactText;

もし、あなたが child は常に ReactElement であれば、それをキャストします。

return React.cloneElement(child as React.ReactElement<any>, {
    width: this.props.width,
    height: this.props.height
});

それ以外の場合は isValidElement タイプガード :

if (React.isValidElement(child)) {
    return React.cloneElement(child, {
        width: this.props.width,
        height: this.props.height
    });
}

(今まで使っていなかったが、定義ファイルによるとある)