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.
137 lines
4.9 KiB
137 lines
4.9 KiB
import {wpDirectivesModule} from '../../../angular-modules';
|
|
import {WorkPackageResourceInterface} from '../../api/api-v3/hal-resources/work-package-resource.service';
|
|
import {WorkPackageRelationsService} from '../wp-relations.service';
|
|
import {WorkPackageRelationsHierarchyService} from '../wp-relations-hierarchy/wp-relations-hierarchy.service';
|
|
import {WorkPackageNotificationService} from '../../wp-edit/wp-notification.service';
|
|
import {WorkPackageCacheService} from '../../work-packages/work-package-cache.service';
|
|
import {RelationResource} from '../../api/api-v3/hal-resources/relation-resource.service';
|
|
|
|
export class WorkPackageRelationsCreateController {
|
|
|
|
public showRelationsCreateForm: boolean = false;
|
|
public workPackage:WorkPackageResourceInterface;
|
|
public selectedRelationType:string = RelationResource.DEFAULT();
|
|
public selectedWpId:string;
|
|
public externalFormToggle: boolean;
|
|
public fixedRelationType:string;
|
|
public relationTypes = this.wpRelationsService.getRelationTypes(true);
|
|
|
|
public canAddChildren = !!this.workPackage.addChild;
|
|
public canLinkChildren = !!this.workPackage.changeParent;
|
|
public loadingPromise = false;
|
|
|
|
constructor(protected I18n,
|
|
protected $scope:ng.IScope,
|
|
protected $rootScope:ng.IRootScopeService,
|
|
protected $element,
|
|
protected $timeout,
|
|
protected wpRelationsService:WorkPackageRelationsService,
|
|
protected wpRelationsHierarchyService:WorkPackageRelationsHierarchyService,
|
|
protected wpNotificationsService:WorkPackageNotificationService,
|
|
protected wpCacheService:WorkPackageCacheService) {
|
|
|
|
if (angular.isDefined(this.fixedRelationType)) {
|
|
this.selectedRelationType = this.fixedRelationType;
|
|
}
|
|
|
|
if (angular.isDefined(this.externalFormToggle)) {
|
|
this.showRelationsCreateForm = this.externalFormToggle;
|
|
}
|
|
}
|
|
|
|
public text = {
|
|
save: this.I18n.t('js.relation_buttons.save'),
|
|
abort: this.I18n.t('js.relation_buttons.abort'),
|
|
addNewChild: this.I18n.t('js.relation_buttons.add_new_child'),
|
|
addExistingChild: this.I18n.t('js.relation_buttons.add_existing_child'),
|
|
addNewRelation: this.I18n.t('js.relation_buttons.add_new_relation'),
|
|
addParent: this.I18n.t('js.relation_buttons.add_parent'),
|
|
relationType: this.I18n.t('js.relation_labels.relation_type')
|
|
};
|
|
|
|
public createRelation() {
|
|
|
|
if (!this.selectedRelationType || ! this.selectedWpId) {
|
|
return;
|
|
}
|
|
|
|
switch (this.selectedRelationType) {
|
|
case 'parent':
|
|
this.changeParent();
|
|
break;
|
|
case 'children':
|
|
this.addExistingChildRelation();
|
|
break;
|
|
default:
|
|
this.createCommonRelation();
|
|
}
|
|
}
|
|
|
|
protected addExistingChildRelation() {
|
|
this.wpRelationsHierarchyService.addExistingChildWp(this.workPackage, this.selectedWpId)
|
|
.then(() => this.wpCacheService.loadWorkPackage(<number> this.workPackage.id, true))
|
|
.catch(err => this.wpNotificationsService.handleErrorResponse(err, this.workPackage))
|
|
.finally(() => this.toggleRelationsCreateForm());
|
|
}
|
|
|
|
protected createNewChildWorkPackage() {
|
|
this.wpRelationsHierarchyService.addNewChildWp(this.workPackage);
|
|
}
|
|
|
|
protected changeParent() {
|
|
this.toggleRelationsCreateForm();
|
|
this.wpRelationsHierarchyService.changeParent(this.workPackage, this.selectedWpId)
|
|
.then(updatedWp => {
|
|
this.wpNotificationsService.showSave(this.workPackage);
|
|
this.$timeout(() => {
|
|
angular.element('#hierarchy--parent').focus();
|
|
});
|
|
})
|
|
.catch(err => this.wpNotificationsService.handleErrorResponse(err, this.workPackage))
|
|
}
|
|
|
|
protected createCommonRelation() {
|
|
this.wpRelationsService.addCommonRelation(this.workPackage, this.selectedRelationType, this.selectedWpId)
|
|
.then(relation => {
|
|
this.$scope.$emit('wp-relations.changed', relation);
|
|
this.wpNotificationsService.showSave(this.workPackage);
|
|
})
|
|
.catch(err => this.wpNotificationsService.handleErrorResponse(err, this.workPackage))
|
|
.finally(() => this.toggleRelationsCreateForm());
|
|
}
|
|
|
|
public toggleRelationsCreateForm() {
|
|
this.showRelationsCreateForm = !this.showRelationsCreateForm;
|
|
this.externalFormToggle = !this.externalFormToggle;
|
|
|
|
this.$timeout(() => {
|
|
if (!this.showRelationsCreateForm) {
|
|
// Reset value
|
|
this.selectedWpId = '';
|
|
this.$element.find('.-focus-after-save').first().focus();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function wpRelationsCreate() {
|
|
return {
|
|
restrict: 'E',
|
|
|
|
templateUrl: (el, attrs) => {
|
|
return '/components/wp-relations/wp-relations-create/' + attrs.template + '.template.html';
|
|
},
|
|
|
|
scope: {
|
|
workPackage: '=?',
|
|
fixedRelationType: '@?',
|
|
externalFormToggle: '=?'
|
|
},
|
|
|
|
controller: WorkPackageRelationsCreateController,
|
|
bindToController: true,
|
|
controllerAs: '$ctrl',
|
|
};
|
|
}
|
|
|
|
wpDirectivesModule.directive('wpRelationsCreate', wpRelationsCreate);
|
|
|