txps refresh WIP
This commit is contained in:
parent
db0cdec49e
commit
ac68106cbf
6 changed files with 20 additions and 11 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<div notifications="right top"></div>
|
||||||
<ion-nav-view></ion-nav-view>
|
<ion-nav-view></ion-nav-view>
|
||||||
|
|
||||||
<script src="lib/ionic.bundle.min.js"></script>
|
<script src="lib/ionic.bundle.min.js"></script>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<span>
|
<span>
|
||||||
- {{tx.amountStr}}
|
- {{tx.amountStr}}
|
||||||
</span>
|
</span>
|
||||||
<div class="item item-divider">
|
<div class="item-note">
|
||||||
{{tx.wallet.name}} · <time>{{ (tx.ts || tx.createdOn ) * 1000 | amTimeAgo}}</time>
|
{{tx.wallet.name}} · <time>{{ (tx.ts || tx.createdOn ) * 1000 | amTimeAgo}}</time>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -101,19 +101,24 @@ angular.module('copayApp.controllers').controller('tabHomeController',
|
||||||
}
|
}
|
||||||
|
|
||||||
self.updateWallet = function(wallet) {
|
self.updateWallet = function(wallet) {
|
||||||
var txps = lodash.filter($scope.txps, function(x) {
|
|
||||||
return x.walletId != wallet.id;
|
|
||||||
});
|
|
||||||
|
|
||||||
$log.debug('Updating wallet:'+ wallet.name)
|
$log.debug('Updating wallet:'+ wallet.name)
|
||||||
walletService.getStatus(wallet, {}, function(err, status) {
|
walletService.getStatus(wallet, {}, function(err, status) {
|
||||||
|
console.log('[tab-home.js.107:status:]',status); //TODO
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log('[tab-home.js.35:err:]', $log.error(err)); //TODO
|
console.log('[tab-home.js.35:err:]', $log.error(err)); //TODO
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (status.pendingTxps && status.pendingTxps[0]) {
|
if (status.pendingTxps && status.pendingTxps[0]) {
|
||||||
|
|
||||||
|
console.log('[tab-home.js.113]', status.pendingTxps); //TODO
|
||||||
|
var txps = lodash.filter($scope.txps, function(x) {
|
||||||
|
return x.walletId != wallet.id;
|
||||||
|
});
|
||||||
txps = txps.concat(status.pendingTxps);
|
txps = txps.concat(status.pendingTxps);
|
||||||
txps = formatPendingTxps(txps);
|
txps = formatPendingTxps(txps);
|
||||||
|
console.log('[tab-home.js.120:txps:]',txps); //TODO
|
||||||
setPendingTxps(txps);
|
setPendingTxps(txps);
|
||||||
}
|
}
|
||||||
wallet.status = status;
|
wallet.status = status;
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,13 @@ angular.module('copayApp.services').factory('addressbookService', function($stat
|
||||||
var root = {};
|
var root = {};
|
||||||
|
|
||||||
root.getLabel = function(addr, cb) {
|
root.getLabel = function(addr, cb) {
|
||||||
var wallet = profileService.getWallet($stateParams.walletId);
|
storageService.getAddressbook('testnet', function(err, ab) {
|
||||||
storageService.getAddressbook(wallet.credentials.network, function(err, ab) {
|
if (ab && ab[addr]) return cb(ab[addr]);
|
||||||
if (!ab) return cb();
|
|
||||||
if (ab[addr]) return cb(ab[addr]);
|
storageService.getAddressbook('livnet', function(err, ab) {
|
||||||
else return cb();
|
if (ab && ab[addr]) return cb(ab[addr]);
|
||||||
|
return cb();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,13 +70,14 @@ angular.module('copayApp.services')
|
||||||
notificationService.newBWCNotification(n,
|
notificationService.newBWCNotification(n,
|
||||||
walletId, wallet.credentials.walletName);
|
walletId, wallet.credentials.walletName);
|
||||||
|
|
||||||
$rootScope.$emit('bwsEvent', wallet.id, n.type, n);
|
|
||||||
|
|
||||||
if (wallet.cacheStatus)
|
if (wallet.cacheStatus)
|
||||||
wallet.cacheStatus.isValid = false;
|
wallet.cacheStatus.isValid = false;
|
||||||
|
|
||||||
if (wallet.completeHistory)
|
if (wallet.completeHistory)
|
||||||
wallet.completeHistory.isValid = false;
|
wallet.completeHistory.isValid = false;
|
||||||
|
|
||||||
|
$rootScope.$emit('bwsEvent', wallet.id, n.type, n);
|
||||||
});
|
});
|
||||||
|
|
||||||
wallet.on('walletCompleted', function() {
|
wallet.on('walletCompleted', function() {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ angular.module('copayApp.services').factory('txStatus', function($stateParams, l
|
||||||
var isCordova = platformInfo.isCordova;
|
var isCordova = platformInfo.isCordova;
|
||||||
|
|
||||||
root.notify = function(txp) {
|
root.notify = function(txp) {
|
||||||
var wallet = profileService.getWallet($stateParams.walletId);
|
var wallet = profileService.getWallet(txp.walletId);
|
||||||
var status = txp.status;
|
var status = txp.status;
|
||||||
var type;
|
var type;
|
||||||
var INMEDIATE_SECS = 10;
|
var INMEDIATE_SECS = 10;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue