copay/js/controllers/header.js

138 lines
4.0 KiB
JavaScript
Raw Normal View History

2014-03-25 07:35:04 -07:00
'use strict';
2014-06-03 13:42:36 -07:00
angular.module('copayApp.controllers').controller('HeaderController',
2014-06-25 13:14:12 -07:00
function($scope, $rootScope, $location, notification, $http, controllerUtils, backupService) {
$scope.menu = [{
'title': 'Addresses',
'icon': 'fi-address-book',
'link': '#/addresses'
2014-03-26 05:18:42 -07:00
}, {
'title': 'Transactions',
2014-06-23 06:34:40 -07:00
'icon': 'fi-clipboard-pencil',
2014-03-26 05:18:42 -07:00
'link': '#/transactions'
}, {
'title': 'Send',
2014-04-15 08:33:00 -07:00
'icon': 'fi-arrow-right',
2014-03-26 05:18:42 -07:00
'link': '#/send'
}, {
'title': 'Backup',
2014-04-15 08:33:00 -07:00
'icon': 'fi-archive',
2014-03-26 05:18:42 -07:00
'link': '#/backup'
2014-04-15 10:02:45 -07:00
}];
2014-03-25 07:35:04 -07:00
$scope.getNumber = function(num) {
return new Array(num);
}
$http.get('https://api.github.com/repos/bitpay/copay/tags').success(function(data) {
var toInt = function(s) {
return parseInt(s);
};
var latestVersion = data[0].name.replace('v', '').split('.').map(toInt);
var currentVersion = copay.version.split('.').map(toInt);
2014-06-27 11:32:52 -07:00
var title = 'Copay '+data[0].name+' available.';
var content;
if (currentVersion[0] < latestVersion[0]) {
2014-06-27 11:32:52 -07:00
content = 'It\'s important that you update your wallet at https://copay.io';
notification.version(title, content, true);
} else if (currentVersion[0] == latestVersion[0] && currentVersion[1] < latestVersion[1]) {
2014-06-27 11:32:52 -07:00
var content = 'Please update your wallet at https://copay.io';
notification.version(title, content, false);
}
});
$rootScope.unitName = config.unitName;
2014-05-14 22:13:25 -07:00
// Initialize alert notification (not show when init wallet)
2014-05-15 06:41:42 -07:00
$rootScope.txAlertCount = 0;
2014-06-05 10:55:19 -07:00
$rootScope.insightError = 0;
2014-06-27 11:07:07 -07:00
2014-06-05 08:18:54 -07:00
$rootScope.$watch('insightError', function(status) {
2014-06-05 10:55:19 -07:00
if (status === -1) {
2014-06-27 11:07:07 -07:00
notification.success('Networking restored', 'Connection to Insight re-established');
//$rootScope.insightError = 0;
2014-06-27 11:11:33 -07:00
} else if (status !== 0) {
2014-06-27 11:07:07 -07:00
notification.error('Networking problem', 'Connection to Insight lost, reconnecting (attempt number '+status+')');
2014-06-05 08:18:54 -07:00
}
2014-05-14 22:13:25 -07:00
});
// Init socket handlers (with no wallet yet)
controllerUtils.setSocketHandlers();
$rootScope.$watch('receivedFund', function(receivedFund) {
if (receivedFund) {
var currentAddr;
for (var i = 0; i < $rootScope.addrInfos.length; i++) {
var addrinfo = $rootScope.addrInfos[i];
if (addrinfo.address.toString() == receivedFund[1] && !addrinfo.isChange) {
currentAddr = addrinfo.address.toString();
break;
}
}
if (currentAddr) {
2014-06-09 10:41:55 -07:00
//var beep = new Audio('sound/transaction.mp3');
2014-06-18 09:01:50 -07:00
notification.funds('Received fund', currentAddr, receivedFund);
2014-06-09 10:41:55 -07:00
//beep.play();
}
}
});
$rootScope.$watch('txAlertCount', function(txAlertCount) {
if (txAlertCount && txAlertCount > 0) {
2014-06-18 09:01:50 -07:00
notification.info('New Transaction', ($rootScope.txAlertCount == 1) ? 'You have a pending transaction proposal' : 'You have ' + $rootScope.txAlertCount + ' pending transaction proposals', txAlertCount);
}
});
2014-03-26 05:18:42 -07:00
$scope.isActive = function(item) {
if (item.link && item.link.replace('#', '') == $location.path()) {
2014-03-26 05:18:42 -07:00
return true;
}
return false;
};
2014-03-25 07:35:04 -07:00
$scope.signout = function() {
2014-05-15 13:04:26 -07:00
logout();
2014-04-30 15:50:13 -07:00
};
$scope.refresh = function() {
2014-05-06 12:21:56 -07:00
var w = $rootScope.wallet;
w.connectToAll();
if ($rootScope.addrInfos.length > 0) {
controllerUtils.updateBalance(function() {
$rootScope.$digest();
});
}
2014-03-25 07:35:04 -07:00
};
2014-04-09 07:05:25 -07:00
2014-04-20 15:39:16 -07:00
$rootScope.isCollapsed = true;
2014-05-15 13:04:26 -07:00
$scope.toggleCollapse = function() {
$rootScope.isCollapsed = !$rootScope.isCollapsed;
};
2014-05-15 13:04:26 -07:00
function logout() {
var w = $rootScope.wallet;
if (w) {
w.disconnect();
controllerUtils.logout();
}
}
// Ensures a graceful disconnect
window.onbeforeunload = logout;
$scope.$on('$destroy', function() {
window.onbeforeunload = undefined;
});
2014-06-25 13:14:12 -07:00
$scope.backupAndOpen = function() {
var w = $rootScope.wallet;
w.offerBackup();
2014-06-26 08:33:14 -07:00
backupService.download(w);
2014-06-25 13:14:12 -07:00
};
2014-03-25 07:35:04 -07:00
});