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.
246 lines
9.4 KiB
246 lines
9.4 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.
|
|
// ++
|
|
|
|
import {openprojectModule} from '../../angular-modules';
|
|
import {FirstRouteService} from 'app/components/routing/first-route-service';
|
|
import {Transition, TransitionService} from '@uirouter/core';
|
|
import {StateProvider, UrlMatcherFactory, UrlRouterProvider} from '@uirouter/angularjs';
|
|
|
|
const panels = {
|
|
get overview() {
|
|
return {
|
|
url: '/overview',
|
|
reloadOnSearch: false,
|
|
template: '<overview-panel work-package="$ctrl.workPackage"></overview-panel>'
|
|
};
|
|
},
|
|
|
|
get watchers() {
|
|
return {
|
|
url: '/watchers',
|
|
reloadOnSearch: false,
|
|
template: '<watchers-panel ng-if="$ctrl.workPackage" work-package="$ctrl.workPackage"></watchers-panel>'
|
|
};
|
|
},
|
|
|
|
get activity() {
|
|
return {
|
|
url: '/activity',
|
|
reloadOnSearch: false,
|
|
template: '<activity-panel ng-if="$ctrl.workPackage" work-package="$ctrl.workPackage"></activity-panel>'
|
|
};
|
|
},
|
|
|
|
get activityDetails(this:any) {
|
|
var activity = this.activity;
|
|
activity.url = '#{activity_no:\d+}';
|
|
|
|
return activity;
|
|
},
|
|
|
|
get relations() {
|
|
return {
|
|
url: '/relations',
|
|
reloadOnSearch: false,
|
|
template: ` <relations-panel
|
|
ng-if="$ctrl.workPackage"
|
|
work-package="$ctrl.workPackage"
|
|
></relations-panel>`
|
|
};
|
|
}
|
|
};
|
|
|
|
openprojectModule
|
|
.config(($stateProvider:StateProvider,
|
|
$urlRouterProvider:UrlRouterProvider,
|
|
$urlMatcherFactoryProvider:UrlMatcherFactory) => {
|
|
$urlMatcherFactoryProvider.strictMode(false);
|
|
|
|
// Prepend the baseurl to the route to avoid using a base tag
|
|
// For more information, see
|
|
// https://github.com/angular/angular.js/issues/5519
|
|
// https://github.com/opf/openproject/pull/5685
|
|
const baseUrl = (window as any).appBasePath;
|
|
$stateProvider
|
|
.state('work-packages', {
|
|
url: baseUrl + '/{projects}/{projectPath}/work_packages?query_id&query_props',
|
|
abstract: true,
|
|
params: {
|
|
// value: null makes the parameter optional
|
|
// squash: true avoids duplicate slashes when the paramter is not provided
|
|
projectPath: {value: null, squash: true},
|
|
projects: {value: null, squash: true},
|
|
query_id: { dynamic: true },
|
|
query_props: { dynamic: true }
|
|
},
|
|
templateUrl: '/components/routing/main/work-packages.html',
|
|
controller: 'WorkPackagesController'
|
|
})
|
|
|
|
.state('work-packages.new', {
|
|
url: '/new?type&parent_id',
|
|
templateUrl: '/components/routing/main/work-packages.new.html',
|
|
resolve: {
|
|
successState: () => 'work-packages.show'
|
|
},
|
|
controller: 'WorkPackageCreateController',
|
|
controllerAs: '$ctrl',
|
|
reloadOnSearch: false,
|
|
onEnter: () => angular.element('body').addClass('full-create'),
|
|
onExit: () => angular.element('body').removeClass('full-create'),
|
|
})
|
|
|
|
.state('work-packages.copy', {
|
|
url: '/{copiedFromWorkPackageId:[0-9]+}/copy',
|
|
controller: 'WorkPackageCopyController',
|
|
controllerAs: '$ctrl',
|
|
reloadOnSearch: false,
|
|
resolve: {
|
|
successState: () => 'work-packages.show'
|
|
},
|
|
templateUrl: '/components/routing/main/work-packages.new.html',
|
|
onEnter: () => {
|
|
angular.element('body').addClass('action-show');
|
|
},
|
|
onExit: () => angular.element('body').removeClass('action-show')
|
|
})
|
|
.state('work-packages.show', {
|
|
url: '/{workPackageId:[0-9]+}',
|
|
// Redirect to 'activity' by default.
|
|
redirectTo: 'work-packages.show.activity',
|
|
templateUrl: '/components/routing/wp-show/wp.show.html',
|
|
controller: 'WorkPackageShowController',
|
|
controllerAs: '$ctrl',
|
|
onEnter: () => angular.element('body').addClass('action-show'),
|
|
onExit: () => angular.element('body').removeClass('action-show')
|
|
})
|
|
.state('work-packages.show.activity', panels.activity)
|
|
.state('work-packages.show.activity.details', panels.activityDetails)
|
|
.state('work-packages.show.relations', panels.relations)
|
|
.state('work-packages.show.watchers', panels.watchers)
|
|
|
|
.state('work-packages.list', {
|
|
url: '',
|
|
controller: 'WorkPackagesListController',
|
|
templateUrl: '/components/routing/wp-list/wp.list.html',
|
|
reloadOnSearch: false,
|
|
onEnter: () => angular.element('body').addClass('action-index'),
|
|
onExit: () => angular.element('body').removeClass('action-index')
|
|
})
|
|
.state('work-packages.list.new', {
|
|
url: '/create_new?type&parent_id',
|
|
controller: 'WorkPackageCreateController',
|
|
controllerAs: '$ctrl',
|
|
templateUrl: '/components/routing/wp-list/wp.list.new.html',
|
|
reloadOnSearch: false,
|
|
resolve: {
|
|
successState: () => 'work-packages.list.details.overview'
|
|
},
|
|
onEnter: () => angular.element('body').addClass('action-create'),
|
|
onExit: () => angular.element('body').removeClass('action-create')
|
|
})
|
|
.state('work-packages.list.copy', {
|
|
url: '/details/{copiedFromWorkPackageId:[0-9]+}/copy',
|
|
controller: 'WorkPackageCopyController',
|
|
controllerAs: '$ctrl',
|
|
resolve: {
|
|
successState: () => 'work-packages.list.details'
|
|
},
|
|
templateUrl: '/components/routing/wp-list/wp.list.new.html',
|
|
reloadOnSearch: false,
|
|
onEnter: () => angular.element('body').addClass('action-details'),
|
|
onExit: () => angular.element('body').removeClass('action-details')
|
|
})
|
|
.state('work-packages.list.details', {
|
|
redirectTo: 'work-packages.list.details.overview',
|
|
url: '/details/{workPackageId:[0-9]+}',
|
|
templateUrl: '/components/routing/wp-details/wp.list.details.html',
|
|
controller: 'WorkPackageDetailsController',
|
|
controllerAs: '$ctrl',
|
|
reloadOnSearch: false,
|
|
params: {
|
|
focus: {
|
|
dynamic: true,
|
|
value: true
|
|
}
|
|
},
|
|
onEnter: () => angular.element('body').addClass('action-details'),
|
|
onExit: () => angular.element('body').removeClass('action-details')
|
|
})
|
|
.state('work-packages.list.details.overview', panels.overview)
|
|
.state('work-packages.list.details.activity', panels.activity)
|
|
.state('work-packages.list.details.activity.details', panels.activityDetails)
|
|
.state('work-packages.list.details.relations', panels.relations)
|
|
.state('work-packages.list.details.watchers', panels.watchers);
|
|
})
|
|
|
|
.run(($location:ng.ILocationService,
|
|
$rootElement:ng.IRootElementService,
|
|
firstRoute:FirstRouteService,
|
|
$timeout:ng.ITimeoutService,
|
|
$rootScope:ng.IRootScopeService,
|
|
$transitions:TransitionService,
|
|
$window:ng.IWindowService) => {
|
|
|
|
// Our application is still a hybrid one, meaning most routes are still
|
|
// handled by Rails. As such, we disable the default link-hijacking that
|
|
// Angular's HTML5-mode turns on.
|
|
$rootElement.off('click');
|
|
|
|
// Prevent angular handling clicks on href="#" links from other libraries
|
|
// (especially jquery-ui and its datepicker) from routing to <base url>/#
|
|
angular.element('body').on('click', 'a[href="#"]', function (evt) {
|
|
evt.preventDefault();
|
|
});
|
|
|
|
$transitions.onStart({}, function (transition:Transition) {
|
|
const $state = transition.router.stateService;
|
|
const toParams = transition.params('to');
|
|
const toState = transition.to();
|
|
|
|
// We need to distinguish between actions that should run on the initial page load
|
|
// (ie. openining a new tab in the details view should focus on the element in the table)
|
|
// so we need to know which route we visited initially
|
|
firstRoute.setIfFirst(toState.name, toParams);
|
|
|
|
|
|
if (transition.options().notify !== false) {
|
|
$rootScope.$emit('notifications.clearAll');
|
|
}
|
|
|
|
const projectIdentifier = toParams.projectPath || ($rootScope as any)['projectIdentifier'];
|
|
|
|
if (!toParams.projects && projectIdentifier) {
|
|
const newParams = _.clone(toParams);
|
|
_.assign(newParams, {projectPath: projectIdentifier, projects: 'projects'});
|
|
return $state.target(toState, newParams, {location: 'replace'});
|
|
}
|
|
|
|
return true;
|
|
});
|
|
});
|
|
|