React環境->React Router->Redux-Saga->SuperAgent に Bootstrapを適用する

Reactアプリのスケルトン作成を目指して、一歩一歩。

  1. React 開発の全体像を把握しつつ開発環境を整える
  2. React の単純なサンプルに React Router を適用する
  3. React の単純なサンプルに React Router を組み込んだものに Redux-Saga を適用する
  4. React の単純なサンプルに React Router を組み込んだものに Redux-Saga を適用したものからAjax通信を組み込む

Bootstrap を Reactから利用できるようにする、React-Bootstrap を導入する。

1.インストール

Bootstrapは、jQueryに依存しているが、ここでjQueryを導入してしまうと、jQueryのDOM操作とかは不要なので、Ajax通信のみのSuperAgentを導入したのに、なんだかなぁな感じになってしまうところだが、、、

https://react-bootstrap.github.io/getting-started.html

React-Bootstrap is a complete re-implementation of the Bootstrap components using React. It has no dependency on either bootstrap.js or jQuery. If you have React setup and React-Bootstrap installed you have everything you need.
You can consume the library as CommonJS modules, ES6 modules via Babel, AMD, or as a global JS script.

React-Bootstrapでは、Reactを使用して、Bootstrapコンポーネントを完全に再実装しているとのこと。bootstrap.js にも、jQueryにも依存していなくて、React と React-Bootstrapをインストールすれば、十分らしい。安心してインストール!

  1. npm install --save react-bootstrap

2.実装

ということで、上記 Ajax通信を組み込んだ状態に、変更を加えてみる。

https://github.com/pppiroto/react_get_start/releases

/index.html

チュートリアルに従い、HTMLから、CSSを CDNを参照するように指定する。

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- Latest compiled and minified CSS -->
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
  7. <!-- Optional theme -->
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css">
  9. <title>Reac Get Start</title>
  10. </head>
  11. <body>
  12. <div id="root"></div>
  13. <script src="./dist/bundle.js"></script>
  14. </body>
  15. </html>

/container/app.js

react-bootstrap から、Grid, Row, Col をインポートして、Bootstrapの グリッドレイアウトを記述できる。これはわかりよい!

また、button –> Button とすることで、Bootstrap のボタンに変更。

  Nav、NavItem と、React-Router の Link コンポーネントをどう合わせて利用したらよいのかが、課題。そもそも、Reactコンポーネントを合成することができるのか?

<Nav btStyle=”tabs”>

    <NavItem><Link to=”..”>hoge</Link></NaviItem>

</Nav>

とすると、タブのうち、文字の部分がハイパーリンクになって、そこを選択しないと(タブ全体ではだめ) 遷移しない。。。

とりあえず、UL に css class を適用すると機能はしているが、、、

  1. import React, { Component } from 'react';
  2. import { BrowserRouter, Route, Link } from 'react-router-dom';
  3. import { connect } from 'react-redux';
  4. import { withRouter } from 'react-router-dom'
  5. import { helloAction, helloApiAction } from '../actions';
  6. import {
  7. Grid, Row, Col,
  8. Button, ButtonToolbar,
  9. Nav, NavItem,
  10. Alert
  11. } from 'react-bootstrap';
  12.  
  13. class Home extends Component {
  14. handleMessage() {
  15. this.props.dispatch(helloAction('Yes'));
  16. }
  17. handleMessageApi(event) {
  18. this.props.dispatch(helloApiAction({ id: event.target.name }));
  19. }
  20. render() {
  21. return (
  22. <div>
  23. <h2>Home</h2>
  24. <Alert bsStyle="info">{this.props.hello}</Alert>
  25. <ButtonToolbar>
  26. <Button onClick={this.handleMessage.bind(this)} >Hello</Button>
  27. <Button bsStyle="primary" name="successurl" onClick={this.handleMessageApi.bind(this)} >API(Sucess)</Button>
  28. <Button bsStyle="danger" name="failurl" onClick={this.handleMessageApi.bind(this)} >API(Fail)</Button>
  29. </ButtonToolbar>
  30. </div>
  31. );
  32. }
  33. }
  34.  
  35. const About = () => (
  36. <div><h2>About</h2></div>
  37. )
  38. const Topics = () => (
  39. <div><h2>Topics</h2></div>
  40. )
  41.  
  42. class App extends Component {
  43. render() {
  44. return (
  45. <BrowserRouter>
  46. <Grid>
  47. <Row className="show-grid">
  48. <Col xs={12}>
  49. <ul className="nav nav-tabs">
  50. <li><Link to="/">Home</Link></li>
  51. <li><Link to="/about">About</Link></li>
  52. <li><Link to="/topics">Topics</Link></li>
  53. </ul>
  54. </Col>
  55. </Row>
  56. <Row className="show-grid">
  57. <Col xs={8}>
  58. {/* http://qiita.com/kuy/items/869aeb7b403ea7a8fd8a */}
  59. <Route exact path="/" component={connect(state => state)(Home)} />
  60. <Route exact path="/about" component={About} />
  61. <Route exact path="/topics" component={Topics} />
  62. </Col>
  63. </Row>
  64. </Grid>
  65. </BrowserRouter>
  66. );
  67. }
  68. }
  69.  
  70. // http://qiita.com/MegaBlackLabel/items/df868e734d199071b883#_reference-863a1e1485bf47f046e5
  71. function mapStateToProps(state) {
  72. return {
  73. message:state.hello
  74. };
  75. }
  76.  
  77. // https://stackoverflow.com/questions/43350683/react-router-uncaught-typeerror-cannot-read-property-route-of-undefined
  78. // export default withRouter(connect(mapStateToProps)(App))
  79. export default connect(state => state)(App)

3.実行

実行したところ。Bootstrap UI になったよ~

react_bootstrap01

よし。次。

Follow me!

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です