1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 13:41:57 +02:00
onion/js/stores/piece_store.js

19 lines
329 B
JavaScript
Raw Normal View History

'use strict';
2015-05-26 10:41:41 +02:00
import alt from '../alt';
2015-06-08 18:14:25 +02:00
import PieceActions from '../actions/piece_actions';
2015-05-26 10:41:41 +02:00
class PieceStore {
constructor() {
2015-05-26 13:33:35 +02:00
this.piece = {};
2015-06-08 18:14:25 +02:00
this.bindActions(PieceActions);
2015-05-26 10:41:41 +02:00
}
onUpdatePiece(piece) {
this.piece = piece;
}
2015-05-26 13:33:35 +02:00
}
2015-05-26 10:41:41 +02:00
2015-06-15 08:44:44 +02:00
export default alt.createStore(PieceStore, 'PieceStore');