copay/js/controllers/more.js

101 lines
3.0 KiB
JavaScript
Raw Normal View History

2014-03-26 05:18:42 -07:00
'use strict';
2014-08-21 08:04:19 -07:00
angular.module('copayApp.controllers').controller('MoreController',
2014-09-03 09:11:32 -07:00
function($scope, $rootScope, $location, backupService, walletFactory, controllerUtils, notification, rateService) {
2014-08-21 11:57:50 -07:00
var w = $rootScope.wallet;
2014-08-21 08:02:07 -07:00
2014-09-03 07:33:45 -07:00
$scope.unitOpts = [{
name: 'Satoshis (100,000,000 satoshis = 1BTC)',
shortName: 'SAT',
value: 1,
decimals: 0
}, {
name: 'bits (1,000,000 bits = 1BTC)',
shortName: 'bits',
value: 100,
decimals: 2
}, {
name: 'mBTC (1,000 mBTC = 1BTC)',
shortName: 'mBTC',
value: 100000,
decimals: 5
}, {
name: 'BTC',
shortName: 'BTC',
value: 100000000,
decimals: 8
}];
$scope.selectedAlternative = {
name: w.settings.alternativeName,
isoCode: w.settings.alternativeIsoCode
2014-09-03 07:33:45 -07:00
};
$scope.alternativeOpts = rateService.isAvailable ?
rateService.listAlternatives() : [$scope.selectedAlternative];
rateService.whenAvailable(function() {
$scope.alternativeOpts = rateService.listAlternatives();
for (var ii in $scope.alternativeOpts) {
if (w.settings.alternativeIsoCode === $scope.alternativeOpts[ii].isoCode) {
2014-09-03 07:33:45 -07:00
$scope.selectedAlternative = $scope.alternativeOpts[ii];
}
}
});
for (var ii in $scope.unitOpts) {
if (w.settings.unitName === $scope.unitOpts[ii].shortName) {
2014-09-03 07:33:45 -07:00
$scope.selectedUnit = $scope.unitOpts[ii];
break;
}
}
2014-09-03 09:11:32 -07:00
$scope.save = function() {
w.changeSettings({
unitName: $scope.selectedUnit.shortName,
unitToSatoshi: $scope.selectedUnit.value,
unitDecimals: $scope.selectedUnit.decimals,
alternativeName: $scope.selectedAlternative.name,
alternativeIsoCode: $scope.selectedAlternative.isoCode,
});
2014-09-04 12:57:07 -07:00
controllerUtils.updateBalance();
2014-09-03 09:11:32 -07:00
};
2014-09-03 07:33:45 -07:00
2014-09-03 07:27:31 -07:00
$scope.hideAdv = true;
$scope.hidePriv = true;
2014-08-21 13:50:32 -07:00
if (w)
$scope.priv = w.privateKey.toObj().extendedPrivateKeyString;
2014-08-20 11:06:37 -07:00
2014-07-16 15:00:34 -07:00
$scope.downloadBackup = function() {
backupService.download(w);
}
2014-06-16 11:51:19 -07:00
$scope.deleteWallet = function() {
2014-06-16 13:37:33 -07:00
walletFactory.delete(w.id, function() {
2014-06-16 11:51:19 -07:00
controllerUtils.logout();
});
};
2014-08-20 17:52:31 -07:00
2014-08-21 10:12:55 -07:00
$scope.purge = function(deleteAll) {
var removed = w.purgeTxProposals(deleteAll);
2014-09-03 07:27:31 -07:00
if (removed) {
2014-08-21 11:28:02 -07:00
controllerUtils.updateBalance();
}
notification.info('Tx Proposals Purged', removed + ' transaction proposal purged');
2014-08-21 10:12:55 -07:00
};
2014-08-20 17:52:31 -07:00
$scope.updateIndexes = function() {
2014-09-03 07:27:31 -07:00
notification.info('Scaning for transactions', 'Using derived addresses from your wallet');
2014-08-20 17:52:31 -07:00
w.updateIndexes(function(err) {
notification.info('Scan Ended', 'Updating balance');
if (err) {
notification.error('Error', 'Error updating indexes: ' + err);
}
controllerUtils.updateAddressList();
2014-09-03 07:27:31 -07:00
controllerUtils.updateBalance(function() {
2014-08-20 17:52:31 -07:00
notification.info('Finished', 'The balance is updated using the derived addresses');
2014-08-20 18:29:01 -07:00
w.sendIndexes();
2014-08-20 17:52:31 -07:00
});
});
};
2014-06-16 11:51:19 -07:00
});