// -- 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 WORK_PACKAGE_ATTRIBUTES, protected loadingIndicator, protected I18n, protected wpCacheService, protected NotificationsService, protected inplaceEditAll, protected wpAttachments, protected SingleViewWorkPackage) { this.groupedFields = angular.copy(WORK_PACKAGE_ATTRIBUTES); this.text = { noStartDate: I18n.t('js.label_no_start_date'), noDueDate: 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.type.$load().then(() => { if (this.workPackage.type.isMilestone) { this.text.noStartDate = '-'; } }); 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 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);