sign and reject more friendly user
This commit is contained in:
parent
6329a61efb
commit
02e228ffe7
2 changed files with 68 additions and 52 deletions
|
|
@ -6,69 +6,66 @@ angular.module('copayApp.controllers').controller('HomeWalletController', functi
|
|||
var w = $rootScope.wallet;
|
||||
if (w.isShared())
|
||||
$scope.copayers = w.getRegisteredPeerIds();
|
||||
};
|
||||
};
|
||||
|
||||
$scope.sign = function(ntxid) {
|
||||
var w = $rootScope.wallet;
|
||||
$scope.loading = true;
|
||||
$scope.error = $scope.success = null;
|
||||
w.signAndSend(ntxid, function(err, id, status) {
|
||||
$scope.loading = false;
|
||||
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
else
|
||||
txStatus.notify(status);
|
||||
});
|
||||
};
|
||||
|
||||
$scope.reject = function(ntxid) {
|
||||
var w = $rootScope.wallet;
|
||||
w.reject(ntxid, function(err, status) {
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
else
|
||||
txStatus.notify(status);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
$scope.broadcast = function(ntxid) {
|
||||
var w = $rootScope.wallet;
|
||||
$scope.error = $scope.success = null;
|
||||
$scope.loading = true;
|
||||
w.issueTx(ntxid, function(err, txid, status) {
|
||||
$scope.loading = false;
|
||||
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
|
||||
txStatus.notify(status);
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
var $outScope = $scope;
|
||||
$scope.openTxModal = function(tx) {
|
||||
var ModalInstanceCtrl = function($scope, $modalInstance) {
|
||||
var w = $rootScope.wallet;
|
||||
$scope.tx = tx;
|
||||
$scope.loading = null;
|
||||
|
||||
$scope.sign = function(ntxid) {
|
||||
$outScope.sign(ntxid);
|
||||
$modalInstance.dismiss('cancel');
|
||||
$scope.loading = true;
|
||||
$timeout(function() {
|
||||
w.signAndSend(ntxid, function(err, id, status) {
|
||||
$scope.loading = false;
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
else
|
||||
$modalInstance.close(status);
|
||||
});
|
||||
}, 100);
|
||||
};
|
||||
|
||||
$scope.reject = function(ntxid) {
|
||||
$outScope.reject(ntxid);
|
||||
$modalInstance.dismiss('cancel');
|
||||
$scope.loading = true;
|
||||
$timeout(function() {
|
||||
w.reject(ntxid, function(err, status) {
|
||||
$scope.loading = false;
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
else
|
||||
$modalInstance.close(status);
|
||||
});
|
||||
}, 100);
|
||||
};
|
||||
|
||||
$scope.broadcast = function(ntxid) {
|
||||
$scope.loading = true;
|
||||
$timeout(function() {
|
||||
w.issueTx(ntxid, function(err, txid, status) {
|
||||
$scope.loading = false;
|
||||
if (err)
|
||||
$scope.error = err;
|
||||
$modalInstance.close(status);
|
||||
});
|
||||
}, 100);
|
||||
};
|
||||
|
||||
$scope.cancel = function() {
|
||||
$modalInstance.dismiss('cancel');
|
||||
};
|
||||
};
|
||||
|
||||
$modal.open({
|
||||
var modalInstance = $modal.open({
|
||||
templateUrl: 'views/modals/txp-details.html',
|
||||
windowClass: 'medium',
|
||||
controller: ModalInstanceCtrl,
|
||||
});
|
||||
|
||||
modalInstance.result.then(function(status) {
|
||||
txStatus.notify(status);
|
||||
});
|
||||
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue