90 lines
2.6 KiB
JavaScript
90 lines
2.6 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('tabReceiveController', function($scope, $timeout, $log, $ionicModal, $state, $ionicHistory, storageService, platformInfo, walletService, profileService, configService, lodash, gettextCatalog, popupService) {
|
|
|
|
$scope.isCordova = platformInfo.isCordova;
|
|
$scope.isNW = platformInfo.isNW;
|
|
|
|
$scope.shareAddress = function(addr) {
|
|
if ($scope.generatingAddress) return;
|
|
if ($scope.isCordova) {
|
|
window.plugins.socialsharing.share('bitcoin:' + addr, null, null, null);
|
|
}
|
|
};
|
|
|
|
$scope.setAddress = function(forceNew) {
|
|
if (!$scope.wallet || $scope.generatingAddress || !$scope.wallet.isComplete()) return;
|
|
$scope.addr = null;
|
|
$scope.generatingAddress = true;
|
|
walletService.getAddress($scope.wallet, forceNew, function(err, addr) {
|
|
$scope.generatingAddress = false;
|
|
if (err) popupService.showAlert(gettextCatalog.getString('Error'), err);
|
|
$scope.addr = addr;
|
|
$timeout(function() {
|
|
$scope.$apply();
|
|
}, 10);
|
|
});
|
|
};
|
|
|
|
$scope.goCopayers = function() {
|
|
$ionicHistory.removeBackView();
|
|
$ionicHistory.nextViewOptions({
|
|
disableAnimate: true
|
|
});
|
|
$state.go('tabs.home');
|
|
$timeout(function() {
|
|
$state.transitionTo('tabs.copayers', {
|
|
walletId: $scope.wallet.credentials.walletId
|
|
});
|
|
}, 100);
|
|
};
|
|
|
|
$scope.openBackupNeededModal = function() {
|
|
$ionicModal.fromTemplateUrl('views/includes/backupNeededPopup.html', {
|
|
scope: $scope,
|
|
backdropClickToClose: false,
|
|
hardwareBackButtonClose: false
|
|
}).then(function(modal) {
|
|
$scope.BackupNeededModal = modal;
|
|
$scope.BackupNeededModal.show();
|
|
});
|
|
};
|
|
|
|
$scope.close = function() {
|
|
$scope.BackupNeededModal.hide();
|
|
$scope.BackupNeededModal.remove();
|
|
};
|
|
|
|
$scope.doBackup = function() {
|
|
$scope.close();
|
|
$scope.goToBackupFlow();
|
|
};
|
|
|
|
$scope.goToBackupFlow = function() {
|
|
$state.go('tabs.receive.backupWarning', {
|
|
from: 'tabs.receive',
|
|
walletId: $scope.wallet.credentials.walletId
|
|
});
|
|
};
|
|
|
|
$scope.$on('Wallet/Changed', function(event, wallet) {
|
|
if (!wallet) {
|
|
$log.debug('No wallet provided');
|
|
return;
|
|
}
|
|
if (wallet == $scope.wallet) {
|
|
$log.debug('No change in wallet');
|
|
return;
|
|
}
|
|
$scope.wallet = wallet;
|
|
$scope.generatingAddress = false;
|
|
$log.debug('Wallet changed: ' + wallet.name);
|
|
$timeout(function() {
|
|
$scope.setAddress(false);
|
|
}, 100);
|
|
});
|
|
|
|
$scope.$on("$ionicView.beforeEnter", function(event, data) {
|
|
$scope.wallets = profileService.getWallets();
|
|
});
|
|
});
|