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/inplace-edit/display-pane/display-pane.directive.ts

110 lines
3.8 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.
// ++
function InplaceEditorDisplayPaneController($scope, HookService, I18n:op.I18n) {
var field = $scope.field;
this.getAriaLabel = function() {
return I18n.t('js.work_packages.edit_attribute', { attribute: field.getKeyValue() });
};
this.placeholder = field.placeholder;
this.startEditing = function() {
if (!field.isEditable()) {
throw 'Trying to edit the non editable field "' + field.name + '"';
}
var fieldController = $scope.fieldController;
fieldController.isEditing = true;
};
// for dynamic type that is set by plugins
// refactor to a service method the whole extraction
this.getDynamicDirectiveName = function() {
return HookService.call('workPackageOverviewAttributes', {
type: field.getSchema(field.resource).props[field.name].type,
field: field.name,
workPackage: field.resource
})[0];
};
}
function inplaceEditorDisplayPane(EditableFieldsState, $timeout) {
return {
replace: true,
transclude: true,
require: '^wpField',
templateUrl: '/components/inplace-edit/display-pane/display-pane.directive.html',
controller: InplaceEditorDisplayPaneController,
controllerAs: 'displayPaneController',
link: function(scope, element, attrs, fieldController) {
var field = scope.field;
scope.fieldController = fieldController;
scope.editableFieldsState = EditableFieldsState;
scope.$watchCollection('editableFieldsState.workPackage.form', function() {
var strategy = field.getInplaceDisplayStrategy();
if (strategy !== scope.displayStrategy) {
scope.displayStrategy = strategy;
scope.templateUrl =
'/components/inplace-edit/field-templates/display/' + strategy + '.html';
}
});
scope.$watch('editableFieldsState.errors', function(errors) {
if (errors && errors[field.name] && field.isEditable()) {
scope.displayPaneController.startEditing();
}
}, true);
scope.$watch('fieldController.isEditing', function(isEditing, oldIsEditing) {
if (!isEditing && !fieldController.lockFocus) {
$timeout(function() {
if (oldIsEditing) {
// check old value to not trigger focus on the first time
element.find('.inplace-editing--trigger-link').focus();
}
element.find('.inplace-edit--read-value a').off('click').on('click', function(e) {
e.stopPropagation();
});
});
}
fieldController.lockFocus = false;
});
}
};
}
angular
.module('openproject.inplace-edit')
.directive('inplaceEditorDisplayPane', inplaceEditorDisplayPane);