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

27 lines
545 B
JavaScript
Raw Normal View History

'use strict';
2015-05-26 10:41:41 +02:00
import alt from '../alt';
import PieceFetcher from '../fetchers/piece_fetcher';
class PieceActions {
constructor() {
this.generateActions(
2015-07-13 18:13:16 +02:00
'updatePiece',
'updateProperty'
2015-05-26 10:41:41 +02:00
);
}
fetchOne(pieceId) {
PieceFetcher.fetchOne(pieceId)
.then((res) => {
this.actions.updatePiece(res.piece);
})
.catch((err) => {
2015-07-17 15:41:09 +02:00
console.logGlobal(err);
2015-05-26 10:41:41 +02:00
});
}
2015-05-26 13:33:35 +02:00
}
2015-05-26 10:41:41 +02:00
export default alt.createActions(PieceActions);