2015-08-28 16:18:10 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import alt from '../alt';
|
|
|
|
import OwnershipFetcher from '../fetchers/ownership_fetcher';
|
2015-09-03 17:19:29 +02:00
|
|
|
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;
|
2015-09-03 17:19:29 +02:00
|
|
|
return Q.Promise((resolve, reject) => {
|
|
|
|
OwnershipFetcher.makeContractPublic(contract)
|
|
|
|
.then((res) => {
|
2015-09-04 11:31:53 +02:00
|
|
|
console.log('Here is the result... ');
|
2015-09-03 17:19:29 +02:00
|
|
|
resolve(res);
|
|
|
|
})
|
|
|
|
.catch((err)=> {
|
2015-09-04 11:31:53 +02:00
|
|
|
console.log('Here we have an error');
|
2015-09-03 17:19:29 +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);
|