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.
237 lines
7.6 KiB
237 lines
7.6 KiB
//-- 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.
|
|
//++
|
|
|
|
module.exports = function(I18n, WorkPackagesTableService, $window, $timeout, flags, PathHelper){
|
|
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
templateUrl: '/templates/work_packages/work_packages_table.html',
|
|
scope: {
|
|
projectIdentifier: '=',
|
|
columns: '=',
|
|
rows: '=',
|
|
query: '=',
|
|
countByGroup: '=',
|
|
groupBy: '=',
|
|
groupByColumn: '=',
|
|
displaySums: '=',
|
|
totalSums: '=',
|
|
groupSums: '=',
|
|
activationCallback: '&'
|
|
},
|
|
link: function(scope, element, attributes) {
|
|
var activeSelectionBorderIndex;
|
|
|
|
scope.I18n = I18n;
|
|
scope.workPackagesTableData = WorkPackagesTableService.getWorkPackagesTableData();
|
|
scope.workPackagePath = PathHelper.staticWorkPackagePath;
|
|
|
|
var topMenuHeight = angular.element('#top-menu').prop('offsetHeight') || 0;
|
|
scope.adaptVerticalPosition = function(event) {
|
|
event.pageY -= topMenuHeight;
|
|
};
|
|
|
|
// groupings
|
|
scope.grouped = scope.groupByColumn !== undefined;
|
|
scope.groupExpanded = {};
|
|
|
|
scope.$watch('workPackagesTableData.allRowsChecked', function(checked) {
|
|
scope.toggleRowsLabel = checked ? I18n.t('js.button_uncheck_all') : I18n.t('js.button_check_all');
|
|
});
|
|
|
|
function getTable() {
|
|
return element.find('table');
|
|
}
|
|
|
|
function getInnerContainer() {
|
|
return element.find('.work-packages-table--results-container');
|
|
}
|
|
|
|
function getBackgrounds() {
|
|
return element.find('.work-packages-table--header-background,' +
|
|
'.work-packages-table--footer-background');
|
|
}
|
|
|
|
function getHeadersFooters() {
|
|
return element.find(
|
|
'.sort-header-outer,' +
|
|
'.work-packages-table--header-outer,' +
|
|
'.work-packages-table--footer-outer'
|
|
);
|
|
}
|
|
|
|
function setTableContainerWidths() {
|
|
// adjust overall containers
|
|
var tableWidth = getTable().width(),
|
|
scrollBarWidth = 16;
|
|
|
|
// account for a possible scrollbar
|
|
if (tableWidth > document.documentElement.clientWidth - scrollBarWidth) {
|
|
tableWidth += scrollBarWidth;
|
|
}
|
|
if (tableWidth > element.width()) {
|
|
// force containers to the width of the table
|
|
getInnerContainer().width(tableWidth);
|
|
getBackgrounds().width(tableWidth);
|
|
} else {
|
|
// ensure table stretches to container sizes
|
|
getInnerContainer().css('width', '100%');
|
|
getBackgrounds().css('width', '100%');
|
|
}
|
|
}
|
|
|
|
function setHeaderFooterWidths() {
|
|
getHeadersFooters().each(function() {
|
|
var parentWidth = angular.element(this).parent().width();
|
|
angular.element(this).css('width', parentWidth + 'px');
|
|
});
|
|
}
|
|
|
|
function invalidateWidths() {
|
|
getInnerContainer().css('width', 'auto');
|
|
getBackgrounds().css('width', 'auto');
|
|
getHeadersFooters().each(function() {
|
|
angular.element(this).css('width', 'auto');
|
|
});
|
|
}
|
|
|
|
var setTableWidths = function() {
|
|
$timeout(function() {
|
|
invalidateWidths();
|
|
setTableContainerWidths();
|
|
setHeaderFooterWidths();
|
|
});
|
|
};
|
|
|
|
$timeout(setTableWidths);
|
|
angular.element($window).on('resize', _.debounce(setTableWidths, 50));
|
|
scope.$on('$stateChangeSuccess', function() {
|
|
$timeout(setTableWidths, 200);
|
|
});
|
|
scope.$on('openproject.layout.navigationToggled', function() {
|
|
$timeout(setTableWidths, 200);
|
|
});
|
|
|
|
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');
|
|
});
|
|
|
|
element.on('hover', 'th', function() {
|
|
element.find('col:eq('+ jQuery(this).index() +')').toggleClass('hover');
|
|
});
|
|
|
|
scope.setCheckedStateForAllRows = function(state) {
|
|
WorkPackagesTableService.setCheckedStateForAllRows(scope.rows, state);
|
|
};
|
|
|
|
var groupableColumns = WorkPackagesTableService.getGroupableColumns();
|
|
scope.$watch('query.groupBy', function(groupBy) {
|
|
if (scope.columns) {
|
|
var groupByColumnIndex = groupableColumns.map(function(column){
|
|
return column.name;
|
|
}).indexOf(groupBy);
|
|
|
|
scope.groupByColumn = groupableColumns[groupByColumnIndex];
|
|
}
|
|
});
|
|
|
|
scope.$watch(function() {
|
|
return flags.isOn('detailsView');
|
|
}, function(detailsEnabled) {
|
|
scope.hideWorkPackageDetails = !detailsEnabled;
|
|
});
|
|
|
|
// Thanks to http://stackoverflow.com/a/880518
|
|
function clearSelection() {
|
|
if(document.selection && document.selection.empty) {
|
|
document.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 mulipleRowsChecked(){
|
|
var counter = 0;
|
|
for (var i = 0, l = scope.rows.length; i<l; i++) {
|
|
if (scope.rows[i].checked) {
|
|
if (++counter === 2) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
scope.selectWorkPackage = function(row, $event) {
|
|
if ($event.target.type != 'checkbox') {
|
|
var currentRowCheckState = row.checked;
|
|
var multipleChecked = mulipleRowsChecked();
|
|
|
|
if (!($event.ctrlKey || $event.shiftKey)) {
|
|
scope.setCheckedStateForAllRows(false);
|
|
}
|
|
|
|
if ($event.shiftKey) {
|
|
clearSelection();
|
|
activeSelectionBorderIndex = WorkPackagesTableService.selectRowRange(scope.rows, row, activeSelectionBorderIndex);
|
|
} else {
|
|
setRowSelectionState(row, multipleChecked ? true : !currentRowCheckState);
|
|
|
|
scope.activationCallback({ id: row.object.id, force: false });
|
|
}
|
|
}
|
|
};
|
|
|
|
scope.showWorkPackageDetails = function(row) {
|
|
clearSelection();
|
|
|
|
scope.setCheckedStateForAllRows(false);
|
|
|
|
setRowSelectionState(row, true);
|
|
|
|
scope.activationCallback({ id: row.object.id, force: true });
|
|
};
|
|
}
|
|
};
|
|
};
|
|
|