1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 09:35:10 +01:00
onion/js/actions/contract_list_actions.js

44 lines
1.2 KiB
JavaScript
Raw Normal View History

2015-08-28 16:18:10 +02:00
'use strict';
import alt from '../alt';
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'
);
}
fetchContractList() {
OwnershipFetcher.fetchContractList()
.then((contracts) => {
2015-09-03 15:53:02 +02:00
this.actions.updateContractList(contracts.results);
2015-08-28 16:18:10 +02:00
})
.catch((err) => {
console.logGlobal(err);
this.actions.updateContractList([]);
});
}
2015-09-03 15:53:02 +02:00
makeContractPublic(contract){
2015-09-04 11:31:53 +02:00
contract.public = true;
return Q.Promise((resolve, reject) => {
OwnershipFetcher.makeContractPublic(contract)
.then((res) => {
2015-09-04 11:31:53 +02:00
console.log('Here is the result... ');
resolve(res);
})
.catch((err)=> {
2015-09-04 11:31:53 +02:00
console.log('Here we have an error');
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);