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.
136 lines
5.1 KiB
136 lines
5.1 KiB
//-- copyright
|
|
// OpenProject is a project management system.
|
|
// Copyright (C) 2012-2014 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.
|
|
//++
|
|
|
|
angular.module('openproject.workPackages.controllers')
|
|
|
|
.controller('WorkPackagesController', ['$scope', '$window', 'WorkPackagesTableHelper', 'Query', 'Sortation', 'WorkPackageService', 'QueryService', 'PaginationService', 'WorkPackageLoadingHelper', 'INITIALLY_SELECTED_COLUMNS', 'OPERATORS_AND_LABELS_BY_FILTER_TYPE',
|
|
function($scope, $window, WorkPackagesTableHelper, Query, Sortation, WorkPackageService, QueryService, PaginationService, WorkPackageLoadingHelper, INITIALLY_SELECTED_COLUMNS, OPERATORS_AND_LABELS_BY_FILTER_TYPE) {
|
|
|
|
|
|
function setUrlParams(location) {
|
|
$scope.projectIdentifier = location.pathname.split('/')[2];
|
|
|
|
var regexp = /query_id=(\d+)/g;
|
|
var match = regexp.exec(location.search);
|
|
if(match) $scope.query_id = match[1];
|
|
}
|
|
|
|
function initialSetup() {
|
|
$scope.operatorsAndLabelsByFilterType = OPERATORS_AND_LABELS_BY_FILTER_TYPE;
|
|
$scope.loading = false;
|
|
$scope.disableFilters = false;
|
|
initAvailableFilters($scope.projectIdentifier)
|
|
|
|
$scope.withLoading(WorkPackageService.getWorkPackagesByQueryId, [$scope.projectIdentifier, $scope.query_id])
|
|
.then($scope.setupWorkPackagesTable)
|
|
.then(initAvailableFilters)
|
|
.then(initAvailableColumns);
|
|
}
|
|
|
|
function initQuery(queryData) {
|
|
$scope.query = new Query({
|
|
id: $scope.queryId,
|
|
project_id: queryData.project_id,
|
|
displaySums: queryData.display_sums,
|
|
groupSums: queryData.group_sums,
|
|
sums: queryData.sums,
|
|
filters: queryData.filters,
|
|
columns: $scope.columns
|
|
}); // TODO init sortation according to queryData
|
|
|
|
$scope.query.setSortation(new Sortation(queryData.sort_criteria));
|
|
|
|
$scope.showFilters = $scope.query.filters.length > 0;
|
|
|
|
return $scope.query;
|
|
}
|
|
|
|
function initAvailableFilters(projectIdentifier) {
|
|
return QueryService.getAvailableFilters($scope.projectIdentifier)
|
|
.then(function(filters){
|
|
$scope.availableFilters = filters;
|
|
});
|
|
}
|
|
|
|
function initAvailableColumns() {
|
|
return QueryService.getAvailableColumns($scope.projectIdentifier)
|
|
.then(function(data){
|
|
$scope.availableColumns = WorkPackagesTableHelper.getColumnDifference(data.available_columns, $scope.columns);
|
|
return $scope.availableColumns;
|
|
});
|
|
}
|
|
|
|
function initAvailableFilters(projectIdentifier) {
|
|
return QueryService.getAvailableFilters(projectIdentifier)
|
|
.then(function(filters){
|
|
$scope.availableFilters = filters;
|
|
});;
|
|
}
|
|
|
|
$scope.submitQueryForm = function(){
|
|
jQuery("#selected_columns option").attr('selected',true);
|
|
jQuery('#query_form').submit();
|
|
return false;
|
|
};
|
|
|
|
$scope.setupWorkPackagesTable = function(json) {
|
|
var meta = json.meta;
|
|
|
|
if (!$scope.columns) $scope.columns = meta.columns;
|
|
if (!$scope.query) initQuery(meta.query);
|
|
PaginationService.setPerPageOptions(meta.per_page_options);
|
|
PaginationService.setPerPage(meta.per_page);
|
|
PaginationService.setPage(meta.page);
|
|
|
|
$scope.rows = WorkPackagesTableHelper.getRows(json.work_packages, $scope.query.group_by);
|
|
|
|
$scope.workPackageCountByGroup = meta.work_package_count_by_group;
|
|
$scope.totalEntries = meta.total_entries;
|
|
angular.forEach($scope.columns, function(column, i){
|
|
column.total_sum = meta.sums[i];
|
|
if (meta.group_sums) column.group_sums = meta.group_sums[i];
|
|
});
|
|
};
|
|
|
|
$scope.updateResults = function() {
|
|
return $scope.withLoading(WorkPackageService.getWorkPackages, [$scope.projectIdentifier, $scope.query, PaginationService.getPaginationOptions()])
|
|
.then($scope.setupWorkPackagesTable);
|
|
};
|
|
|
|
function serviceErrorHandler(data) {
|
|
// TODO RS: This is where we'd want to put an error message on the dom
|
|
$scope.isLoading = false;
|
|
}
|
|
|
|
$scope.withLoading = function(callback, params){
|
|
return WorkPackageLoadingHelper.withLoading($scope, callback, params, serviceErrorHandler);
|
|
};
|
|
|
|
setUrlParams($window.location);
|
|
initialSetup();
|
|
}]);
|
|
|