1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-05 11:25:09 +01:00
onion/js/stores/piece_list_store.js

28 lines
809 B
JavaScript
Raw Normal View History

import alt from '../alt';
import PieceListActions from '../actions/piece_list_actions';
2015-05-20 16:44:45 +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;
this.bindActions(PieceListActions);
}
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;
}
};
export default alt.createStore(PieceListStore);