kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
4.8 KiB
158 lines
4.8 KiB
8 years ago
|
// -- copyright
|
||
|
// OpenProject is a project management system.
|
||
|
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||
|
//
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License version 3.
|
||
|
//
|
||
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
||
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
||
|
//
|
||
|
// This program is free software; you can redistribute it and/or
|
||
|
// modify it under the terms of the GNU General Public License
|
||
|
// as published by the Free Software Foundation; either version 2
|
||
|
// of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// This program 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 General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
//
|
||
|
// See doc/COPYRIGHT.rdoc for more details.
|
||
|
// ++
|
||
6 years ago
|
|
||
|
import {PluginContextService} from "core-app/services/plugin-context.service";
|
||
8 years ago
|
|
||
8 years ago
|
/*eslint no-eval: "error"*/
|
||
8 years ago
|
export class CostBudgetSubformController {
|
||
|
|
||
|
// Container for rows
|
||
|
private container: ng.IAugmentedJQuery;
|
||
|
|
||
|
// Template for new rows to insert, is rendered with INDEX placeholder
|
||
|
private rowTemplate: string;
|
||
|
|
||
|
// Current row index
|
||
|
public rowIndex: number;
|
||
|
|
||
|
// subform item count as output by rails
|
||
|
public itemCount: string;
|
||
|
|
||
|
// Updater URL for the rows contained here
|
||
|
public updateUrl: string;
|
||
|
|
||
8 years ago
|
constructor(public $element:ng.IAugmentedJQuery,
|
||
|
public $http:ng.IHttpService,
|
||
6 years ago
|
public pluginContext:PluginContextService,
|
||
7 years ago
|
private $scope:ng.IScope,
|
||
|
private $compile:any) {
|
||
6 years ago
|
|
||
8 years ago
|
this.container = $element.find('.budget-item-container');
|
||
6 years ago
|
this.rowIndex = parseInt(this.$element.attr('item-count'));
|
||
8 years ago
|
|
||
6 years ago
|
// Refresh row on changes
|
||
8 years ago
|
$element.on('change', '.budget-item-value', (evt) => {
|
||
|
var row = angular.element(evt.target).closest('.cost_entry');
|
||
|
this.refreshRow(row.attr('id'));
|
||
|
});
|
||
|
|
||
|
$element.on('click', '.delete-budget-item', (evt) => {
|
||
6 years ago
|
evt.preventDefault();
|
||
8 years ago
|
var row = angular.element(evt.target).closest('.cost_entry');
|
||
|
row.remove();
|
||
6 years ago
|
return false;
|
||
8 years ago
|
});
|
||
|
|
||
|
// Add new row handler
|
||
6 years ago
|
$element.find('.budget-add-row').click((evt) => {
|
||
|
evt.preventDefault();
|
||
8 years ago
|
this.addBudgetItem();
|
||
6 years ago
|
return false;
|
||
8 years ago
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Refreshes the given row after updating values
|
||
|
*/
|
||
8 years ago
|
public refreshRow(row_identifier:string) {
|
||
8 years ago
|
var row = this.$element.find('#' + row_identifier);
|
||
|
var request = this.buildRefreshRequest(row, row_identifier);
|
||
|
|
||
8 years ago
|
this.$http({
|
||
8 years ago
|
url: this.updateUrl,
|
||
|
method: 'POST',
|
||
|
data: request,
|
||
6 years ago
|
headers: { 'Accept': 'application/json' }
|
||
8 years ago
|
}).then((response:any) => {
|
||
6 years ago
|
_.each(response.data, (val:string, selector:string) => {
|
||
|
jQuery('#' + selector).html(val);
|
||
|
});
|
||
8 years ago
|
}).catch(response => {
|
||
6 years ago
|
this.pluginContext.context!.services.wpNotifications.handleErrorResponse(response);
|
||
8 years ago
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Adds a new empty budget item row with the correct index set
|
||
|
*/
|
||
|
public addBudgetItem() {
|
||
7 years ago
|
let compiledTemplate = this.$compile(this.indexedTemplate)(this.$scope);
|
||
|
this.container.append(compiledTemplate);
|
||
8 years ago
|
this.rowIndex += 1;
|
||
|
}
|
||
|
|
||
|
/**
|
||
6 years ago
|
* Return the next possible new row from rowTemplate,wpNotifications
|
||
8 years ago
|
* with the index set to the current last value.
|
||
|
*/
|
||
|
private get indexedTemplate() {
|
||
|
return this.rowTemplate.replace(/INDEX/g, this.rowIndex.toString());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the params for the update request
|
||
|
*/
|
||
8 years ago
|
private buildRefreshRequest(row:JQuery, row_identifier:string) {
|
||
|
var request:any = {
|
||
8 years ago
|
element_id: row_identifier,
|
||
|
fixed_date: angular.element('#cost_object_fixed_date').val()
|
||
|
};
|
||
|
|
||
|
// Augment common values with specific values for this type
|
||
6 years ago
|
row.find('.budget-item-value').each((_i:number, el:any) => {
|
||
8 years ago
|
var field = angular.element(el);
|
||
8 years ago
|
request[field.data('requestKey')] = field.val() || '0';
|
||
8 years ago
|
});
|
||
|
|
||
|
return request;
|
||
|
}
|
||
|
}
|
||
|
|
||
7 years ago
|
function costsBudgetSubform():any {
|
||
8 years ago
|
return {
|
||
|
restrict: 'E',
|
||
|
scope: {
|
||
|
updateUrl: '@',
|
||
8 years ago
|
itemCount: '@'
|
||
8 years ago
|
},
|
||
8 years ago
|
link: (scope:ng.IScope,
|
||
|
element:ng.IAugmentedJQuery,
|
||
|
attr:ng.IAttributes,
|
||
|
ctrl:any) => {
|
||
8 years ago
|
const template = element.find('.budget-row-template');
|
||
|
ctrl.rowTemplate = template[0].outerHTML;
|
||
|
template.remove();
|
||
|
},
|
||
|
bindToController: true,
|
||
|
controller: CostBudgetSubformController,
|
||
|
controllerAs: '$ctrl'
|
||
|
};
|
||
|
}
|
||
|
|
||
6 years ago
|
angular.module('OpenProjectLegacy').directive('costsBudgetSubform', costsBudgetSubform);
|