mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
import alt from '../../../../alt';
|
||
|
import Q from 'q';
|
||
|
|
||
|
import PrizeRatingFetcher from '../fetchers/prize_rating_fetcher';
|
||
|
|
||
|
class PrizeRatingActions {
|
||
|
constructor() {
|
||
|
this.generateActions(
|
||
|
'updatePrizeRatings',
|
||
|
'updatePrizeRating'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
fetch() {
|
||
|
return Q.Promise((resolve, reject) => {
|
||
|
PrizeRatingFetcher
|
||
|
.fetch()
|
||
|
.then((res) => {
|
||
|
this.actions.updatePrizeRatings(res.ratings);
|
||
|
resolve(res);
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
console.logGlobal(err);
|
||
|
reject(err);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
fetchOne(pieceId) {
|
||
|
return Q.Promise((resolve, reject) => {
|
||
|
PrizeRatingFetcher
|
||
|
.fetchOne(pieceId)
|
||
|
.then((res) => {
|
||
|
this.actions.updatePrizeRating(res.rating.rating);
|
||
|
resolve(res);
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
console.logGlobal(err);
|
||
|
reject(err);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
createRating(pieceId, rating) {
|
||
|
return Q.Promise((resolve, reject) => {
|
||
|
PrizeRatingFetcher
|
||
|
.rate(pieceId, rating)
|
||
|
.then((res) => {
|
||
|
this.actions.updatePrizeRating(res.rating.rating);
|
||
|
resolve(res);
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
console.logGlobal(err);
|
||
|
reject(err);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
updateRating(rating) {
|
||
|
this.actions.updatePrizeRating(rating);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createActions(PrizeRatingActions);
|