zoukankan      html  css  js  c++  java
  • [Flux] Component / Views

    The application will dislay a some catalogs, and each catalog has title image, description. 

    Catalog:

    import React from 'react';
    import AppStore from '../stores/app-store';
    import CatalogItem from './app-catalogitem';
    
    function getCatalog(){
      return { items: AppStore.getCatalog() }
    }
    
    class Catalog extends React.Component {
      constructor(){
        super();
        this.state = getCatalog()
      }
      render(){
        let items = this.state.items.map( item => {
          return <CatalogItem key={ item.id } item={ item } />
        });
        return (
          <div className="row">
            { items }
          </div>
        )
      }
    }
    export default Catalog;

    Each Catalog render CatalogItem:

    import React from 'react';
    import AppActions from '../actions/app-actions';
    import CartButton from './app-cart-button';
    
    export default (props) => {
      return (
          <div className="col-xs-6 col-sm-4 col-md-3">
              <h4>{ props.item.title }</h4>
              <img src="http://placehold.it/250x250" width="100%" className="img-responsive"/>
              <p>{ props.item.summary }</p>
              <p>${ props.item.cost }</p>
              <CartButton
                handler={
                  AppActions.addItem.bind(null, props.item)
                }
                txt="Add To Cart"
                />
          </div>
      )
    }

    CartButton handle the click event whcih passed in:

    import React from 'react';
    
    export default (props) => {
      return (
            <button
                className="btn btn-default btn-sm"
                onClick={ props.handler }>
                { props.txt }
            </button>
      )
    }
  • 相关阅读:
    图书排列
    L1-059 敲笨钟 (20 分)
    区间移位
    取球博弈
    poj 2456 Aggressive cows
    对局匹配
    发现环
    数字划分
    哥德巴赫分解
    把数组排成最小的数
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4965854.html
Copyright © 2011-2022 走看看