Last active
October 1, 2015 14:19
-
-
Save mattdell/45c7e5a77b418db6b90d to your computer and use it in GitHub Desktop.
React Demo 5 - Components
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ProductCategoryRow = React.createClass({ | |
render: function() { | |
return (<tr><th colSpan="2">{this.props.category}</th></tr>); | |
} | |
}); | |
var ProductRow = React.createClass({ | |
render: function() { | |
var name = this.props.product.stocked ? | |
this.props.product.name : | |
<span style={{color: 'red'}}> | |
{this.props.product.name} | |
</span>; | |
return ( | |
<tr> | |
<td>{name}</td> | |
<td>{this.props.product.price}</td> | |
</tr> | |
); | |
} | |
}); | |
var ProductTable = React.createClass({ | |
render: function() { | |
var rows = []; | |
var lastCategory = null; | |
this.props.products.forEach(function(product) { | |
if (product.name.indexOf(this.props.filterText) === -1 || (!product.stocked && this.props.inStockOnly)) { | |
return; | |
} | |
if (product.category !== lastCategory) { | |
rows.push(<ProductCategoryRow category={product.category} key={product.category} />); | |
} | |
rows.push(<ProductRow product={product} key={product.name} />); | |
lastCategory = product.category; | |
}.bind(this)); | |
return ( | |
<table> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Price</th> | |
</tr> | |
</thead> | |
<tbody>{rows}</tbody> | |
</table> | |
); | |
} | |
}); | |
var SearchBar = React.createClass({ | |
render: function() { | |
return ( | |
<form> | |
<input type="text" placeholder="Search..." value={this.props.filterText} /> | |
<p> | |
<input type="checkbox" checked={this.props.inStockOnly} /> | |
{' '} | |
Only show products in stock | |
</p> | |
</form> | |
); | |
} | |
}); | |
var FilterableProductTable = React.createClass({ | |
getInitialState: function() { | |
return { | |
filterText: '', | |
inStockOnly: false | |
}; | |
}, | |
render: function() { | |
return ( | |
<div> | |
<SearchBar | |
filterText={this.state.filterText} | |
inStockOnly={this.state.inStockOnly} | |
/> | |
<ProductTable | |
products={this.props.products} | |
filterText={this.state.filterText} | |
inStockOnly={this.state.inStockOnly} | |
/> | |
</div> | |
); | |
} | |
}); | |
var PRODUCTS = [ | |
{category: 'Sporting Goods', price: '$49.99', stocked: true, name: 'Football'}, | |
{category: 'Sporting Goods', price: '$9.99', stocked: true, name: 'Baseball'}, | |
{category: 'Sporting Goods', price: '$29.99', stocked: false, name: 'Basketball'}, | |
{category: 'Electronics', price: '$99.99', stocked: true, name: 'iPod Touch'}, | |
{category: 'Electronics', price: '$399.99', stocked: false, name: 'iPhone 5'}, | |
{category: 'Electronics', price: '$199.99', stocked: true, name: 'Nexus 7'} | |
]; | |
React.render(<FilterableProductTable products={PRODUCTS} />, document.body); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment