Created
January 22, 2018 12:53
-
-
Save shafayeatsumit/3b02e98461b99cce1a050663df8ff28d to your computer and use it in GitHub Desktop.
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
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
class ProductCategoryRow extends React.Component { | |
render() { | |
const category = this.props.category; | |
return ( | |
<tr> | |
<th colSpan="2"> | |
{category} | |
</th> | |
</tr> | |
); | |
} | |
} | |
class ProductRow extends React.Component { | |
render() { | |
const product = this.props.product; | |
const name = product.stocked ? | |
product.name : | |
<span style={{color: 'red'}}> | |
{product.name} | |
</span>; | |
return ( | |
<tr> | |
<td>{name}</td> | |
<td>{product.price}</td> | |
</tr> | |
); | |
} | |
} | |
class ProductTable extends React.Component { | |
render() { | |
const filterText = this.props.filterText; | |
const inStockOnly = this.props.inStockOnly; | |
const rows = []; | |
let lastCategory = null; | |
this.props.products.forEach((product) => { | |
if (product.name.indexOf(filterText) === -1) { | |
return; | |
} | |
if (inStockOnly && !product.stocked) { | |
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; | |
}); | |
return ( | |
<table> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Price</th> | |
</tr> | |
</thead> | |
<tbody>{rows}</tbody> | |
</table> | |
); | |
} | |
} | |
class SearchBar extends React.Component { | |
constructor(props) { | |
super(props); | |
this.handleFilterTextChange = this.handleFilterTextChange.bind(this); | |
this.handleInStockChange = this.handleInStockChange.bind(this); | |
} | |
handleFilterTextChange(e) { | |
this.props.onFilterTextChange(e.target.value); | |
} | |
handleInStockChange(e) { | |
this.props.onInStockChange(e.target.checked); | |
} | |
render() { | |
return ( | |
<form> | |
<input | |
type="text" | |
placeholder="Search..." | |
value={this.props.filterText} | |
onChange={this.handleFilterTextChange} | |
/> | |
<p> | |
<input | |
type="checkbox" | |
checked={this.props.inStockOnly} | |
onChange={this.handleInStockChange} | |
/> | |
{' '} | |
Only show products in stock | |
</p> | |
</form> | |
); | |
} | |
} | |
class FilterableProductTable extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
filterText: '', | |
inStockOnly: false | |
}; | |
this.handleFilterTextChange = this.handleFilterTextChange.bind(this); | |
this.handleInStockChange = this.handleInStockChange.bind(this); | |
} | |
handleFilterTextChange(filterText) { | |
this.setState({ | |
filterText: filterText | |
}); | |
} | |
handleInStockChange(inStockOnly) { | |
this.setState({ | |
inStockOnly: inStockOnly | |
}) | |
} | |
render() { | |
return ( | |
<div> | |
<SearchBar | |
filterText={this.state.filterText} | |
inStockOnly={this.state.inStockOnly} | |
onFilterTextChange={this.handleFilterTextChange} | |
onInStockChange={this.handleInStockChange} | |
/> | |
<ProductTable | |
products={this.props.products} | |
filterText={this.state.filterText} | |
inStockOnly={this.state.inStockOnly} | |
/> | |
</div> | |
); | |
} | |
} | |
const 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'} | |
]; | |
ReactDOM.render( | |
<FilterableProductTable products={PRODUCTS} />, | |
document.getElementById('root') | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment