6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TypeScript + React FCでのforwardRefの書き方

Last updated at Posted at 2021-07-02

やりたい事

Reactの関数コンポーネントにrefを渡してあげたい。

やり方

こういうpropsから受けとったタイトルを表示するコンポーネントがあるとします。

import React, {forwardRef} from 'react';

const Title = ({title}) => {
  return (
    <div>
      <h2>{title}</h2>
    </div>
  );
};

export default Title

こちらのコンポーネントをforwardRef関数で囲います。

import React from 'react';

const Title = forwardRef(({ title }, ref) => {
  return (
    <div>
      <h2 ref={ref}>{title}</h2>
    </div>
  )
});

export default Title

後は型情報を渡してあげたら完成です。 forwaredRef<Refの型, Propsの型> という形式で渡してあげましょう。今回の場合はh2にrefを渡しているのでHTMLHEADINGElementを指定しています。

import React, { forwardRef } from 'react';

type Props = {
  title: string
}

const Title = forwardRef<HTMLHeadingElement, Props>(({ title }, ref) => {
  return (
    <div>
      <h2 ref={ref}>{title}</h2>
    </div>
  )
});

export default Title

最後に実際にrefが渡せているのか確認してみましょう。

import React, { useRef } from 'react';
import Title from "~/components/Title"

const Main = () => {
  const ref = useRef(null)
  console.log(ref)

  return (
    <div>
      <Title title='タイトルだよー' ref={headingRef} />
    </div>
  );
};

export default Main;

コンソールを確認するとTitleコンポーネント内のh2要素が取得出来ているのが確認できると思います。

参考した記事

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?