1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-03 18:35:09 +01:00
onion/js/actions/piece_actions.js

29 lines
628 B
JavaScript
Raw Normal View History

'use strict';
import { alt } from '../alt';
2015-05-26 10:41:41 +02:00
import PieceFetcher from '../fetchers/piece_fetcher';
class PieceActions {
constructor() {
this.generateActions(
2015-07-13 18:13:16 +02:00
'updatePiece',
2015-12-08 20:55:13 +01:00
'updateProperty',
'pieceFailed'
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-12-08 20:55:13 +01:00
this.actions.pieceFailed(err.json);
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);