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

View File

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

View File

@@ -4,7 +4,8 @@ var Globals = require('../globals');
var Section = Backbone.Model.extend({ var Section = Backbone.Model.extend({
urlRoot : Globals.ApiUrl + '/section', urlRoot : Globals.ApiUrl + '/section',
defaults : { defaults : {
name: '' name: '',
categories: []
} }
}); });

View File

@@ -12,16 +12,16 @@ var sectionState = {
}; };
var loadSections = function() { var loadSections = function() {
var sections = new SectionCollection(); var sections = new SectionCollection();
sections.fetch({success: function() { sections.fetch({success: function() {
sectionState.sections = sections.models; sectionState.sections = sections.models;
// change will be called automatically when // change will be called automatically when
// action is run but we need to emit it again // action is run but we need to emit it again
// when the data arive // when the data arive
// it's a bit "unfluxy" but convenient. // it's a bit "unfluxy" but convenient.
// "true philosophy" would be to run another "data arrived" action // "true philosophy" would be to run another "data arrived" action
SectionStore.emitChange(); SectionStore.emitChange();
}}); }});
}; };
@@ -30,6 +30,7 @@ var loadSectionDetails = function(sectionId) {
section.fetch({ section.fetch({
success: function() { success: function() {
_sectionDetails = section; _sectionDetails = section;
console.log('section details', _sectionDetails);
SectionStore.emitChange(); SectionStore.emitChange();
} }
}); });
@@ -43,7 +44,7 @@ var setHovered = function(id) {
// Extend SectionStore with EventEmitter to add eventing capabilities // Extend SectionStore with EventEmitter to add eventing capabilities
var SectionStore = _.extend({}, EventEmitter.prototype, { var SectionStore = _.extend({}, EventEmitter.prototype, {
// Return Single Item With Details // Return Single Item With Details
getState: function() { getState: function() {
return sectionState; return sectionState;
}, },
@@ -77,7 +78,7 @@ AppDispatcher.register(function(payload) {
// Respond to SELECT_ITEM action // Respond to SELECT_ITEM action
case SectionConstants.LOAD_SECTIONS: case SectionConstants.LOAD_SECTIONS:
loadSections(); loadSections();
break; break;
case SectionConstants.SET_SECTION_HOVER: case SectionConstants.SET_SECTION_HOVER: