// -- 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. // ++ angular .module('openproject.workPackages.directives') .directive('wpTable', wpTable); function wpTable( WorkPackagesTableService, WorkPackageService, QueryService, $window, $rootScope, PathHelper, apiWorkPackages, $state ){ return { restrict: 'E', replace: true, templateUrl: '/components/wp-table/wp-table.directive.html', scope: { projectIdentifier: '=', columns: '=', rows: '=', query: '=', groupBy: '=', displaySums: '=', isSmaller: '=', resource: '=', activationCallback: '&' }, controller: WorkPackagesTableController, link: function(scope, element) { var activeSelectionBorderIndex; // Total columns = all available columns + id + checkbox scope.numTableColumns = scope.columns.length + 2; scope.workPackagesTableData = WorkPackagesTableService.getWorkPackagesTableData(); scope.workPackagePath = PathHelper.workPackagePath; var topMenuHeight = angular.element('#top-menu').prop('offsetHeight') || 0; scope.adaptVerticalPosition = function(event) { event.pageY -= topMenuHeight; }; applyGrouping(); scope.$watchCollection('columns', function() { // force Browser rerender element.hide().show(0); angular.element($window).trigger('resize'); }); scope.$watchCollection('rows', function() { // force Browser rerender element.hide().show(0); angular.element($window).trigger('resize'); }); scope.sumsLoaded = function() { return scope.displaySums && scope.resource.sumsSchema && scope.resource.sumsSchema.$loaded && scope.resource.totalSums; }; scope.$watch('resource', function() { if (scope.displaySums) { fetchSumsSchema(); } applyGrouping(); }); scope.$watch('displaySums', function(sumsToBeDisplayed) { if (sumsToBeDisplayed) { if (!totalSumsFetched()) { fetchTotalSums(); } if (!sumsSchemaFetched()) { fetchSumsSchema(); } } }); function applyGrouping() { if (scope.groupByColumn != scope.workPackagesTableData.groupByColumn) { scope.groupByColumn = scope.workPackagesTableData.groupByColumn; scope.grouped = scope.groupByColumn !== undefined; scope.groupExpanded = {}; } } function fetchTotalSums() { apiWorkPackages // TODO: use the correct page offset and per page options .list(1, 1, scope.query) .then(function(workPackageCollection) { angular.extend(scope.resource, workPackageCollection); fetchSumsSchema(); }); } function totalSumsFetched() { return !!scope.resource.totalSums; } function sumsSchemaFetched() { return scope.resource.sumsSchema && scope.resource.sumsSchema.$loaded; } function fetchSumsSchema() { if (scope.resource.sumsSchema && !scope.resource.sumsSchema.$loaded) { scope.resource.sumsSchema.$load(); } } scope.setCheckedStateForAllRows = function(state) { WorkPackagesTableService.setCheckedStateForAllRows(scope.rows, state); }; // Thanks to http://stackoverflow.com/a/880518 function clearSelection() { var selection = (document as any).selection; if(selection && selection.empty) { selection.empty(); } else if(window.getSelection) { var sel = window.getSelection(); sel.removeAllRanges(); } } function setRowSelectionState(row, selected) { activeSelectionBorderIndex = scope.rows.indexOf(row); WorkPackagesTableService.setRowSelection(row, selected); } function openWhenInSplitView(workPackage) { if ($state.includes('work-packages.list.details')) { $state.transitionTo( 'work-packages.list.details.overview', { workPackageId: workPackage.id } ); } } function mulipleRowsChecked(){ var counter = 0; for (var i = 0, l = scope.rows.length; i f.active); errorFieldNames.reverse().map(name => { if (selected.indexOf(name) === -1) { selected.splice(selected.indexOf(active.fieldName) + 1, 0, name); } }); QueryService.setSelectedColumns(selected); }; /** Save callbacks for work package */ scope.onWorkPackageSave = function(workPackage, fields) { $rootScope.$emit('workPackageSaved', this.workPackage); $rootScope.$emit('workPackagesRefreshInBackground'); } ; } }; } function WorkPackagesTableController($scope, $rootScope, I18n) { $scope.locale = I18n.locale; $scope.text = { cancel: I18n.t('js.button_cancel'), collapse: I18n.t('js.label_collapse'), expand: I18n.t('js.label_expand'), sumFor: I18n.t('js.label_sum_for'), allWorkPackages: I18n.t('js.label_all_work_packages'), noResults: I18n.t('js.work_packages.no_results.title'), noResultsDescription: I18n.t('js.work_packages.no_results.description') }; $scope.$watch('workPackagesTableData.allRowsChecked', function(checked) { $scope.text.toggleRows = checked ? I18n.t('js.button_uncheck_all') : I18n.t('js.button_check_all'); }); $scope.cancelInlineWorkPackage = function (index, row) { $rootScope.$emit('inlineWorkPackageCreateCancelled', index, row); } }