clariroid
10 years ago
2 changed files with 817 additions and 0 deletions
@ -0,0 +1,116 @@ |
|||||
|
--- |
||||
|
id: getting-started-ja |
||||
|
title: 始めてみましょう |
||||
|
next: tutorial-ja.html |
||||
|
redirect_from: "docs/index-ja.html" |
||||
|
--- |
||||
|
|
||||
|
## JSFiddle |
||||
|
|
||||
|
React でのハッキングを始めるにあたり、一番簡単なものとして次の JSFiddle で動いている Hello World の例を取り上げます。 |
||||
|
|
||||
|
* **[React JSFiddle](http://jsfiddle.net/reactjs/69z2wepo/)** |
||||
|
* [React JSFiddle without JSX](http://jsfiddle.net/reactjs/5vjqabv3/) |
||||
|
|
||||
|
## スターターキット |
||||
|
|
||||
|
始めるためにスターターキットをダウンロードしましょう。 |
||||
|
|
||||
|
<div class="buttons-unit downloads"> |
||||
|
<a href="/react/downloads/react-{{site.react_version}}.zip" class="button"> |
||||
|
Download Starter Kit {{site.react_version}} |
||||
|
</a> |
||||
|
</div> |
||||
|
|
||||
|
スターターキットのルートディレクトリに `helloworld.html` を作り、次のように書いてみましょう。 |
||||
|
```html |
||||
|
<!DOCTYPE html> |
||||
|
<html> |
||||
|
<head> |
||||
|
<script src="build/react.js"></script> |
||||
|
<script src="build/JSXTransformer.js"></script> |
||||
|
</head> |
||||
|
<body> |
||||
|
<div id="example"></div> |
||||
|
<script type="text/jsx"> |
||||
|
React.render( |
||||
|
<h1>Hello, world!</h1>, |
||||
|
document.getElementById('example') |
||||
|
); |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
||||
|
``` |
||||
|
|
||||
|
JavaScript の中に書かれた XML シンタックスは JSX と呼ばれるものです(JSX の詳しいことについては [JSX syntax](/react/docs/jsx-in-depth.html) を読んでください)。ここでは JSX から vanilla JavaScript への変換をブラウザ内で行わせるため、先程のコードには `<script type="text/jsx">` と書いており、加えて `JSXTransformer.js` を読み込ませています。 |
||||
|
|
||||
|
### ファイルの分割 |
||||
|
|
||||
|
React の JSX コードは別ファイルに分離することができます。 次のような `src/helloworld.js` を作ってみましょう。 |
||||
|
|
||||
|
```javascript |
||||
|
React.render( |
||||
|
<h1>Hello, world!</h1>, |
||||
|
document.getElementById('example') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
それが終わったら、`helloworld.js` への参照を `helloworld.html` に書き込みましょう。 |
||||
|
|
||||
|
```html{10} |
||||
|
<script type="text/jsx" src="src/helloworld.js"></script> |
||||
|
``` |
||||
|
|
||||
|
### オフラインでの変換 |
||||
|
|
||||
|
まずはコマンドラインツールをインストールしましょう([npm](http://npmjs.org/) が必要です)。 |
||||
|
|
||||
|
``` |
||||
|
npm install -g react-tools |
||||
|
``` |
||||
|
|
||||
|
インストールが終わったら、先程書いた `src/helloworld.js` ファイルを生の JavaScript に変換してみましょう。 |
||||
|
|
||||
|
``` |
||||
|
jsx --watch src/ build/ |
||||
|
|
||||
|
``` |
||||
|
|
||||
|
すると、`src/helloword.js` に変更を加えるごとに `build/helloworld.js` が自動で生成されるようになります。 |
||||
|
|
||||
|
```javascript{2} |
||||
|
React.render( |
||||
|
React.createElement('h1', null, 'Hello, world!'), |
||||
|
document.getElementById('example') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
|
||||
|
最後に HTML ファイルを以下のように書き換えましょう。 |
||||
|
|
||||
|
```html{6,10} |
||||
|
<!DOCTYPE html> |
||||
|
<html> |
||||
|
<head> |
||||
|
<title>Hello React!</title> |
||||
|
<script src="build/react.js"></script> |
||||
|
<!-- JSXTransformer は必要ありません! --> |
||||
|
</head> |
||||
|
<body> |
||||
|
<div id="example"></div> |
||||
|
<script src="build/helloworld.js"></script> |
||||
|
</body> |
||||
|
</html> |
||||
|
``` |
||||
|
|
||||
|
## CommonJS を使うには |
||||
|
|
||||
|
React を [browserify](http://browserify.org/) や [webpack](http://webpack.github.io/)、または CommonJS 準拠の他のモジュールシステムと一緒に使いたい場合、 [`react` npm package](https://www.npmjs.org/package/react) を使ってみてください。また、`jsx` ビルドツールをパッケージングシステム(CommonJS に限らず)に導入することも非常に簡単です。 |
||||
|
|
||||
|
## 次にすること |
||||
|
|
||||
|
[チュートリアル](/react/docs/tutorial.html) や、スターターキットの `examples` ディレクトリに入っている他の例を読んでみてください。 |
||||
|
|
||||
|
また、[ワークフロー、UIコンポーネント、ルーティング、データマネジメントなど](https://github.com/facebook/react/wiki/Complementary-Tools)の方面で貢献しているコミュニティの wiki もあります。 |
||||
|
|
||||
|
幸運を祈ります!React へようこそ! |
@ -0,0 +1,701 @@ |
|||||
|
--- |
||||
|
id: tutorial |
||||
|
title: チュートリアル |
||||
|
prev: getting-started-ja.html |
||||
|
next: thinking-in-react-ja.html |
||||
|
--- |
||||
|
|
||||
|
これから、シンプルながらも現実的なコメントボックスを作ってみましょう。ブログにも設置できるようなもので、Disqus や LiveFyre、Facebook comments が採用しているリアルタイムコメントの基本機能を備えたものを想定しています。 |
||||
|
|
||||
|
その機能とは次のようなものです。 |
||||
|
|
||||
|
* コメント全件の表示欄 |
||||
|
* コメントの送信フォーム |
||||
|
* 自作のバックエンドとの連携機能 |
||||
|
|
||||
|
ついでに小洒落た機能もいくつか加えましょう。 |
||||
|
|
||||
|
* **コメントの先読み:** 送信したコメントをサーバに保存される前に表示させることで、アプリ動作の体感速度をアップさせます。 |
||||
|
* **自動更新:** 他のユーザのコメントをリアルタイムで表示させます。 |
||||
|
* **Markdown 記法:** ユーザが Markdown 記法でコメントを書けるようにします。 |
||||
|
|
||||
|
### 全部飛ばしてソースを見たいんだけど? |
||||
|
|
||||
|
[全部 GitHub にあります。](https://github.com/reactjs/react-tutorial) |
||||
|
|
||||
|
### サーバを動かす |
||||
|
|
||||
|
このチュートリアルを始めるにあたっては必要ないですが、後半ではサーバに POST を投げる機能を追加します。サーバのことは良く知っていて自分でサーバを建てたいのであれば、それでも構いません。そうではないけれども、サーバサイドは考えずに React のことだけに焦点を絞って学びたい方のため、シンプルなサーバのソースコードを書いておきました。言語は JavaScript (Node.js)または Python、Ruby、Go、ないし PHP で用意してあり、すべて GitHub にあります。[ソースを見る](https://github.com/reactjs/react-tutorial/) ことも出来ますし、 [zip ファイルでダウンロード](https://github.com/reactjs/react-tutorial/archive/master.zip)することも出来ます。 |
||||
|
|
||||
|
それでは最初のチュートリアルとして、`public/index.html` の編集から始めましょう。 |
||||
|
|
||||
|
### 始めてみましょう |
||||
|
|
||||
|
このチュートリアルでは、あらかじめビルドされた JavaScript ファイルを CDN から読み込むことになります。自分の好きなエディタを立ち上げて、次のように新規の HTML ドキュメントを作りましょう。 |
||||
|
|
||||
|
```html |
||||
|
<!-- index.html --> |
||||
|
<html> |
||||
|
<head> |
||||
|
<title>Hello React</title> |
||||
|
<script src="https://fb.me/react-{{site.react_version}}.js"></script> |
||||
|
<script src="https://fb.me/JSXTransformer-{{site.react_version}}.js"></script> |
||||
|
<script src="https://code.jquery.com/jquery-1.10.0.min.js"></script> |
||||
|
</head> |
||||
|
<body> |
||||
|
<div id="content"></div> |
||||
|
<script type="text/jsx"> |
||||
|
// ここにコードが入ります |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
||||
|
``` |
||||
|
|
||||
|
このチュートリアルに関しては、JavaScript コードを script タグの中へ書いていくことにします。 |
||||
|
|
||||
|
> 確認: |
||||
|
> |
||||
|
> 上のコードで jQuery を読み込んでいますが、これはチュートリアル後半で ajax のコードを簡潔に書きたいだけなので、React を動かすのに必要なものでは**ありません**。 |
||||
|
|
||||
|
### 最初のコンポーネント |
||||
|
|
||||
|
React はすべて、モジュール単位で組み立てられる(composable)コンポーネントからなっています。今回取り上げるコメントボックスの例では、以下のようなコンポーネント構造をとります。 |
||||
|
|
||||
|
``` |
||||
|
- CommentBox |
||||
|
- CommentList |
||||
|
- Comment |
||||
|
- CommentForm |
||||
|
``` |
||||
|
|
||||
|
それではまず `CommentBox` コンポーネントから作っていきましょう。とは言っても単なる `<div>` です。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial1.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
Hello, world! I am a CommentBox. |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
React.render( |
||||
|
<CommentBox />, |
||||
|
document.getElementById('content') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
#### JSX シンタックス |
||||
|
|
||||
|
先程書いた JavaScript の中に、XMLに似たシンタックスがあることに気付いたでしょうか。このシンタックスシュガーは、シンプルなプリコンパイラによって次のような生の JavaScript に変換されます。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial1-raw.js |
||||
|
var CommentBox = React.createClass({displayName: 'CommentBox', |
||||
|
render: function() { |
||||
|
return ( |
||||
|
React.createElement('div', {className: "commentBox"}, |
||||
|
"Hello, world! I am a CommentBox." |
||||
|
) |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
React.render( |
||||
|
React.createElement(CommentBox, null), |
||||
|
document.getElementById('content') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
どちらを採るかは自由ですが、生の JavaScript よりも JSX シンタックスのほうが扱いやすいと考えています。詳しくは [JSX シンタックスの記事](/react/docs/jsx-in-depth.html) を読んでみてください。 |
||||
|
|
||||
|
#### 何をしているのか |
||||
|
|
||||
|
先程のコードでは、とあるメソッドを持った JavaScript オブジェクトを `React.createClass()` に渡しています。これは新しい React コンポーネントを作るためです。このメソッドは `render` と呼ばれており、最終的に HTML へレンダリングされる React コンポーネントのツリーを返す点が肝になります。 |
||||
|
|
||||
|
コードに書いた `<div>` タグは実際の DOM ノードではありません。これは React の `div` コンポーネントのインスタンスです。 これらは React が理解できるマーカーやデータの一部だと見なせます。React は **安全** です。デフォルトで XSS 対策を行っているので、HTML 文字列を生成することはありません。 |
||||
|
|
||||
|
実際の HTML を返す必要はありません。 自分が(もしくは他の誰かが)組み立てたコンポーネントツリーを返せばいいのです。 これこそ React が **composable**な(組み立てられる)ものである理由であり、この大事なルールを守ればフロントエンドはメンテナンスしやすいものとなります。 |
||||
|
|
||||
|
`React.render()` はまずルートコンポーネントのインスタンスを作り、フレームワークを立ち上げます。そして、第2引数で与えられた実際の DOM 要素にマークアップを挿入します。 |
||||
|
|
||||
|
## コンポーネントの組み立て |
||||
|
|
||||
|
それでは `CommentList` と `CommentForm` の骨組みを作りましょう。繰り返しになりますが、これらはただの `<div>` です。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial2.js |
||||
|
var CommentList = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentList"> |
||||
|
Hello, world! I am a CommentList. |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
var CommentForm = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentForm"> |
||||
|
Hello, world! I am a CommentForm. |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
さて、この新しいコンポーネントを使えるように `CommentBox` コンポーネントを書き直しましょう。 |
||||
|
|
||||
|
```javascript{6-8} |
||||
|
// tutorial3.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList /> |
||||
|
<CommentForm /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
ここで、HTML タグと組み立てているコンポーネントが、どのようにミックスされているかを確認しましょう。 HTML コンポーネントは既定の React コンポーネントですが、自分で定義したもの同士はそれぞれ別物になります。JSX コンパイラは HTML タグを自動的に `React.createElement(tagName)` の式に書き換え、それぞれを別々のものに変換します。これはグローバルの名前空間が汚染させるのを防ぐためです。 |
||||
|
|
||||
|
### Props を使う |
||||
|
|
||||
|
次のステップは `Comment` コンポーネントの作成です。このコンポーネントは、自分の親にあたるコンポーネントから渡されたデータを扱います。親から渡されたデータは、子のコンポーネントで「プロパティ」として利用できます。この「プロパティ」には `this.props` を通してアクセスします。props(プロパティ)を使うと `CommentList` から `Comment` に渡されたデータの読み込み、マークアップのレンダリングが可能になります。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial4.js |
||||
|
var Comment = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="comment"> |
||||
|
<h2 className="commentAuthor"> |
||||
|
{this.props.author} |
||||
|
</h2> |
||||
|
{this.props.children} |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
JSX の内側で(属性値または子要素として)JavaScript の式を波括弧で囲むと、テキストや React コンポーネントをツリーに加えることが出来ます。コンポーネントに渡された属性値には名前が付けられており、`this.props` をキーとしてアクセスできます。また、ネストされた子要素の値は `this.props.children` でアクセスが可能です。 |
||||
|
|
||||
|
### コンポーネントのプロパティ |
||||
|
|
||||
|
さて、これまでに `Comment` コンポーネントを定義しました。これからこのコンポーネントに、コメントの著者名と内容を渡せるようにします。これを実装することで、それぞれ別のコメントに対して同じコードを使い回せるようになります。それでは早速 `CommentList` の中にコメントを追加していきましょう。 |
||||
|
|
||||
|
```javascript{6-7} |
||||
|
// tutorial5.js |
||||
|
var CommentList = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentList"> |
||||
|
<Comment author="Pete Hunt">This is one comment</Comment> |
||||
|
<Comment author="Jordan Walke">This is *another* comment</Comment> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
ここで確認してもらいたいのは、親の `CommentList` コンポーネントから、子の `Comment` コンポーネントにデータが渡されている点です。この例ではまず、*Pete Hunt*(属性値を通して)と *This is one comment*(XML のような子ノードを通して)といったデータを `Comment` コンポーネントに渡しています。少し前に確認した通り、`Comment` コンポーネントからこれらの「プロパティ」にアクセスするには、`this.props.author` と `this.props.children` を使います。 |
||||
|
|
||||
|
### Markdown の追加 |
||||
|
|
||||
|
Markdown はインラインでテキストをフォーマットする簡単な記法です。例えば、テキストをアスタリスクで挟むと強調されて表示されます。 |
||||
|
|
||||
|
まず最初に、サードパーティ製の **Showdown** ライブラリをアプリケーションに追加します。 Showdown は Markdown テキストを生の HTML に変換する JavaScript ライブラリです。 既にある head タグの内側に script タグを書き込み、以下のように Showdown を読み込ませます。 |
||||
|
|
||||
|
```html{7} |
||||
|
<!-- index.html --> |
||||
|
<head> |
||||
|
<title>Hello React</title> |
||||
|
<script src="https://fb.me/react-{{site.react_version}}.js"></script> |
||||
|
<script src="https://fb.me/JSXTransformer-{{site.react_version}}.js"></script> |
||||
|
<script src="https://code.jquery.com/jquery-1.10.0.min.js"></script> |
||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/0.3.1/showdown.min.js"></script> |
||||
|
</head> |
||||
|
``` |
||||
|
|
||||
|
次に、Markdown で書かれたコメントを変換して出力してみましょう。 |
||||
|
|
||||
|
```javascript{2,10} |
||||
|
// tutorial6.js |
||||
|
var converter = new Showdown.converter(); |
||||
|
var Comment = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="comment"> |
||||
|
<h2 className="commentAuthor"> |
||||
|
{this.props.author} |
||||
|
</h2> |
||||
|
{converter.makeHtml(this.props.children.toString())} |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
このコードでは Showdown のライブラリを呼び出すことしかしていません。`this.props.children` は React によってラップされたテキストですが、これを Showdown が理解できる生の文字列に変換する必要があります。そのため、上のコードでは明示的に `toString()` を呼び出しているのです。 |
||||
|
|
||||
|
しかし問題があります!ブラウザがレンダリングしたコメントは次のように表示されているはずです -- "`<p>`This is `<em>`another`</em>` comment`</p>`" このようなタグは実際に HTML としてレンダリングさせたいですね。 |
||||
|
|
||||
|
このような現象が起きるのは React が XSS 攻撃に対する防御を行っているからです。これを回避する方法はありますが、それを使うときにはフレームワークが警告をします。 |
||||
|
|
||||
|
```javascript{5,11} |
||||
|
// tutorial7.js |
||||
|
var converter = new Showdown.converter(); |
||||
|
var Comment = React.createClass({ |
||||
|
render: function() { |
||||
|
var rawMarkup = converter.makeHtml(this.props.children.toString()); |
||||
|
return ( |
||||
|
<div className="comment"> |
||||
|
<h2 className="commentAuthor"> |
||||
|
{this.props.author} |
||||
|
</h2> |
||||
|
<span dangerouslySetInnerHTML={{"{{"}}__html: rawMarkup}} /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
これは特別な API であり、生の HTML が挿入されにくくなるよう意図的に作ったものです。しかし、ここでは Showdown のためにこのバックドアを利用しています。 |
||||
|
|
||||
|
**注意:** この機能を使うことで、Showdown は安全なものと信頼することになります。 |
||||
|
|
||||
|
### データモデルとの連携 |
||||
|
|
||||
|
これまではソースコードにコメントを直に書き込んでいました。その代わりに、これからは JSON の blob データをコメントリストにレンダリングしてみましょう。サーバからデータを取得するのが最後の目標ですが、とりあえず今はソースコードの中にデータを書いておくことにします。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial8.js |
||||
|
var data = [ |
||||
|
{author: "Pete Hunt", text: "This is one comment"}, |
||||
|
{author: "Jordan Walke", text: "This is *another* comment"} |
||||
|
]; |
||||
|
``` |
||||
|
|
||||
|
このデータはモジュールを使って `CommentList` に取り込む必要があります。`CommentBox` の `React.render()` の部分を手直しして、props を通してデータが `CommentList` へ渡るようにしましょう。 |
||||
|
|
||||
|
```javascript{7,15} |
||||
|
// tutorial9.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.props.data} /> |
||||
|
<CommentForm /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
React.render( |
||||
|
<CommentBox data={data} />, |
||||
|
document.getElementById('content') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
こうして `CommentList` がデータを扱えるようになりました。それでは、コメントを動的にレンダリングしてみましょう。 |
||||
|
|
||||
|
```javascript{4-10,13} |
||||
|
// tutorial10.js |
||||
|
var CommentList = React.createClass({ |
||||
|
render: function() { |
||||
|
var commentNodes = this.props.data.map(function (comment) { |
||||
|
return ( |
||||
|
<Comment author={comment.author}> |
||||
|
{comment.text} |
||||
|
</Comment> |
||||
|
); |
||||
|
}); |
||||
|
return ( |
||||
|
<div className="commentList"> |
||||
|
{commentNodes} |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
これだけ! |
||||
|
|
||||
|
### サーバからのデータの取得 |
||||
|
|
||||
|
続いて、ハードコーディングしていたデータを、サーバからの動的なデータに置き換えてみましょう。 |
||||
|
|
||||
|
```javascript{3} |
||||
|
// tutorial11.js |
||||
|
React.render( |
||||
|
<CommentBox url="comments.json" />, |
||||
|
document.getElementById('content') |
||||
|
); |
||||
|
``` |
||||
|
|
||||
|
このコンポーネントは自身を再びレンダリングすることになるので、これまでのコンポーネントとは異なります。レスポンスがサーバから返ってくると、送られてきた新しいコメントをコンポーネントがレンダリングすることになります。ですが、その時点までコンポーネントには何もデータがないはずです。 |
||||
|
|
||||
|
### Reactive state |
||||
|
|
||||
|
これまで、それぞれのコンポーネントは自身の props の値を用いて、一度だけレンダリングしていました。`props` はイミュータブルです。つまり、props は親から渡されますが、同時に props は親の「所有物」なのです。データが相互にやり取りされるのを実現するため、ここでミュータブルな **state**(状態)をコンポーネントに取り入れましょう。コンポーネントは `this.state` というプライベートな値を持ち、`this.setState()` を呼び出すことで state を更新することが出来ます。コンポーネントの state が更新されれば、そのコンポーネントは自身を再びレンダリングし直します。 |
||||
|
|
||||
|
`render()` メソッドは `this.props` や `this.state` と同じく宣言的に書かれています。このフレームワークによって、UI と入力が常に一致するようになります。 |
||||
|
|
||||
|
サーバがデータを集めてくれば、今あるコメントのデータを更新することになるかもしれません。state を表すコメントのデータの配列を `CommentBox` コンポーネントに加えましょう。 |
||||
|
|
||||
|
```javascript{3-5,10} |
||||
|
// tutorial12.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
`getInitialState()` メソッドはコンポーネントのライフサイクル内で一回だけ実行され、コンポーネントの state における初期値を設定します。 |
||||
|
|
||||
|
#### State の更新 |
||||
|
コンポーネントの作成と同時に、サーバから JSON データを GET で取得し、state を更新して最新のデータを反映させてみましょう。実際のアプリケーションでは動的なエンドポイントになるでしょうが、今回の例では話を簡単にするため、以下の静的な JSON ファイルを使います。 |
||||
|
|
||||
|
```javascript |
||||
|
// tutorial13.json |
||||
|
[ |
||||
|
{"author": "Pete Hunt", "text": "This is one comment"}, |
||||
|
{"author": "Jordan Walke", "text": "This is *another* comment"} |
||||
|
] |
||||
|
``` |
||||
|
|
||||
|
サーバへの非同期リクエストを作るため、ここでは jQuery を使います。 |
||||
|
|
||||
|
注意: ここからは AJAX アプリケーションを作っていくので、自分のファイルシステム上ではなく Web サーバを使ってアプリを作る必要があります。残りのチュートリアルに必要な機能は [冒頭で紹介した](#running-a-server) サーバに含まれています。ソースコードは [GitHub に](https://github.com/reactjs/react-tutorial/)用意してあります。 |
||||
|
|
||||
|
```javascript{6-17} |
||||
|
// tutorial13.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
componentDidMount: function() { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
さて、`componentDidMount` はコンポーネントがレンダリングされたときに React が自動的に呼び出すメソッドです。動的な更新の鍵となるのは `this.setState()` の呼び出し方です。ここでは、古いコメントの配列をサーバから取ってきた新しい配列に置き換え、UI を自動的に更新させてみましょう。このような reactivity(反応性・柔軟性)のおかげで、リアルタイム更新を最小限にすることが出来ます。次のコードではシンプルなポーリングをしていますが、WebSockets や他の方法でも簡単に実現できます。 |
||||
|
|
||||
|
```javascript{3,14,19-20,34} |
||||
|
// tutorial14.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
loadCommentsFromServer: function() { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
componentDidMount: function() { |
||||
|
this.loadCommentsFromServer(); |
||||
|
setInterval(this.loadCommentsFromServer, this.props.pollInterval); |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
React.render( |
||||
|
<CommentBox url="comments.json" pollInterval={2000} />, |
||||
|
document.getElementById('content') |
||||
|
); |
||||
|
|
||||
|
``` |
||||
|
|
||||
|
ここまでに、AJAX を呼び出す部分を別のメソッド内に移動させました。加えて、コンポーネントが最初に読み込まれてから2秒ごとに AJAX のメソッドが呼び出されるようにしました。ぜひ自分のブラウザで実行させて、`comments.json` ファイルに変更を加えてみてください。2秒以内に表示が更新されるはずです! |
||||
|
|
||||
|
### 新しいコメントの追加 |
||||
|
|
||||
|
いよいよフォームを作る段階に来ました。ここで `CommentForm` コンポーネントは、ユーザに自分の名前とコメントの内容を入力させ、コメントを保存させるためにサーバへリクエストを送る役割を果たすことになります。 |
||||
|
|
||||
|
```javascript{5-9} |
||||
|
// tutorial15.js |
||||
|
var CommentForm = React.createClass({ |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<form className="commentForm"> |
||||
|
<input type="text" placeholder="Your name" /> |
||||
|
<input type="text" placeholder="Say something..." /> |
||||
|
<input type="submit" value="Post" /> |
||||
|
</form> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
それでは、フォームを使ってデータをやり取りできるようにしましょう。ユーザがフォームから送信したら、フォームをクリアしてサーバにリクエストを送り、コメントリストをリフレッシュすることになります。まず手始めに、フォームからの送信イベントを受け取ってフォームをクリアできるようにしましょう。 |
||||
|
|
||||
|
```javascript{3-13,16-19} |
||||
|
// tutorial16.js |
||||
|
var CommentForm = React.createClass({ |
||||
|
handleSubmit: function(e) { |
||||
|
e.preventDefault(); |
||||
|
var author = React.findDOMNode(this.refs.author).value.trim(); |
||||
|
var text = React.findDOMNode(this.refs.text).value.trim(); |
||||
|
if (!text || !author) { |
||||
|
return; |
||||
|
} |
||||
|
// TODO: サーバにリクエストを送信 |
||||
|
React.findDOMNode(this.refs.author).value = ''; |
||||
|
React.findDOMNode(this.refs.text).value = ''; |
||||
|
return; |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<form className="commentForm" onSubmit={this.handleSubmit}> |
||||
|
<input type="text" placeholder="Your name" ref="author" /> |
||||
|
<input type="text" placeholder="Say something..." ref="text" /> |
||||
|
<input type="submit" value="Post" /> |
||||
|
</form> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
##### イベント |
||||
|
|
||||
|
React がコンポーネントにイベントハンドラを登録する際は camelCase の命名規則に従います。上のコードではフォームに `onSubmit` ハンドラを登録し、フォームから妥当な入力が送信されたらフォームをクリアするようになっています。 |
||||
|
|
||||
|
また `preventDefault()` を呼び出しているので、フォームからの送信に対してブラウザのデフォルト処理が反応することはありません。 |
||||
|
|
||||
|
##### Refs |
||||
|
|
||||
|
先程のコードでは `ref` 属性値を使って子のコンポーネントに名前を付けており、`this.ref` でそのコンポーネントを参照しています。`React.findDOMNode(component)` にコンポーネントを指定して呼び出すことで、ブラウザの持つ実際の DOM 要素を取得することが出来ます。 |
||||
|
|
||||
|
##### Props としてのコールバック |
||||
|
|
||||
|
ユーザがコメントを送信したら、コメントリストをリフレッシュして新しいリストを読み込むことになります。コメントリストを表す state を保持しているのは `CommentBox` なので、必要なロジックは `CommentBox` の中に書くのが筋でしょう。 |
||||
|
|
||||
|
ここでは子のコンポーネントから親に向かって、いつもとは逆方向にデータを返す必要があります。まず、親のコンポーネントに新しいコールバック関数(`handleCommentSubmit`)を定義します。続いて `render` メソッド内にある子のコンポーネントにコールバックを渡すことで、`onCommentSubmit` イベントとコールバックを結び付けています。こうすることで、イベントが発生するたびにコールバックが呼び出されます。 |
||||
|
|
||||
|
```javascript{15-17,30} |
||||
|
// tutorial17.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
loadCommentsFromServer: function() { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
handleCommentSubmit: function(comment) { |
||||
|
// TODO: サーバに送信、リストをリフレッシュ |
||||
|
}, |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
componentDidMount: function() { |
||||
|
this.loadCommentsFromServer(); |
||||
|
setInterval(this.loadCommentsFromServer, this.props.pollInterval); |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm onCommentSubmit={this.handleCommentSubmit} /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
それでは、ユーザがフォームから送信したら `CommentForm` がコールバックを呼び出せるようにしましょう。 |
||||
|
|
||||
|
```javascript{10} |
||||
|
// tutorial18.js |
||||
|
var CommentForm = React.createClass({ |
||||
|
handleSubmit: function(e) { |
||||
|
e.preventDefault(); |
||||
|
var author = React.findDOMNode(this.refs.author).value.trim(); |
||||
|
var text = React.findDOMNode(this.refs.text).value.trim(); |
||||
|
if (!text || !author) { |
||||
|
return; |
||||
|
} |
||||
|
this.props.onCommentSubmit({author: author, text: text}); |
||||
|
React.findDOMNode(this.refs.author).value = ''; |
||||
|
React.findDOMNode(this.refs.text).value = ''; |
||||
|
return; |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<form className="commentForm" onSubmit={this.handleSubmit}> |
||||
|
<input type="text" placeholder="Your name" ref="author" /> |
||||
|
<input type="text" placeholder="Say something..." ref="text" /> |
||||
|
<input type="submit" value="Post" /> |
||||
|
</form> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
こうしてコールバックが出来たので、あとはサーバにコメントを送信してリストをリフレッシュすれば完璧です。 |
||||
|
|
||||
|
```javascript{16-27} |
||||
|
// tutorial19.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
loadCommentsFromServer: function() { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
handleCommentSubmit: function(comment) { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
type: 'POST', |
||||
|
data: comment, |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
componentDidMount: function() { |
||||
|
this.loadCommentsFromServer(); |
||||
|
setInterval(this.loadCommentsFromServer, this.props.pollInterval); |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm onCommentSubmit={this.handleCommentSubmit} /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
### 最適化: 先読み更新 |
||||
|
|
||||
|
アプリケーションに必要な機能は一通り実装できました。しかし、フォームからコメントを送信しても、サーバからのレスポンスが来るまで自分のコメントはリストに載らないため、アプリの動作は遅く感じます。ここでは、送信したコメントをリストに先読みさせて、アプリの体感速度をアップさせましょう。 |
||||
|
|
||||
|
```javascript{16-18} |
||||
|
// tutorial20.js |
||||
|
var CommentBox = React.createClass({ |
||||
|
loadCommentsFromServer: function() { |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
handleCommentSubmit: function(comment) { |
||||
|
var comments = this.state.data; |
||||
|
var newComments = comments.concat([comment]); |
||||
|
this.setState({data: newComments}); |
||||
|
$.ajax({ |
||||
|
url: this.props.url, |
||||
|
dataType: 'json', |
||||
|
type: 'POST', |
||||
|
data: comment, |
||||
|
success: function(data) { |
||||
|
this.setState({data: data}); |
||||
|
}.bind(this), |
||||
|
error: function(xhr, status, err) { |
||||
|
console.error(this.props.url, status, err.toString()); |
||||
|
}.bind(this) |
||||
|
}); |
||||
|
}, |
||||
|
getInitialState: function() { |
||||
|
return {data: []}; |
||||
|
}, |
||||
|
componentDidMount: function() { |
||||
|
this.loadCommentsFromServer(); |
||||
|
setInterval(this.loadCommentsFromServer, this.props.pollInterval); |
||||
|
}, |
||||
|
render: function() { |
||||
|
return ( |
||||
|
<div className="commentBox"> |
||||
|
<h1>Comments</h1> |
||||
|
<CommentList data={this.state.data} /> |
||||
|
<CommentForm onCommentSubmit={this.handleCommentSubmit} /> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
}); |
||||
|
``` |
||||
|
|
||||
|
### おめでとう! |
||||
|
|
||||
|
シンプルな手順を追ううちにコメントボックスを作ることが出来ました。さらに詳しいことは[なぜ React を使うのか](/react/docs/why-react.html)を読んだり、[API リファレンス](/react/docs/top-level-api.html)を開いたりしてハッキングを始めましょう!幸運を祈ります! |
Loading…
Reference in new issue