copay/js/controllers/history.js

170 lines
4.2 KiB
JavaScript
Raw Normal View History

2014-03-26 05:18:42 -07:00
'use strict';
2014-06-12 13:42:26 -07:00
var bitcore = require('bitcore');
2014-03-26 05:18:42 -07:00
2014-10-30 10:13:40 -07:00
angular.module('copayApp.controllers').controller('HistoryController',
function($scope, $rootScope, $timeout, controllerUtils, notification, rateService) {
2014-10-10 13:58:19 -07:00
controllerUtils.redirIfNotComplete();
var w = $rootScope.wallet;
2014-10-30 14:17:41 -07:00
$rootScope.title = 'History';
2014-04-24 18:43:19 -07:00
$scope.loading = false;
2014-11-12 12:54:18 -08:00
$scope.generating = false;
$scope.lastShowed = false;
2014-11-10 05:40:03 -08:00
$scope.currentPage = 1;
$scope.itemsPerPage = 10;
$scope.nbPages = 0;
2014-11-10 14:10:24 -08:00
$scope.totalItems = 0;
$scope.blockchain_txs = [];
$scope.alternativeCurrency = [];
2014-11-10 14:10:24 -08:00
2014-11-10 13:00:43 -08:00
2014-11-10 14:10:24 -08:00
$scope.selectPage = function(page) {
$scope.currentPage = page;
$scope.update();
};
2014-11-10 13:00:43 -08:00
$scope.downloadHistory = function() {
var w = $rootScope.wallet;
if (!w) return;
2014-11-11 06:19:08 -08:00
2014-11-12 12:54:18 -08:00
$scope.generating = true;
2014-11-13 05:24:54 -08:00
w.getTransactionHistory(function(err, res) {
if (err) throw err;
2014-11-10 13:00:43 -08:00
2014-11-19 10:47:28 -08:00
if (!res) return;
2014-11-10 13:00:43 -08:00
2014-11-12 06:02:26 -08:00
var unit = w.settings.unitName;
var data = res.items;
var filename = "copay_history.csv";
2014-11-12 06:02:26 -08:00
var csvContent = "data:text/csv;charset=utf-8,";
2014-11-19 10:47:28 -08:00
csvContent += "Date,Amount(" + unit + "),Action,AddressTo,Comment";
if (w.isShared()) {
csvContent += ",Signers\n";
} else {
csvContent += "\n";
}
2014-11-10 13:00:43 -08:00
data.forEach(function(it, index) {
2014-11-19 10:47:28 -08:00
var dataString = formatDate(it.minedTs || it.sentTs) + ',' + it.amount + ',' + it.action + ',' + formatString(it.addressTo) + ',' + formatString(it.comment);
if (it.actionList) {
dataString += ',' + formatSigners(it.actionList);
}
csvContent += index < data.length ? dataString + "\n" : dataString;
});
2014-11-11 06:19:08 -08:00
var encodedUri = encodeURI(csvContent);
var link = document.createElement("a");
link.setAttribute("href", encodedUri);
link.setAttribute("download", filename);
2014-11-11 06:19:08 -08:00
link.click();
2014-11-12 12:54:18 -08:00
$scope.generating = false;
$scope.$digest();
2014-11-11 07:29:10 -08:00
function formatDate(date) {
var dateObj = new Date(date);
if (!dateObj) {
log.error('Error formating a date');
return 'DateError'
}
if (!dateObj.toJSON()) {
return '';
}
return dateObj.toJSON().substring(0, 10);
}
function formatString(str) {
if (!str) return '';
2014-11-12 12:54:18 -08:00
if (str.indexOf('"') !== -1) {
//replace all
str = str.replace(new RegExp('"', 'g'), '\'');
}
2014-11-12 06:02:26 -08:00
//escaping commas
str = '\"' + str + '\"';
return str;
}
2014-11-11 07:29:10 -08:00
2014-11-19 10:47:28 -08:00
function formatSigners(item) {
if (!item) return '';
var str = '';
item.forEach(function(it, index) {
str += index == 0 ? w.publicKeyRing.nicknameForCopayer(it.cId) : '|' + w.publicKeyRing.nicknameForCopayer(it.cId);
});
return str;
}
})
2014-11-10 13:00:43 -08:00
};
2014-11-19 10:47:28 -08:00
$scope.update = function() {
$scope.getTransactions();
};
$scope.show = function() {
$scope.loading = true;
setTimeout(function() {
$scope.update();
2014-11-10 05:40:03 -08:00
}, 1);
};
2014-11-10 05:40:03 -08:00
$scope.getTransactions = function() {
var w = $rootScope.wallet;
2014-10-22 09:10:41 -07:00
if (!w) return;
2014-10-22 12:57:29 -07:00
$scope.blockchain_txs = w.cached_txs || [];
$scope.loading = true;
2014-10-30 12:20:25 -07:00
2014-11-10 05:40:03 -08:00
w.getTransactionHistory({
currentPage: $scope.currentPage,
itemsPerPage: $scope.itemsPerPage,
}, function(err, res) {
2014-10-22 09:10:41 -07:00
if (err) throw err;
if (!res) {
$scope.loading = false;
$scope.lastShowed = false;
return;
2014-04-24 19:13:55 -07:00
}
2014-10-22 09:10:41 -07:00
2014-11-10 05:40:03 -08:00
var items = res.items;
_.each(items, function(r) {
2014-10-30 12:46:39 -07:00
r.ts = r.minedTs || r.sentTs;
});
2014-11-10 05:40:03 -08:00
$scope.blockchain_txs = w.cached_txs = items;
$scope.nbPages = res.nbPages;
2014-11-10 14:10:24 -08:00
$scope.totalItems = res.nbItems;
2014-11-10 05:40:03 -08:00
2014-10-22 09:10:41 -07:00
$scope.loading = false;
2014-10-27 13:16:24 -07:00
setTimeout(function() {
$scope.$digest();
}, 1);
2014-10-22 09:10:41 -07:00
});
};
2014-10-22 09:10:41 -07:00
$scope.hasAction = function(actions, action) {
return actions.hasOwnProperty('create');
};
$scope.getShortNetworkName = function() {
var w = $rootScope.wallet;
2014-09-11 11:25:32 -07:00
return w.getNetworkName().substring(0, 4);
};
2014-10-30 12:20:25 -07:00
2014-03-26 05:18:42 -07:00
});