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.
110 lines
3.8 KiB
110 lines
3.8 KiB
9 years ago
|
// -- 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.
|
||
|
// ++
|
||
|
|
||
9 years ago
|
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];
|
||
|
};
|
||
|
}
|
||
9 years ago
|
|
||
9 years ago
|
function inplaceEditorDisplayPane(EditableFieldsState, $timeout) {
|
||
9 years ago
|
return {
|
||
|
replace: true,
|
||
|
transclude: true,
|
||
9 years ago
|
require: '^wpField',
|
||
|
templateUrl: '/components/inplace-edit/display-pane/display-pane.directive.html',
|
||
9 years ago
|
controller: InplaceEditorDisplayPaneController,
|
||
|
controllerAs: 'displayPaneController',
|
||
9 years ago
|
|
||
9 years ago
|
link: function(scope, element, attrs, fieldController) {
|
||
9 years ago
|
var field = scope.field;
|
||
|
|
||
9 years ago
|
scope.fieldController = fieldController;
|
||
|
scope.editableFieldsState = EditableFieldsState;
|
||
9 years ago
|
|
||
9 years ago
|
scope.$watchCollection('editableFieldsState.workPackage.form', function() {
|
||
9 years ago
|
var strategy = field.getInplaceDisplayStrategy();
|
||
9 years ago
|
|
||
9 years ago
|
if (strategy !== scope.displayStrategy) {
|
||
|
scope.displayStrategy = strategy;
|
||
9 years ago
|
scope.templateUrl =
|
||
|
'/components/inplace-edit/field-templates/display/' + strategy + '.html';
|
||
9 years ago
|
}
|
||
|
});
|
||
9 years ago
|
|
||
9 years ago
|
scope.$watch('editableFieldsState.errors', function(errors) {
|
||
9 years ago
|
if (errors && errors[field.name] && field.isEditable()) {
|
||
9 years ago
|
scope.displayPaneController.startEditing();
|
||
9 years ago
|
}
|
||
|
}, true);
|
||
9 years ago
|
|
||
9 years ago
|
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();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
9 years ago
|
|
||
9 years ago
|
fieldController.lockFocus = false;
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
}
|
||
9 years ago
|
|
||
9 years ago
|
angular
|
||
|
.module('openproject.inplace-edit')
|
||
|
.directive('inplaceEditorDisplayPane', inplaceEditorDisplayPane);
|