1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/actions/contract_list_actions.js

55 lines
1.5 KiB
JavaScript
Raw Permalink Normal View History

2015-08-28 16:18:10 +02:00
'use strict';
import { alt } from '../alt';
2015-08-28 16:18:10 +02:00
import OwnershipFetcher from '../fetchers/ownership_fetcher';
import Q from 'q';
2015-08-28 16:18:10 +02:00
class ContractListActions {
constructor() {
this.generateActions(
'updateContractList',
'flushContractList'
);
}
2015-09-11 18:23:31 +02:00
fetchContractList(isActive, isPublic, issuer) {
return Q.Promise((resolve, reject) => {
OwnershipFetcher.fetchContractList(isActive, isPublic, issuer)
.then((contracts) => {
this.actions.updateContractList(contracts.results);
resolve(contracts.results);
})
.catch((err) => {
console.logGlobal(err);
this.actions.updateContractList([]);
reject(err);
});
});
2015-08-28 16:18:10 +02:00
}
2015-09-03 15:53:02 +02:00
changeContract(contract) {
return Q.Promise((resolve, reject) => {
2015-09-16 09:47:22 +02:00
OwnershipFetcher.changeContract(contract)
.then(resolve)
.catch((err)=> {
console.logGlobal(err);
reject(err);
});
});
2015-09-03 15:53:02 +02:00
}
2015-09-07 11:38:23 +02:00
removeContract(contractId) {
return Q.Promise((resolve, reject) => {
2015-09-07 15:43:44 +02:00
OwnershipFetcher.deleteContract(contractId)
.then(resolve)
.catch((err) => {
2015-09-09 11:11:16 +02:00
console.logGlobal(err);
reject(err);
});
});
2015-09-03 15:53:02 +02:00
}
2015-08-28 16:18:10 +02:00
}
export default alt.createActions(ContractListActions);