sidebar design implemented on search by category and by section page

This commit is contained in:
Edin Dazdarevic
2015-04-19 15:58:08 +02:00
parent 2f809cfbcf
commit 0cdf57d4a9
4 changed files with 123 additions and 98 deletions

View File

@@ -61,9 +61,9 @@ var ByCategory = React.createClass({
var self = this;
return (
<div>
<div className='col-md-2'>
<div className='h4'>{this.state.category.get('name')}</div>
<div>Podkategorije</div>
<div
style={{height: "100%"}}
className="col-lg-2 col-md-2 col-sm-4 col-xs-4 sidebar ">
<ul>
{(this.state.category.get('sub_categories') || []).map(function(sc) {
return (<li> <a onClick={self.onSCClick.bind(self, sc)}>{sc.name}</a></li>)
@@ -71,10 +71,12 @@ var ByCategory = React.createClass({
</ul>
<FilterCriteriaSelector filterCriterias={this.state.category.get('filter_criterias')} onFCClick={this.onFCClick} />
</div>
<div className='col-md-10'>
<div
style={{height: "100%"}}
className="col-lg-10 col-md-10 col-sm-8 col-xs-8 ">
<LinkBanner locationName="category" locationId={Number(this.getParams().id)} />
@@ -82,7 +84,7 @@ var ByCategory = React.createClass({
Number of items in this category: {this.state.items.length}
<div>
<AppliedFiltersList filters={this.appliedCategoryFiltersArray()} onRemove={self.removeAppliedFilter} />
</div>

View File

@@ -1,100 +1,121 @@
var React = require('react'),
Router = require('react-router'),
ItemActions = require('../../actions/itemActions.js'),
ItemStore = require('../../stores/itemStore'),
NavigationStore = require('../../stores/navigationStore'),
ItemList = require('../items/itemList'),
ItemCollection = require('../../models/itemCollection'),
SectionStore = require('../../stores/sectionStore'),
SectionActions = require('../../actions/sectionActions.js'),
NavigationActions = require('../../actions/navigationActions'),
Section = require('../../models/section'),
LinkBanner = require('../linkBanner/linkBanner'),
Category = require('../../models/category');
Router = require('react-router'),
ItemActions = require('../../actions/itemActions.js'),
ItemStore = require('../../stores/itemStore'),
NavigationStore = require('../../stores/navigationStore'),
ItemList = require('../items/itemList'),
ItemCollection = require('../../models/itemCollection'),
SectionStore = require('../../stores/sectionStore'),
SectionActions = require('../../actions/sectionActions.js'),
NavigationActions = require('../../actions/navigationActions'),
Section = require('../../models/section'),
LinkBanner = require('../linkBanner/linkBanner'),
Category = require('../../models/category');
var BySection = React.createClass({
mixins: [Router.State],
getInitialState : function() {
return {
items: (new ItemCollection()),
section : (new Section())
};
},
render : function() {
var s ={ float: 'left'};
var self = this;
return ( <div>
getInitialState : function() {
return {
items: (new ItemCollection()),
section : (new Section())
};
},
render : function() {
var s ={ float: 'left'};
var self = this;
return (
<div>
<div className='col-md-2'>
Here goes section for refining search, by section
</div>
<div className='col-md-10'>
<LinkBanner locationName="section" locationId={Number(this.getParams().id)} />
<div className='h3'>
Najprodavanije u sekciji {this.state.section.get('name')}
</div>
<ItemList items={this.state.items} />
<div className='h3'>Kategorije</div>
<div>
{(this.state.section.get('categories') || []).map(function(category){
return (
<div style={s}>
<a onClick={self.onCategoryClick.bind(self, category, self.state.section)}>
<img src={category.image_url || 'http://www.windeln.de/resources/img/content/kat_windelnwickeln.jpg'}/>
<div>{category.name}</div>
</a>
<ul>
{category.sub_categories.map(function(sc) {
return (<li>{sc.name}</li>)
})}
</ul>
</div>
)
})}
<div
style={{height: "100%"}}
className="col-lg-2 col-md-2 col-sm-4 col-xs-4 sidebar ">
<ul>
{(this.state.section.get('categories')).map(function(category) {
return (<li><a href="#" onClick={self.onCategoryClick.bind(self, category, self.state.section)}>{category.name}</a></li>)
})}
</ul>
</div>
<div
style={{height: "100%"}}
className="col-lg-10 col-md-10 col-sm-8 col-xs-8 ">
<LinkBanner
locationName="section"
locationId={Number(this.getParams().id)} />
<div className='h3'>
Najprodavanije u sekciji {this.state.section.get('name')}
</div>
<ItemList items={this.state.items} />
{/*
<div className='h3'>Kategorije</div>
<div>
{(this.state.section.get('categories') || []).map(function(category){
return (
<div style={s}>
<a onClick={self.onCategoryClick.bind(self, category, self.state.section)}>
<img src={category.image_url || 'http://www.windeln.de/resources/img/content/kat_windelnwickeln.jpg'}/>
<div>
{category.name}
</div>
</a>
<ul>
{category.sub_categories.map(function(sc) {
return (
<li>
{sc.name}
</li>
)
})}
</ul>
</div>
)
})}
</div>*/}
</div>
</div> )
},
onCategoryClick: function(category, section) {
NavigationActions.goToCategory(new Category(category), section);
},
componentWillReceiveProps: function(nextProps) {
var sectionId = this.getParams().id;
ItemActions.loadBestSellingItemsForSection(sectionId);
SectionActions.loadSectionDetails(sectionId);
},
componentDidMount: function() {
console.log('mounting....');
var sectionId = this.getParams().id;
ItemActions.loadBestSellingItemsForSection(sectionId);
SectionActions.loadSectionDetails(sectionId);
</div>
)
},
onCategoryClick: function(category, section) {
NavigationActions.goToCategory(new Category(category), section);
SectionStore.addChangeListener(this._onSectionChange);
ItemStore.addChangeListener(this._onChange);
},
componentWillUnmount: function() {
SectionStore.removeChangeListener(this._onSectionChange);
ItemStore.removeChangeListener(this._onChange);
},
_onSectionChange: function() {
if(this.isMounted()) {
this.setState({
section: SectionStore.getSectionDetails()
});
}
},
_onChange: function() {
if(this.isMounted()) {
console.log('items store changed! by section');
this.setState({items: ItemStore.getBestSellingForSection()});
}
},
componentWillReceiveProps: function(nextProps) {
var sectionId = this.getParams().id;
ItemActions.loadBestSellingItemsForSection(sectionId);
SectionActions.loadSectionDetails(sectionId);
},
componentDidMount: function() {
console.log('mounting....');
var sectionId = this.getParams().id;
ItemActions.loadBestSellingItemsForSection(sectionId);
SectionActions.loadSectionDetails(sectionId);
SectionStore.addChangeListener(this._onSectionChange);
ItemStore.addChangeListener(this._onChange);
},
componentWillUnmount: function() {
SectionStore.removeChangeListener(this._onSectionChange);
ItemStore.removeChangeListener(this._onChange);
},
_onSectionChange: function() {
if(this.isMounted()) {
this.setState({
section: SectionStore.getSectionDetails()
});
}
},
_onChange: function() {
if(this.isMounted()) {
console.log('items store changed! by section');
this.setState({items: ItemStore.getBestSellingForSection()});
}
}
});
module.exports = BySection;