mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
27 lines
627 B
JavaScript
27 lines
627 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
import PieceActions from '../actions/piece_actions';
|
|
|
|
|
|
class PieceStore {
|
|
constructor() {
|
|
this.piece = {};
|
|
this.bindActions(PieceActions);
|
|
}
|
|
|
|
onUpdatePiece(piece) {
|
|
this.piece = piece;
|
|
}
|
|
|
|
onUpdateProperty({key, value}) {
|
|
if(this.piece && key in this.piece) {
|
|
this.piece[key] = value;
|
|
} else {
|
|
throw new Error('There is no piece defined in PieceStore or the piece object does not have the property you\'re looking for.');
|
|
}
|
|
}
|
|
}
|
|
|
|
export default alt.createStore(PieceStore, 'PieceStore');
|