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.
198 lines
5.5 KiB
198 lines
5.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.
|
|
//++
|
|
|
|
module.exports = function(
|
|
$timeout,
|
|
$location,
|
|
$q,
|
|
WorkPackageFieldService,
|
|
EditableFieldsState,
|
|
FocusHelper,
|
|
I18n,
|
|
ActivityService,
|
|
ConfigurationService,
|
|
AutoCompleteHelper,
|
|
NotificationsService) {
|
|
|
|
function commentFieldDirectiveController($scope, $element) {
|
|
var ctrl = this;
|
|
ctrl.state = EditableFieldsState;
|
|
ctrl.field = 'activity-comment';
|
|
ctrl.writeValue = { raw: '' };
|
|
|
|
ctrl.editTitle = I18n.t('js.inplace.button_edit', { attribute: I18n.t('js.label_comment') });
|
|
ctrl.placeholder = I18n.t('js.label_add_comment_title');
|
|
ctrl.title = I18n.t('js.label_add_comment_title');
|
|
|
|
ctrl.state.isBusy = false;
|
|
ctrl.isEditing = ctrl.state.forcedEditState;
|
|
ctrl.isRequired = true;
|
|
ctrl.canAddComment = !!ctrl.workPackage.links.addComment;
|
|
|
|
ctrl.showAbove = ConfigurationService.commentsSortedInDescendingOrder();
|
|
|
|
ctrl.isEmpty = function() {
|
|
return !ctrl.writeValue.raw;
|
|
};
|
|
|
|
ctrl.isEditable = function() {
|
|
return true;
|
|
};
|
|
|
|
// Propagate submission to all active fields
|
|
ctrl.submit = function(notify) {
|
|
|
|
// Avoid submitting empty comments
|
|
if (ctrl.isEmpty()) {
|
|
return;
|
|
}
|
|
|
|
var nextActivity = ctrl.activities.length + 1;
|
|
WorkPackageFieldService.submitWorkPackageChanges(
|
|
notify,
|
|
function() {
|
|
$location.hash('activity-' + (nextActivity));
|
|
}
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Returns a promise to submits this very comment field
|
|
*/
|
|
ctrl.submitField = function(notify) {
|
|
var submit = $q.defer();
|
|
|
|
// Avoid submitting empty comments
|
|
// but do not break chain of promises
|
|
if (ctrl.isEmpty()) {
|
|
return submit.resolve();
|
|
}
|
|
|
|
ctrl.state.isBusy = true;
|
|
ActivityService.createComment(
|
|
ctrl.workPackage,
|
|
ctrl.writeValue,
|
|
notify
|
|
).then(function() {
|
|
ctrl.discardEditing();
|
|
NotificationsService.addSuccess(I18n.t('js.work_packages.comment_added'));
|
|
submit.resolve();
|
|
}, function() {
|
|
NotificationsService.addError(I18n.t('js.work_packages.comment_send_failed'));
|
|
ctrl.state.isBusy = false;
|
|
submit.reject();
|
|
});
|
|
|
|
return submit.promise;
|
|
};
|
|
|
|
ctrl.startEditing = function(withText) {
|
|
ctrl.isEditing = true;
|
|
ctrl.markActive();
|
|
|
|
if (withText) {
|
|
if (!ctrl.writeValue.raw) {
|
|
ctrl.writeValue.raw = '';
|
|
} else {
|
|
ctrl.writeValue.raw += '\n';
|
|
}
|
|
ctrl.writeValue.raw += withText;
|
|
}
|
|
|
|
$timeout(function() {
|
|
var inputElement = $element.find('.focus-input');
|
|
FocusHelper.focus(inputElement);
|
|
inputElement.triggerHandler('keyup');
|
|
ctrl.markActive();
|
|
inputElement.off('focus.inplace').on('focus.inplace', function() {
|
|
$scope.$apply(function() {
|
|
ctrl.markActive();
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
ctrl.discardEditing = function() {
|
|
delete EditableFieldsState.submissionPromises[ctrl.field];
|
|
ctrl.writeValue = { raw: '' };
|
|
ctrl.isEditing = false;
|
|
ctrl.state.isBusy = false;
|
|
};
|
|
|
|
ctrl.isActive = function() {
|
|
if (EditableFieldsState.forcedEditState) {
|
|
return false;
|
|
}
|
|
return ctrl.field === EditableFieldsState.currentField;
|
|
};
|
|
|
|
ctrl.markActive = function() {
|
|
EditableFieldsState.submissionPromises[ctrl.field] = {
|
|
field: ctrl.field,
|
|
thePromise: ctrl.submitField
|
|
};
|
|
EditableFieldsState.currentField = ctrl.field;
|
|
};
|
|
|
|
if (!EditableFieldsState.forcedEditState) {
|
|
$element.bind('keydown keypress', function(e) {
|
|
if (e.keyCode === 27) {
|
|
$scope.$apply(function() {
|
|
ctrl.discardEditing();
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
$scope.$on('workPackage.comment.quoteThis', function(evt, quote) {
|
|
ctrl.startEditing(quote);
|
|
});
|
|
}
|
|
|
|
return {
|
|
restrict: 'E',
|
|
replace: true,
|
|
transclude: true,
|
|
controllerAs: 'fieldController',
|
|
bindToController: true,
|
|
templateUrl: '/templates/work_packages/comment.html',
|
|
scope: {
|
|
workPackage: '=',
|
|
activities: '=',
|
|
},
|
|
controller: commentFieldDirectiveController,
|
|
link: function(scope, element) {
|
|
|
|
$timeout(function() {
|
|
AutoCompleteHelper.enableTextareaAutoCompletion(
|
|
element.find('textarea')
|
|
);
|
|
});
|
|
}
|
|
};
|
|
};
|
|
|