57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('insight.currency').controller('CurrencyController',
|
|
function($scope, $rootScope, Currency) {
|
|
|
|
$rootScope.currency = {
|
|
factor: 1,
|
|
bitstamp: 0,
|
|
symbol: 'BTC',
|
|
getConvertion: function(value) {
|
|
if (typeof value !== 'undefined' && value !== null) {
|
|
var response;
|
|
|
|
if (this.symbol === 'USD') {
|
|
response = _roundFloat((value * this.factor), 2);
|
|
} else if (this.symbol === 'mBTC') {
|
|
this.factor = 1000;
|
|
response = _roundFloat((value * this.factor), 5);
|
|
} else {
|
|
this.factor = 1;
|
|
response = value;
|
|
}
|
|
|
|
return response + ' ' + this.symbol;
|
|
}
|
|
|
|
return 'value error';
|
|
}
|
|
};
|
|
|
|
var _roundFloat = function(x, n) {
|
|
if(!parseInt(n, 10) || !parseFloat(x)) n = 0;
|
|
|
|
return Math.round(x * Math.pow(10, n)) / Math.pow(10, n);
|
|
};
|
|
|
|
$scope.setCurrency = function(currency) {
|
|
$rootScope.currency.symbol = currency;
|
|
|
|
if (currency === 'USD') {
|
|
Currency.get({}, function(res) {
|
|
$rootScope.currency.factor = $rootScope.currency.bitstamp = res.data.bitstamp;
|
|
});
|
|
} else if (currency === 'mBTC') {
|
|
$rootScope.currency.factor = 1000;
|
|
} else {
|
|
$rootScope.currency.factor = 1;
|
|
}
|
|
};
|
|
|
|
// Get initial value
|
|
Currency.get({}, function(res) {
|
|
$rootScope.currency.bitstamp = res.data.bitstamp;
|
|
});
|
|
|
|
});
|