41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('insight.transactions').controller('transactionsController', ['$scope', '$rootScope', '$routeParams', '$location', 'Global', 'Transaction', 'TransactionsByBlock', 'TransactionsByAddress', '$rootScope', function ($scope, $rootScope, $routeParams, $location, Global, Transaction, TransactionsByBlock, TransactionsByAddress) {
|
|
$scope.global = Global;
|
|
|
|
$scope.findOne = function() {
|
|
Transaction.get({
|
|
txId: $routeParams.txId
|
|
}, function(tx) {
|
|
$scope.tx = tx;
|
|
}, function(e) {
|
|
if (e.status === 400) {
|
|
$rootScope.flashMessage = 'Invalid Transaction ID: ' + $routeParams.txId;
|
|
}
|
|
else if (e.status === 503) {
|
|
$rootScope.flashMessage = 'Backend Error. ' + e.data;
|
|
}
|
|
else {
|
|
$rootScope.flashMessage = 'Transaction Not Found';
|
|
}
|
|
$location.path('/');
|
|
});
|
|
};
|
|
|
|
$scope.byBlock = function(bId) {
|
|
TransactionsByBlock.query({
|
|
block: bId
|
|
}, function(txs) {
|
|
$scope.txs = txs;
|
|
});
|
|
};
|
|
|
|
$scope.byAddress = function(aId) {
|
|
TransactionsByAddress.query({
|
|
address: aId
|
|
}, function(txs) {
|
|
$scope.txs = txs;
|
|
});
|
|
};
|
|
}]);
|