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.
136 lines
4.5 KiB
136 lines
4.5 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 {opWorkPackagesModule} from "../../../angular-modules";
|
|
import {scopedObservable} from "../../../helpers/angular-rx-utils";
|
|
|
|
export class WorkPackageSingleViewController {
|
|
public workPackage;
|
|
public singleViewWp;
|
|
public groupedFields:any[] = [];
|
|
public hideEmptyFields:boolean = true;
|
|
public filesExist:boolean = false;
|
|
public text:any;
|
|
|
|
protected firstTimeFocused:boolean = false;
|
|
|
|
constructor(protected $scope,
|
|
protected $window,
|
|
protected $state,
|
|
protected $stateParams,
|
|
protected loadingIndicator,
|
|
protected I18n,
|
|
protected wpCacheService,
|
|
protected NotificationsService,
|
|
protected WorkPackagesOverviewService,
|
|
protected inplaceEditAll,
|
|
protected wpAttachments,
|
|
protected SingleViewWorkPackage) {
|
|
|
|
this.groupedFields = WorkPackagesOverviewService.getGroupedWorkPackageOverviewAttributes();
|
|
this.text = {
|
|
fields: {
|
|
date: { startDate: I18n.t('js.label_no_start_date'),
|
|
dueDate: I18n.t('js.label_no_due_date') }
|
|
}
|
|
};
|
|
|
|
scopedObservable($scope, wpCacheService.loadWorkPackage($stateParams.workPackageId)).subscribe(wp => {
|
|
this.workPackage = wp;
|
|
this.singleViewWp = new SingleViewWorkPackage(wp);
|
|
|
|
this.workPackage.schema.$load().then(schema => {
|
|
this.setFocus();
|
|
|
|
var otherGroup:any = _.find(this.groupedFields, {groupName: 'other'});
|
|
otherGroup.attributes = [];
|
|
|
|
angular.forEach(schema, (prop, propName) => {
|
|
if (propName.match(/^customField/)) {
|
|
otherGroup.attributes.push(propName);
|
|
}
|
|
});
|
|
|
|
otherGroup.attributes.sort((leftField, rightField) => {
|
|
var getLabel = field => this.singleViewWp.getLabel(field);
|
|
var left = getLabel(leftField).toLowerCase();
|
|
var right = getLabel(rightField).toLowerCase();
|
|
|
|
return left.localeCompare(right);
|
|
});
|
|
});
|
|
|
|
wpAttachments.hasAttachments(this.workPackage).then(bool => {
|
|
this.filesExist = bool;
|
|
});
|
|
});
|
|
|
|
$scope.$on('workPackageUpdatedInEditor', () => {
|
|
NotificationsService.addSuccess({
|
|
message: I18n.t('js.notice_successful_update'),
|
|
link: {
|
|
target: () => {
|
|
loadingIndicator.mainPage = $state.go('work-packages.show.activity', $state.params);
|
|
},
|
|
text: I18n.t('js.work_packages.message_successful_show_in_fullscreen')
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
public shouldHideGroup(group) {
|
|
return this.singleViewWp.shouldHideGroup(this.hideEmptyFields, this.groupedFields, group);
|
|
}
|
|
|
|
public shouldHideField(field) {
|
|
return this.singleViewWp.shouldHideField(field, this.hideEmptyFields);
|
|
};
|
|
|
|
public setFocus() {
|
|
if (!this.firstTimeFocused) {
|
|
this.firstTimeFocused = true;
|
|
angular.element(this.$window).trigger('resize');
|
|
angular.element('.work-packages--details--subject .focus-input').focus();
|
|
}
|
|
}
|
|
}
|
|
|
|
function wpSingleViewDirective() {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: '/components/work-packages/wp-single-view/wp-single-view.directive.html',
|
|
|
|
scope: {},
|
|
|
|
bindToController: true,
|
|
controller: WorkPackageSingleViewController,
|
|
controllerAs: '$ctrl'
|
|
};
|
|
}
|
|
|
|
opWorkPackagesModule.directive('wpSingleView', wpSingleViewDirective);
|
|
|