2016-08-24 17:54:01 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.controllers').controller('activityController',
|
2016-09-21 11:38:38 -03:00
|
|
|
function($timeout, $scope, $log, $ionicModal, lodash, txpModalService, profileService, walletService, ongoingProcess, popupService, gettextCatalog) {
|
|
|
|
|
$scope.openTxpModal = txpModalService.open;
|
|
|
|
|
|
2016-08-24 17:54:01 -03:00
|
|
|
$scope.init = function() {
|
|
|
|
|
$scope.fetchingNotifications = true;
|
2016-08-31 17:12:36 -03:00
|
|
|
profileService.getNotifications(50, function(err, n) {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('[tab-home.js.35:err:]', $log.error(err)); //TODO
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$scope.fetchingNotifications = false;
|
2016-08-31 18:12:28 -03:00
|
|
|
$scope.notifications = n;
|
2016-09-21 11:38:38 -03:00
|
|
|
|
|
|
|
|
profileService.getTxps({}, function(err, txps, n) {
|
|
|
|
|
if (err) $log.error(err);
|
|
|
|
|
$scope.txps = txps;
|
|
|
|
|
$timeout(function() {
|
|
|
|
|
$scope.$apply();
|
|
|
|
|
});
|
|
|
|
|
});
|
2016-08-31 18:12:28 -03:00
|
|
|
});
|
2016-09-21 11:38:38 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$scope.openNotificationModal = function(n) {
|
|
|
|
|
if (!n.txpId && n.txid) {
|
|
|
|
|
openTxModal(n);
|
|
|
|
|
} else {
|
|
|
|
|
var txp = lodash.find($scope.txps, {
|
|
|
|
|
id: n.txpId
|
|
|
|
|
});
|
|
|
|
|
if (txp) txpModalService.open(txp);
|
2016-09-21 11:43:40 -03:00
|
|
|
else {
|
|
|
|
|
$log.warn('No txp found');
|
|
|
|
|
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
|
|
|
|
|
}
|
2016-09-21 11:38:38 -03:00
|
|
|
}
|
|
|
|
|
};
|
2016-09-20 16:21:05 -03:00
|
|
|
|
2016-09-21 11:38:38 -03:00
|
|
|
var openTxModal = function(n) {
|
2016-09-20 16:21:05 -03:00
|
|
|
var wallet = profileService.getWallet(n.walletId);
|
|
|
|
|
|
|
|
|
|
ongoingProcess.set('loadingTxInfo', true);
|
|
|
|
|
walletService.getTx(wallet, n.txid, function(err, tx) {
|
|
|
|
|
ongoingProcess.set('loadingTxInfo', false);
|
|
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
|
$log.error(err);
|
|
|
|
|
return popupService.showAlert(gettextCatalog.getString('Error'), err);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!tx) {
|
|
|
|
|
$log.warn('No tx found');
|
|
|
|
|
return popupService.showAlert(gettextCatalog.getString('Transaction not found'), null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$scope.wallet = wallet;
|
|
|
|
|
$scope.btx = lodash.cloneDeep(tx);
|
|
|
|
|
$ionicModal.fromTemplateUrl('views/modals/tx-details.html', {
|
|
|
|
|
scope: $scope
|
|
|
|
|
}).then(function(modal) {
|
|
|
|
|
$scope.txDetailsModal = modal;
|
|
|
|
|
$scope.txDetailsModal.show();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
};
|
2016-08-24 17:54:01 -03:00
|
|
|
});
|