1
0

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 3 years have passed since last update.

Reactでコンポーネントのプロパティーにイベントを渡すときの型を整理

Posted at

Reactで定義されているイベントの型がわからずエラーメッセージを見ながら調整していくことになるので型を整理
サンプルコードはmaterial-uiで定義されているコンポーネントを呼び出すと仮定しています。

onChange

テキストフィールドなどのフォームで値の入力値を検知してアクションを実行する時に出てくる

(event: React.ChangeEvent<{}>) => void;

interface Props {
  changeTextFieldHandler: (event: React.ChangeEvent<{}>) => void;
}

<TextField
  onChange={changeTextFieldHandler}
/>

onSubmit

formのサブミット

(event: React.FormEvent) => void;

interface Props {
  formSubmitAction: (event: React.FormEvent<HTMLFormElement>) => void;
}

<form onSubmit={formSubmitAction}>

onMouseEnter / onMouseLeave

コンポーネントにマウスオーバーした時、マウスオーバーを解除したときのアクション

React.MouseEventHandler;

interface Props {
  onMouseEnterAction: React.MouseEventHandler<HTMLButtonElement>;
  onMouseLeaveAction: React.MouseEventHandler<HTMLButtonElement>;
}

<Button
  onMouseEnter={onMouseEnterAction}
  onMouseLeave={onMouseLeaveAction}
/>

onClick

クリックイベント

(event: React.MouseEvent) => void;

interface Props {
  onClickHandler: (event: React.MouseEvent<HTMLButtonElement>) => void;
}

<Button onClick={onClickHandler}/>

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?