diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-05-09 14:23:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 14:23:29 +0200 |
commit | 04a5c34cac49b3d7fb16d95250bcc897f4432f31 (patch) | |
tree | 6a933e5a04c0030e31d89b5b4eb4da3fccf3f84c /apps | |
parent | 46f7e8202fa5f5c2af6ac6e5dcb82be8a5db8f22 (diff) | |
parent | 0db3a413b3255885e21821830943476c83b091b0 (diff) | |
download | nextcloud-server-04a5c34cac49b3d7fb16d95250bcc897f4432f31.tar.gz nextcloud-server-04a5c34cac49b3d7fb16d95250bcc897f4432f31.zip |
Merge pull request #4746 from nextcloud/fix-mentioned-user-not-clickable-after-posting-or-editing-a-comment
Fix mentioned user not clickable after posting or editing a comment
Diffstat (limited to 'apps')
-rw-r--r-- | apps/comments/js/commentstabview.js | 13 | ||||
-rw-r--r-- | apps/comments/tests/js/commentstabviewSpec.js | 124 |
2 files changed, 131 insertions, 6 deletions
diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js index ace0862ad2e..3a20604326b 100644 --- a/apps/comments/js/commentstabview.js +++ b/apps/comments/js/commentstabview.js @@ -239,8 +239,12 @@ username, 0, $el.find('.authorRow')); } - var message = $el.find('.message'); - message.find('.avatar').each(function() { + var $message = $el.find('.message'); + this._postRenderMessage($message); + }, + + _postRenderMessage: function($el) { + $el.find('.avatar').each(function() { var avatar = $(this); var strong = $(this).next(); var appendTo = $(this).parent(); @@ -419,10 +423,13 @@ $textArea.val('').prop('disabled', false); } - $target.find('.message') + var $message = $target.find('.message'); + $message .html(self._formatMessage(model.get('message'), model.get('mentions'))) .find('.avatar') .each(function () { $(this).avatar(); }); + + self._postRenderMessage($message); }, error: function () { self._onSubmitError($form, commentId); diff --git a/apps/comments/tests/js/commentstabviewSpec.js b/apps/comments/tests/js/commentstabviewSpec.js index c961548d806..63a27956f9f 100644 --- a/apps/comments/tests/js/commentstabviewSpec.js +++ b/apps/comments/tests/js/commentstabviewSpec.js @@ -22,6 +22,7 @@ describe('OCA.Comments.CommentsTabView tests', function() { var view, fileInfoModel; var fetchStub; + var avatarStub; var testComments; var clock; @@ -42,6 +43,7 @@ describe('OCA.Comments.CommentsTabView tests', function() { beforeEach(function() { clock = sinon.useFakeTimers(Date.UTC(2016, 1, 3, 10, 5, 9)); fetchStub = sinon.stub(OCA.Comments.CommentCollection.prototype, 'fetchNext'); + avatarStub = sinon.stub($.fn, 'avatar'); view = new OCA.Comments.CommentsTabView(); fileInfoModel = new OCA.Files.FileInfoModel({ id: 5, @@ -102,6 +104,7 @@ describe('OCA.Comments.CommentsTabView tests', function() { view.remove(); view = undefined; fetchStub.restore(); + avatarStub.restore(); clock.restore(); }); describe('rendering', function() { @@ -151,9 +154,11 @@ describe('OCA.Comments.CommentsTabView tests', function() { expect($comment.length).toEqual(1); expect($comment.find('.avatar[data-user=macbeth]').length).toEqual(1); expect($comment.find('strong:first').text()).toEqual('Thane of Cawdor'); + expect($comment.find('.avatar[data-user=macbeth] ~ .contactsmenu-popover').length).toEqual(1); expect($comment.find('.avatar[data-user=banquo]').length).toEqual(1); expect($comment.find('.avatar-name-wrapper:last-child strong').text()).toEqual('Lord Banquo'); + expect($comment.find('.avatar[data-user=banquo] ~ .contactsmenu-popover').length).toEqual(1); }); }); @@ -223,6 +228,10 @@ describe('OCA.Comments.CommentsTabView tests', function() { uid: 'testuser', displayName: 'Test User' }); + + // Required for the absolute selector used to find the new comment + // after a successful creation in _onSubmitSuccess. + $('#testArea').append(view.$el); }); afterEach(function() { createStub.restore(); @@ -243,6 +252,50 @@ describe('OCA.Comments.CommentsTabView tests', function() { creationDateTime: new Date(Date.UTC(2016, 1, 3, 10, 5, 9)).toUTCString() }); }); + it('creates a new comment with mentions when clicking post button', function() { + view.$el.find('.message').val('New message @anotheruser'); + view.$el.find('form').submit(); + + var createStubExpectedData = { + actorId: 'testuser', + actorDisplayName: 'Test User', + actorType: 'users', + verb: 'comment', + message: 'New message @anotheruser', + creationDateTime: new Date(Date.UTC(2016, 1, 3, 10, 5, 9)).toUTCString() + }; + + expect(createStub.calledOnce).toEqual(true); + expect(createStub.lastCall.args[0]).toEqual(createStubExpectedData); + + var model = new OCA.Comments.CommentModel(_.extend({id: 4}, createStubExpectedData)); + var fetchStub = sinon.stub(model, 'fetch'); + // simulate the fact that create adds the model to the collection + view.collection.add(model, {at: 0}); + createStub.yieldTo('success', model); + + expect(fetchStub.calledOnce).toEqual(true); + + // simulate the fact that fetch sets the attribute + model.set('mentions', { + 0: { + mentionDisplayName: "Another User", + mentionId: "anotheruser", + mentionTye: "user" + } + }); + fetchStub.yieldTo('success', model); + + // comment was added to the list + var $comment = view.$el.find('.comment[data-id=4]'); + expect($comment.length).toEqual(1); + var $message = $comment.find('.message'); + expect($message.html()).toContain('New message'); + expect($message.find('.avatar').length).toEqual(1); + expect($message.find('.avatar[data-user=anotheruser]').length).toEqual(1); + expect($message.find('.avatar[data-user=anotheruser] ~ strong').text()).toEqual('Another User'); + expect($message.find('.avatar[data-user=anotheruser] ~ .contactsmenu-popover').length).toEqual(1); + }); it('does not create a comment if the field is empty', function() { view.$el.find('.message').val(' '); view.$el.find('form').submit(); @@ -302,13 +355,11 @@ describe('OCA.Comments.CommentsTabView tests', function() { describe('editing comments', function() { var saveStub; var fetchStub; - var avatarStub; var currentUserStub; beforeEach(function() { saveStub = sinon.stub(OCA.Comments.CommentModel.prototype, 'save'); fetchStub = sinon.stub(OCA.Comments.CommentModel.prototype, 'fetch'); - avatarStub = sinon.stub($.fn, 'avatar'); currentUserStub = sinon.stub(OC, 'getCurrentUser'); currentUserStub.returns({ uid: 'testuser', @@ -332,11 +383,31 @@ describe('OCA.Comments.CommentsTabView tests', function() { message: 'New message from another user', creationDateTime: new Date(Date.UTC(2016, 1, 3, 10, 5, 9)).toUTCString(), }); + view.collection.add({ + id: 3, + actorId: 'testuser', + actorDisplayName: 'Test User', + actorType: 'users', + verb: 'comment', + message: 'Hail to thee, @macbeth. Yours faithfully, @banquo', + creationDateTime: new Date(Date.UTC(2016, 1, 3, 10, 5, 9)).toUTCString(), + mentions: { + 0: { + mentionDisplayName: "Thane of Cawdor", + mentionId: "macbeth", + mentionTye: "user" + }, + 1: { + mentionDisplayName: "Lord Banquo", + mentionId: "banquo", + mentionTye: "user" + } + } + }); }); afterEach(function() { saveStub.restore(); fetchStub.restore(); - avatarStub.restore(); currentUserStub.restore(); }); @@ -394,6 +465,53 @@ describe('OCA.Comments.CommentsTabView tests', function() { expect($formRow.length).toEqual(0); }); + it('saves message and updates comment item with mentions when clicking save', function() { + var $comment = view.$el.find('.comment[data-id=3]'); + $comment.find('.action.edit').click(); + + var $formRow = view.$el.find('.newCommentRow.comment[data-id=3]'); + expect($formRow.length).toEqual(1); + + $formRow.find('textarea').val('modified\nmessage @anotheruser'); + $formRow.find('form').submit(); + + expect(saveStub.calledOnce).toEqual(true); + expect(saveStub.lastCall.args[0]).toEqual({ + message: 'modified\nmessage @anotheruser' + }); + + var model = view.collection.get(3); + // simulate the fact that save sets the attribute + model.set('message', 'modified\nmessage @anotheruser'); + saveStub.yieldTo('success', model); + + expect(fetchStub.calledOnce).toEqual(true); + + // simulate the fact that fetch sets the attribute + model.set('mentions', { + 0: { + mentionDisplayName: "Another User", + mentionId: "anotheruser", + mentionTye: "user" + } + }); + fetchStub.yieldTo('success', model); + + // original comment element is visible again + expect($comment.hasClass('hidden')).toEqual(false); + // and its message was updated + var $message = $comment.find('.message'); + expect($message.html()).toContain('modified<br>message'); + expect($message.find('.avatar').length).toEqual(1); + expect($message.find('.avatar[data-user=anotheruser]').length).toEqual(1); + expect($message.find('.avatar[data-user=anotheruser] ~ strong').text()).toEqual('Another User'); + expect($message.find('.avatar[data-user=anotheruser] ~ .contactsmenu-popover').length).toEqual(1); + + // form row is gone + $formRow = view.$el.find('.newCommentRow.comment[data-id=3]'); + expect($formRow.length).toEqual(0); + }); + it('restores original comment when cancelling', function() { var $comment = view.$el.find('.comment[data-id=1]'); $comment.find('.action.edit').click(); |