mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
35 lines
730 B
JavaScript
35 lines
730 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.log(err);
|
||
|
});
|
||
|
}
|
||
|
create(edition) {
|
||
|
CoaFetcher.create(edition.bitcoin_id)
|
||
|
.then((res) => {
|
||
|
this.actions.updateCoa(res.coa);
|
||
|
})
|
||
|
.catch((err) => {
|
||
|
console.log(err);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createActions(CoaActions);
|