loading best selling items for sections
This commit is contained in:
@@ -8,15 +8,21 @@ var ItemActions = {
|
||||
loadFrontPageItems: function() {
|
||||
AppDispatcher.handleAction({
|
||||
actionType: ItemConstants.LOAD_FOR_FRONTPAGE
|
||||
})
|
||||
});
|
||||
},
|
||||
|
||||
loadItemWithDetails: function() {
|
||||
AppDispatcher.handleAction({
|
||||
actionType: ItemConstants.LOAD_ITEM_WITH_DETAILS,
|
||||
})
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
loadBestSellingItemsForSection: function(sectionId) {
|
||||
AppDispatcher.handleAction({
|
||||
actionType : ItemConstants.LOAD_BSI_FOR_SECTION,
|
||||
sectionId: sectionId
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = ItemActions;
|
||||
module.exports = ItemActions;
|
||||
|
||||
Reference in New Issue
Block a user