1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/stores/piece_list_store.js
2015-05-21 12:12:25 +02:00

24 lines
642 B
JavaScript

import alt from '../alt';
import PieceListActions from '../actions/piece_list_actions';
class PieceListStore {
constructor() {
this.itemList = []; // rename this to pieceList after figuring out AltContainer transform
this.page = 1;
this.pageSize = 10;
this.search = "";
this.orderBy = "artist_name";
this.orderAsc = true;
this.bindActions(PieceListActions);
}
onUpdatePieceList({ itemList, orderBy, orderAsc }) {
this.orderAsc = orderAsc;
this.orderBy = orderBy;
this.itemList = itemList;
}
};
export default alt.createStore(PieceListStore);