OpenProject is the leading open source project management software.
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.
openproject/frontend/app/components/context-menus/settings-menu/settings-menu.controller.ts

316 lines
10 KiB

// 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.
//++
import {opWorkPackagesModule} from '../../../angular-modules';
import {ContextMenuService} from '../context-menu.service';
import {WorkPackageTableHierarchiesService} from '../../wp-fast-table/state/wp-table-hierarchy.service';
import {WorkPackageTableSumService} from '../../wp-fast-table/state/wp-table-sum.service';
import {WorkPackageTableGroupByService} from '../../wp-fast-table/state/wp-table-group-by.service';
import {WorkPackagesListService} from '../../wp-list/wp-list.service';
import {QueryResource} from '../../api/api-v3/hal-resources/query-resource.service';
import {QueryFormResource} from '../../api/api-v3/hal-resources/query-form-resource.service';
import {States} from '../../states.service';
import {WorkPackageTableTimelineService} from '../../wp-fast-table/state/wp-table-timeline.service';
8 years ago
interface IMyScope extends ng.IScope {
Angular 4 support and upgraded timeline header directive (#5984) * Added Angular4 dependency and initial setup * Angular 4 transition: timeline header directive * removed superfluous require declaration * moved Angular4 dependencies to vendor.js * Angular4: upgraded timeline relations directive * Fixes karma tests. However, logging seems to be broken now. * Angular4: upgraded directive wpTimelineStaticElements * dev rebase * WIP Angular 4+ transition * converted WorkPackageTableTimelineGrid to Angular4+ * start migrating WorkPackageTimelineTableController to Angular4+ * completed migration of component tree WorkPackageTimelineTableController * Fix Pagination directive * set any to scope for TS warnings * Convert wp-table-pagination * merged changes from Oliver * begin migrating WorkPackagesTableController * begin migrating WorkPackagesTableController * Apply karma fix to PR * Fix pagination options * WIP Angular migration wp-table.directive * Angular4 migration - table sums * Angular4 migration: fixed error message when no sums are displayed * Angular4 migration: removed superfluous Angular1 registration * WIP Angular4 migration * WIP Angular4 migration - removed unused directives - start migartion sortHeader directive * WIP Angular4 migration - sortHeader directive * WIP Angular4 migration: sort header * Angular4 migration: implemented dropDown directive for Angular4 * merged origin/dev * updated package-lock.json * use shrinkwrap instead of package-lock * Angular4 migration: fixed accessible_by_keyboard directive * WIP #26714 * reformat code * fixes #26714 pass projectIdentifier to wpTable * cleanup * fixes #26716 * WIP Angular4 migration: added support for test execution * wpTablePagination: convertered reasonable tests to Angular4 * merged dev branch, updated dependencies * fixed #26727 * Replace openproject initialization in head * fixed #26728 * Replace time entries and messages ng1 controllers * Remove unused timeline reference * Fix OP Helpers for member page * Fix initial cached paged options * Fixed broken inlineCreate * Only nil-check for table, projectIdentifier CAN be null
7 years ago
text:any;
8 years ago
displaySumsLabel:string;
displayHierarchies:boolean;
displaySums:boolean;
loading:boolean;
Angular 4 support and upgraded timeline header directive (#5984) * Added Angular4 dependency and initial setup * Angular 4 transition: timeline header directive * removed superfluous require declaration * moved Angular4 dependencies to vendor.js * Angular4: upgraded timeline relations directive * Fixes karma tests. However, logging seems to be broken now. * Angular4: upgraded directive wpTimelineStaticElements * dev rebase * WIP Angular 4+ transition * converted WorkPackageTableTimelineGrid to Angular4+ * start migrating WorkPackageTimelineTableController to Angular4+ * completed migration of component tree WorkPackageTimelineTableController * Fix Pagination directive * set any to scope for TS warnings * Convert wp-table-pagination * merged changes from Oliver * begin migrating WorkPackagesTableController * begin migrating WorkPackagesTableController * Apply karma fix to PR * Fix pagination options * WIP Angular migration wp-table.directive * Angular4 migration - table sums * Angular4 migration: fixed error message when no sums are displayed * Angular4 migration: removed superfluous Angular1 registration * WIP Angular4 migration * WIP Angular4 migration - removed unused directives - start migartion sortHeader directive * WIP Angular4 migration - sortHeader directive * WIP Angular4 migration: sort header * Angular4 migration: implemented dropDown directive for Angular4 * merged origin/dev * updated package-lock.json * use shrinkwrap instead of package-lock * Angular4 migration: fixed accessible_by_keyboard directive * WIP #26714 * reformat code * fixes #26714 pass projectIdentifier to wpTable * cleanup * fixes #26716 * WIP Angular4 migration: added support for test execution * wpTablePagination: convertered reasonable tests to Angular4 * merged dev branch, updated dependencies * fixed #26727 * Replace openproject initialization in head * fixed #26728 * Replace time entries and messages ng1 controllers * Remove unused timeline reference * Fix OP Helpers for member page * Fix initial cached paged options * Fixed broken inlineCreate * Only nil-check for table, projectIdentifier CAN be null
7 years ago
timelinesVisible:boolean;
isGrouped:boolean;
8 years ago
saveQuery:Function;
deleteQuery:Function;
Angular 4 support and upgraded timeline header directive (#5984) * Added Angular4 dependency and initial setup * Angular 4 transition: timeline header directive * removed superfluous require declaration * moved Angular4 dependencies to vendor.js * Angular4: upgraded timeline relations directive * Fixes karma tests. However, logging seems to be broken now. * Angular4: upgraded directive wpTimelineStaticElements * dev rebase * WIP Angular 4+ transition * converted WorkPackageTableTimelineGrid to Angular4+ * start migrating WorkPackageTimelineTableController to Angular4+ * completed migration of component tree WorkPackageTimelineTableController * Fix Pagination directive * set any to scope for TS warnings * Convert wp-table-pagination * merged changes from Oliver * begin migrating WorkPackagesTableController * begin migrating WorkPackagesTableController * Apply karma fix to PR * Fix pagination options * WIP Angular migration wp-table.directive * Angular4 migration - table sums * Angular4 migration: fixed error message when no sums are displayed * Angular4 migration: removed superfluous Angular1 registration * WIP Angular4 migration * WIP Angular4 migration - removed unused directives - start migartion sortHeader directive * WIP Angular4 migration - sortHeader directive * WIP Angular4 migration: sort header * Angular4 migration: implemented dropDown directive for Angular4 * merged origin/dev * updated package-lock.json * use shrinkwrap instead of package-lock * Angular4 migration: fixed accessible_by_keyboard directive * WIP #26714 * reformat code * fixes #26714 pass projectIdentifier to wpTable * cleanup * fixes #26716 * WIP Angular4 migration: added support for test execution * wpTablePagination: convertered reasonable tests to Angular4 * merged dev branch, updated dependencies * fixed #26727 * Replace openproject initialization in head * fixed #26728 * Replace time entries and messages ng1 controllers * Remove unused timeline reference * Fix OP Helpers for member page * Fix initial cached paged options * Fixed broken inlineCreate * Only nil-check for table, projectIdentifier CAN be null
7 years ago
queryCustomFields:any;
8 years ago
showSaveAsModal:Function;
showShareModal:Function;
showSettingsModal:Function;
Angular 4 support and upgraded timeline header directive (#5984) * Added Angular4 dependency and initial setup * Angular 4 transition: timeline header directive * removed superfluous require declaration * moved Angular4 dependencies to vendor.js * Angular4: upgraded timeline relations directive * Fixes karma tests. However, logging seems to be broken now. * Angular4: upgraded directive wpTimelineStaticElements * dev rebase * WIP Angular 4+ transition * converted WorkPackageTableTimelineGrid to Angular4+ * start migrating WorkPackageTimelineTableController to Angular4+ * completed migration of component tree WorkPackageTimelineTableController * Fix Pagination directive * set any to scope for TS warnings * Convert wp-table-pagination * merged changes from Oliver * begin migrating WorkPackagesTableController * begin migrating WorkPackagesTableController * Apply karma fix to PR * Fix pagination options * WIP Angular migration wp-table.directive * Angular4 migration - table sums * Angular4 migration: fixed error message when no sums are displayed * Angular4 migration: removed superfluous Angular1 registration * WIP Angular4 migration * WIP Angular4 migration - removed unused directives - start migartion sortHeader directive * WIP Angular4 migration - sortHeader directive * WIP Angular4 migration: sort header * Angular4 migration: implemented dropDown directive for Angular4 * merged origin/dev * updated package-lock.json * use shrinkwrap instead of package-lock * Angular4 migration: fixed accessible_by_keyboard directive * WIP #26714 * reformat code * fixes #26714 pass projectIdentifier to wpTable * cleanup * fixes #26716 * WIP Angular4 migration: added support for test execution * wpTablePagination: convertered reasonable tests to Angular4 * merged dev branch, updated dependencies * fixed #26727 * Replace openproject initialization in head * fixed #26728 * Replace time entries and messages ng1 controllers * Remove unused timeline reference * Fix OP Helpers for member page * Fix initial cached paged options * Fixed broken inlineCreate * Only nil-check for table, projectIdentifier CAN be null
7 years ago
showTimelinesModal:Function;
8 years ago
showExportModal:Function;
showColumnsModal:Function;
showGroupingModal:Function;
showSortingModal:Function;
toggleDisplaySums:Function;
toggleHierarchies:Function;
8 years ago
showSettingsModalInvalid:Function;
showShareModalInvalid:Function;
showExportModalInvalid:Function;
deleteQueryInvalid:Function;
showSaveModalInvalid:Function;
saveQueryInvalid:Function;
}
function SettingsDropdownMenuController($scope:IMyScope,
$window:ng.IWindowService,
I18n:op.I18n,
columnsModal:any,
exportModal:any,
saveModal:any,
settingsModal:any,
shareModal:any,
sortingModal:any,
groupingModal:any,
timelinesModal:any,
contextMenu:ContextMenuService,
wpTableHierarchies:WorkPackageTableHierarchiesService,
wpTableSum:WorkPackageTableSumService,
wpTableGroupBy:WorkPackageTableGroupByService,
wpTableTimeline:WorkPackageTableTimelineService,
wpListService:WorkPackagesListService,
states:States,
8 years ago
AuthorisationService:any,
NotificationsService:any) {
let query:QueryResource;
let form:QueryFormResource;
$scope.text = {
group_by_title: () => {
if ($scope.displayHierarchies) {
return I18n.t('js.work_packages.query.group_by_disabled_by_hierarchy');
} else {
return I18n.t('js.work_packages.query.hierarchy_mode');
}
},
hierarchy_title: () => {
if (wpTableGroupBy.current) {
return I18n.t('js.work_packages.query.hierarchy_disabled_by_group_by', { column: wpTableGroupBy.current.id! });
} else {
return I18n.t('js.work_packages.query.group_by');
}
},
loading: I18n.t('js.label_loading')
};
states
.query
.resource
.values$()
.takeUntil(states.table.stopAllSubscriptions)
.subscribe(queryUpdate => {
$scope.loading = true;
query = queryUpdate;
});
states
.query
.form
.values$()
.takeUntil(states.table.stopAllSubscriptions)
.subscribe(formUpdate => {
form = formUpdate;
$scope.timelinesVisible = wpTableTimeline.isVisible;
$scope.displayHierarchies = wpTableHierarchies.isEnabled;
$scope.displaySums = wpTableSum.isEnabled;
$scope.isGrouped = wpTableGroupBy.isEnabled;
$scope.displaySumsLabel = $scope.displaySums ? I18n.t('js.toolbar.settings.hide_sums')
: I18n.t('js.toolbar.settings.display_sums');
if (query.results && query.results.customFields) {
$scope.queryCustomFields = query.results.customFields;
}
$scope.loading = false;
});
$scope.saveQuery = function (event:JQueryEventObject) {
event.stopPropagation();
if (!query.id && allowQueryAction(event, 'updateImmediately')) {
saveModal.activate();
} else if (query.id && allowQueryAction(event, 'updateImmediately')) {
wpListService.save();
}
closeAnyContextMenu();
};
$scope.deleteQuery = function (event:JQueryEventObject) {
event.stopPropagation();
if (allowQueryAction(event, 'delete') && deleteConfirmed()) {
wpListService.delete();
}
closeAnyContextMenu();
};
// Modals
$scope.showSaveAsModal = function (event:JQueryEventObject) {
event.stopPropagation();
if (allowFormAction(event, 'commit')) {
showExistingQueryModal.call(saveModal, event);
updateFocusInModal('save-query-name');
}
};
$scope.showShareModal = function (event:JQueryEventObject) {
event.stopPropagation();
if (allowQueryAction(event, 'unstar') || allowQueryAction(event, 'star')) {
showExistingQueryModal.call(shareModal, event);
updateFocusInModal('show-public');
}
};
$scope.showSettingsModal = function (event:JQueryEventObject) {
event.stopPropagation();
if (allowQueryAction(event, 'update')) {
showExistingQueryModal.call(settingsModal, event);
updateFocusInModal('query_name');
}
};
$scope.showExportModal = function (event:JQueryEventObject) {
event.stopPropagation();
if (allowWorkPackageAction(event, 'representations')) {
showModal.call(exportModal);
setTimeout(function () {
updateFocusInModal(jQuery("[id^='export-']").first().attr('id'));
});
}
};
$scope.showColumnsModal = function (event:JQueryEventObject) {
event.stopPropagation();
showModal.call(columnsModal);
setTimeout(function () {
updateFocusInModal(jQuery("[id^='column-']").first().attr('id'));
});
};
$scope.showGroupingModal = function (event:JQueryEventObject) {
event.stopPropagation();
showModal.call(groupingModal);
updateFocusInModal('selected_columns_new');
};
$scope.showSortingModal = function (event:JQueryEventObject) {
event.stopPropagation();
showModal.call(sortingModal);
updateFocusInModal('modal-sorting-attribute-0');
};
$scope.toggleHierarchies = function () {
const isEnabled = wpTableHierarchies.isEnabled;
wpTableHierarchies.setEnabled(!isEnabled);
};
$scope.toggleDisplaySums = function () {
closeAnyContextMenu();
wpTableSum.toggle();
};
$scope.showSettingsModalInvalid = function () {
return !query.id || AuthorisationService.cannot('query', 'update');
};
$scope.showShareModalInvalid = function () {
return (AuthorisationService.cannot('query', 'unstar') &&
AuthorisationService.cannot('query', 'star'));
};
$scope.showExportModalInvalid = function () {
return AuthorisationService.cannot('work_packages', 'representations');
};
$scope.deleteQueryInvalid = function () {
return AuthorisationService.cannot('query', 'delete');
};
$scope.showSaveModalInvalid = function () {
return AuthorisationService.cannot('query', 'updateImmediately');
};
$scope.saveQueryInvalid = function () {
return AuthorisationService.cannot('query', 'updateImmediately');
};
$scope.showTimelinesModal = function (event:JQueryEventObject) {
event.stopPropagation();
showModal.call(timelinesModal);
};
function showModal(this:any) {
closeAnyContextMenu();
this.activate();
}
function showExistingQueryModal(this:any, event:JQueryEventObject) {
closeAnyContextMenu();
this.activate();
}
function allowQueryAction(event:JQueryEventObject, action:any) {
return allowAction(event, 'query', action);
}
function allowWorkPackageAction(event:JQueryEventObject, action:any) {
return allowAction(event, 'work_packages', action);
}
function allowFormAction(event:JQueryEventObject, action:string) {
if (form.$links[action]) {
return true;
} else {
event.stopPropagation();
return false;
}
}
function allowAction(event:JQueryEventObject, modelName:string, action:any) {
if (AuthorisationService.can(modelName, action)) {
return true;
} else {
event.stopPropagation();
return false;
}
}
function closeAnyContextMenu() {
contextMenu.close();
}
function deleteConfirmed() {
return $window.confirm(I18n.t('js.text_query_destroy_confirmation'));
}
function updateFocusInModal(element_id:string) {
setTimeout(function () {
jQuery('#' + element_id).focus();
}, 100);
}
}
opWorkPackagesModule.controller('SettingsDropdownMenuController', SettingsDropdownMenuController);