Wallet/js/controllers/transactions.js

108 lines
2.9 KiB
JavaScript
Raw Normal View History

2014-03-26 09:18:42 -03:00
'use strict';
angular.module('copay.transactions').controller('TransactionsController',
function($scope, $rootScope, controllerUtils) {
2014-04-23 12:59:21 -03:00
2014-03-26 09:18:42 -03:00
$scope.title = 'Transactions';
2014-04-24 22:43:19 -03:00
$scope.loading = false;
$scope.onlyPending = true;
$scope.lastShowed = false;
$scope.update = function () {
$scope.loading = false;
controllerUtils.updateTxs({onlyPending:$scope.onlyPending});
$rootScope.$digest();
};
$scope.show = function (onlyPending) {
$scope.loading=true;
$scope.onlyPending = onlyPending;
setTimeout(function(){
$scope.update();
}, 10);
};
$scope.toogleLast = function () {
console.log('[toogleLast]');
$scope.loading=true;
$scope.lastShowed = !$scope.lastShowed;
if ($scope.lastShowed) {
$scope.getTransactions(function(txs){
$scope.loading=false;
$scope.blockchain_txs = txs;
$rootScope.$digest();
});
}
else {
setTimeout(function(){
$scope.loading=false;
$rootScope.$digest();
});
}
};
$scope.send = function (ntxid,cb) {
2014-04-24 22:43:19 -03:00
$scope.loading = true;
$rootScope.txAlertCount = 0;
2014-04-20 21:53:54 -03:00
var w = $rootScope.wallet;
w.sendTx(ntxid, function(txid) {
2014-04-22 23:07:20 -03:00
console.log('[transactions.js.68:txid:] SENTTX CALLBACK',txid); //TODO
2014-04-20 21:53:54 -03:00
$rootScope.flashMessage = txid
? {type:'success', message: 'Transaction broadcasted. txid: ' + txid}
2014-04-20 21:53:54 -03:00
: {type:'error', message: 'There was an error sending the Transaction'}
;
if (cb) return cb();
else $scope.update();
2014-04-20 21:53:54 -03:00
});
};
2014-04-16 17:50:10 -03:00
$scope.sign = function (ntxid) {
2014-04-24 22:43:19 -03:00
$scope.loading = true;
2014-04-16 17:50:10 -03:00
var w = $rootScope.wallet;
w.sign(ntxid, function(ret){
if (!ret) {
$rootScope.flashMessage = {
type:'error',
message: 'There was an error signing the Transaction',
};
$scope.update();
} else {
var p = w.txProposals.getTxProposal(ntxid);
if (p.builder.isFullySigned()) {
$scope.send(ntxid, function() {
$scope.update();
});
}
else
$scope.update();
}
});
2014-04-16 17:50:10 -03:00
};
2014-04-20 21:53:54 -03:00
$scope.getTransactions = function(cb) {
var w =$rootScope.wallet;
2014-04-24 23:13:55 -03:00
if (w) {
console.log('### Querying last transactions...'); //TODO
var addresses = w.getAddressesStr();
2014-04-24 23:13:55 -03:00
if (addresses.length > 0) {
return w.blockchain.getTransactions(addresses, cb);
2014-04-24 23:13:55 -03:00
}
}
return cb();
};
$scope.getShortNetworkName = function() {
return config.networkName.substring(0,4);
};
2014-04-23 02:01:54 -03:00
$scope.reject = function (ntxid) {
2014-04-24 22:43:19 -03:00
$scope.loading = true;
$rootScope.txAlertCount = 0;
2014-04-23 02:01:54 -03:00
var w = $rootScope.wallet;
w.reject(ntxid);
$rootScope.flashMessage = {type:'warning', message: 'Transaction rejected by you'};
$scope.loading = false;
2014-04-23 02:01:54 -03:00
};
2014-03-26 09:18:42 -03:00
});