2015-05-19 17:13:09 +02:00
|
|
|
import alt from '../alt';
|
|
|
|
import PieceListActions from '../actions/piece_list_actions';
|
|
|
|
|
2015-05-20 16:44:45 +02:00
|
|
|
|
2015-05-19 17:13:09 +02:00
|
|
|
class PieceListStore {
|
|
|
|
constructor() {
|
2015-05-20 14:48:57 +02:00
|
|
|
this.itemList = []; // rename this to pieceList after figuring out AltContainer transform
|
2015-05-21 12:12:25 +02:00
|
|
|
this.page = 1;
|
|
|
|
this.pageSize = 10;
|
|
|
|
this.search = "";
|
|
|
|
this.orderBy = "artist_name";
|
|
|
|
this.orderAsc = true;
|
2015-05-19 17:13:09 +02:00
|
|
|
this.bindActions(PieceListActions);
|
|
|
|
}
|
|
|
|
|
2015-05-21 17:54:27 +02:00
|
|
|
onUpdatePieceList({ page, pageSize, search, itemList, orderBy, orderAsc }) {
|
|
|
|
console.log('onUpdatePieceList', arguments);
|
|
|
|
this.page = page;
|
|
|
|
this.pageSize = pageSize;
|
|
|
|
this.search = search;
|
2015-05-21 12:12:25 +02:00
|
|
|
this.orderAsc = orderAsc;
|
|
|
|
this.orderBy = orderBy;
|
2015-05-20 14:48:57 +02:00
|
|
|
this.itemList = itemList;
|
2015-05-19 17:13:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default alt.createStore(PieceListStore);
|