accountant-ui/src/operations/index.js

261 lines
6.6 KiB
JavaScript
Raw Normal View History

2016-10-09 20:17:11 +02:00
// vim: set tw=80 ts=4 sw=4 sts=4:
2016-04-12 10:55:08 +02:00
/*
This file is part of Accountant.
Accountant is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Accountant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
2017-06-10 18:02:19 +02:00
/* jshint node: true */
2016-04-12 10:55:08 +02:00
'use strict';
2017-06-14 22:21:25 +02:00
var moment = require('moment');
2017-06-10 18:02:19 +02:00
var angular = require('angular');
var operationFormTmpl = require('./operation.form.tmpl.html'),
operationDeleteTmpl = require('./operation.delete.tmpl.html');
2017-06-10 18:02:19 +02:00
var ngResource = require('angular-resource'),
ngMessages = require('angular-messages'),
2017-06-16 23:22:27 +02:00
ngUiBootstrap = require('angular-ui-bootstrap'),
2017-06-10 18:02:19 +02:00
ngUiNotification = require('angular-ui-notification'),
ngStrap = require('angular-strap');
var operationModule = angular.module('accountant.operations', [
ngResource,
ngMessages,
2017-06-16 23:22:27 +02:00
ngUiBootstrap,
2017-06-10 18:02:19 +02:00
ngUiNotification,
ngStrap
2016-04-12 10:55:08 +02:00
])
2016-10-14 08:19:23 +02:00
.config(function($resourceProvider) {
2016-04-12 10:55:08 +02:00
// Keep trailing slashes to avoid redirect by flask..
$resourceProvider.defaults.stripTrailingSlashes = false;
2016-10-14 08:19:23 +02:00
})
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
.factory('Operation', function($resource) {
2016-04-12 10:55:08 +02:00
return $resource(
'/api/operation/:id', {
id: '@id'
}
);
2016-10-14 08:19:23 +02:00
})
2016-04-12 10:55:08 +02:00
/*
* Controller for the operations.
*/
2017-06-18 00:45:25 +02:00
.controller('OperationController', function($routeParams, $uibModal,
Notification, Operation, $log, $q) {
2017-06-14 22:14:40 +02:00
2016-10-14 08:19:23 +02:00
var vm = this;
vm.minDate = moment().date(1).month(11).year(2016);
vm.maxDate = moment();
2016-10-14 08:19:23 +02:00
/*
* Add an empty operation.
*/
vm.add = function() {
var operation = new Operation({
// eslint-disable-next-line camelcase
account_id: $routeParams.accountId
});
2016-10-09 20:17:11 +02:00
2017-06-16 22:26:49 +02:00
return vm.modify(operation);
2016-10-14 08:19:23 +02:00
};
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
/*
* Load operations.
*/
vm.load = function() {
2017-06-16 22:26:49 +02:00
return Operation.query({
2016-10-14 08:19:23 +02:00
// eslint-disable-next-line camelcase
account_id: $routeParams.accountId,
begin: vm.minDate.format('YYYY-MM-DD'),
end: vm.maxDate.format('YYYY-MM-DD')
2016-10-14 08:19:23 +02:00
});
};
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
/*
* Toggle pointed indicator for an operation.
*/
vm.togglePointed = function(operation, rowform) {
operation.pointed = !operation.pointed;
2016-04-12 10:55:08 +02:00
2017-06-16 22:26:49 +02:00
vm.save(operation);
2016-10-14 08:19:23 +02:00
};
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
/*
* Toggle cancel indicator for an operation.
*/
vm.toggleCanceled = function(operation) {
operation.canceled = !operation.canceled;
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
vm.save(operation);
};
2016-04-12 10:55:08 +02:00
2016-10-14 08:19:23 +02:00
/*
2017-06-16 22:26:49 +02:00
* Save an operation and return a promise.
2016-10-14 08:19:23 +02:00
*/
2017-06-16 22:26:49 +02:00
vm.save = function(operation) {
2016-10-14 08:19:23 +02:00
operation.confirmed = true;
2016-04-12 10:55:08 +02:00
2017-06-16 22:26:49 +02:00
return operation.$save().then(function(operation) {
Notification.success('Operation #' + operation.id + ' saved.');
vm.operations = vm.load();
2017-06-16 22:26:49 +02:00
return operation;
}, function(result){
$log.error('Error while saving operation', operation, result);
Notification.error(
'Error while saving operation: ' + result.message
);
2016-05-24 08:49:55 +02:00
2017-06-16 22:26:49 +02:00
return $q.reject(result);
2016-10-14 08:19:23 +02:00
});
};
2016-05-24 08:49:55 +02:00
2016-10-14 08:19:23 +02:00
/*
2017-06-16 22:26:49 +02:00
* Delete an operation and return a promise.
2016-10-14 08:19:23 +02:00
*/
2017-06-16 22:26:49 +02:00
vm.delete = function(operation) {
2016-10-14 08:19:23 +02:00
var id = operation.id;
2016-10-09 20:17:11 +02:00
$uibModal.open({
component: 'operationDeleteModalComponent',
resolve: {
operation: function() {
return operation;
2016-05-24 08:49:55 +02:00
}
2016-10-14 08:19:23 +02:00
}
}).result.then(function(operation) {
2017-06-16 22:26:49 +02:00
return operation.$delete().then(function() {
Notification.success('Operation #' + id + ' deleted.');
vm.operations = vm.load();
2017-06-16 22:26:49 +02:00
return operation;
}, function(result) {
Notification.error(
'An error occurred while trying to delete operation #' +
id + ':<br />' + result
);
return $q.reject(result);
});
}, function() {
2017-06-16 22:26:49 +02:00
return false;
});
2016-10-14 08:19:23 +02:00
};
2016-10-09 20:17:11 +02:00
2017-06-16 22:26:49 +02:00
/*
* Open the popup to modify the operation, save it on confirm.
* @returns a promise.
*/
vm.modify = function(operation) {
return $uibModal.open({
component: 'operationModifyModalComponent',
resolve: {
operation: function() {
return operation;
}
}
}).result.then(function(operation) {
2017-06-16 22:26:49 +02:00
return vm.save(operation);
}, function() {
2017-06-16 22:26:49 +02:00
return false;
});
};
vm.operations = vm.load();
2016-10-14 08:19:23 +02:00
})
2016-10-09 20:17:11 +02:00
.component('operationModifyModalComponent', {
templateUrl: operationFormTmpl,
bindings: {
resolve: '<',
close: '&',
dismiss: '&'
},
controller: function() {
var vm = this;
vm.$onInit = function() {
vm.operation = vm.resolve.operation;
};
vm.ok = function() {
vm.close({
$value: vm.operation
});
};
2016-10-09 20:17:11 +02:00
vm.cancel = function() {
vm.dismiss({
$value: 'cancel'
2016-10-09 20:17:11 +02:00
});
};
vm.title = function() {
// FIXME Alexis Lahouze 2017-06-15 i18n
if (vm.operation.id) {
return "Operation #" + vm.operation.id;
} else {
return "Operation";
}
};
}
})
.component('operationDeleteModalComponent', {
templateUrl: operationDeleteTmpl,
bindings: {
resolve: '<',
close: '&',
dismiss: '&'
},
controller: function() {
var vm = this;
vm.$onInit = function() {
vm.operation = vm.resolve.operation;
};
vm.ok = function() {
vm.close({
$value: vm.operation
});
};
vm.cancel = function() {
vm.dismiss({
$value: 'cancel'
});
};
vm.title = function() {
// FIXME Alexis Lahouze 2017-06-15 i18n
if (vm.operation.id) {
return "Operation #" + vm.operation.id;
} else {
return "Operation";
}
};
}
2016-05-24 08:49:55 +02:00
});
2017-06-10 18:02:19 +02:00
module.exports = operationModule;