mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
37 lines
864 B
JavaScript
37 lines
864 B
JavaScript
'use strict';
|
|
|
|
import alt from '../alt';
|
|
import CoaFetcher from '../fetchers/coa_fetcher';
|
|
|
|
|
|
class CoaActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'updateCoa'
|
|
);
|
|
}
|
|
|
|
fetchOne(id) {
|
|
CoaFetcher.fetchOne(id)
|
|
.then((res) => {
|
|
this.actions.updateCoa(res.coa);
|
|
})
|
|
.catch((err) => {
|
|
console.logGlobal(err);
|
|
});
|
|
}
|
|
create(edition) {
|
|
CoaFetcher.create(edition.bitcoin_id)
|
|
.then((res) => {
|
|
this.actions.updateCoa(res.coa);
|
|
})
|
|
.catch((err) => {
|
|
console.log(err)
|
|
console.logGlobal(err);
|
|
this.actions.updateCoa('Something went wrong, please try again later.');
|
|
});
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(CoaActions);
|