react native vol3

8

Click here to load reader

Upload: dcubeio

Post on 16-Apr-2017

150 views

Category:

Engineering


0 download

TRANSCRIPT

Page 1: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 1

React Native vol. 3GraphQL & Relay

Nov. 24, 2016

Page 2: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 2

WHOAMI

Name : Kohei TAKATAGitHub : kohei-takatatwitter : @kohei_takata

Node.js, frontend, Mobile Apps

Page 3: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 3

TODO

1. Introduce GraphQL and Relay

2. Do tutorial of Relay

https://facebook.github.io/relay

3. Rewrite tuts using React Native

Page 4: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 4

GraphQL http://graphql.org/

クエリ言語 created by Facebook Inc.

結果がクエリと同じ形式で返ってくる

エンドポイントは 1 つ

型を持っている。

Page 5: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 5

嬉しいこと

リクエストが 1 回ですむ。

可読性が高い

クライアント側の細かい仕様変更に応じてサーバ側で

API を修正する必要がない

Page 6: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 6

Relay https://facebook.github.io/relay/

データ駆動の React のアプリ開発フレームワーク

created by Facebook Inc.

React のコンポーネントをラップ

UI = view(query(props))

Page 7: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 7

嬉しいこと

データを fetch してコンポーネントに渡す手間が省け

る。

遅延ロード

データの部分取得が可能

Page 8: React native vol3

Copyright © BizReach, Inc. All Right Reserved. 8

Tutorial time

https://facebook.github.io/relay/

git clone https://github.com/relayjs/relay-starter-

kit.git