Wallet/src/js/services/txStatus.js
2015-04-29 19:19:10 -03:00

46 lines
1.2 KiB
JavaScript

'use strict';
angular.module('copayApp.services').factory('txStatus', function($modal, lodash, profileService, $timeout, gettext) {
var root = {};
root.notify = function(txp, cb) {
var fc = profileService.focusedClient;
var msg;
var status = txp.status;
if (status == 'broadcasted') {
msg = gettext('Transaction broadcasted');
} else {
var action = lodash.find(txp.actions, {
copayerId: fc.credentials.copayerId
});
if (!action) {
msg = gettext('Transaction proposal created');
} else if (action.type == 'accept') {
msg = gettext('Transaction proposal signed');
} else if (action.type == 'reject') {
msg = gettext('Transaction was rejected');
}
}
root.openModal(msg, cb);
};
root.openModal = function(statusStr, cb) {
var ModalInstanceCtrl = function($scope, $modalInstance) {
$scope.statusStr = statusStr;
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
};
if (cb) $timeout(cb, 100);
};
$modal.open({
templateUrl: 'views/modals/tx-status.html',
windowClass: 'full popup-tx-status',
controller: ModalInstanceCtrl,
});
};
return root;
});