summaryrefslogtreecommitdiffstats
path: root/apps/comments/tests/js
Commit message (Collapse)AuthorAgeFilesLines
* Adjust unit tests to new OCA.SidebarJohn Molakvoæ (skjnldsv)2019-10-291-1/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Show avatar using "span" instead of "div"Daniel Calviño Sánchez2018-09-051-1/+1
| | | | | | | | Visually it makes no difference, but as the ".avatar" element is inside a "span" element it can not be a block element to be compliant with the HTML specification. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fixing failing test cases due to change in functionality.Abijeet2018-03-271-22/+20
| | | | | | Also fixes scrutinizer warnings. Signed-off-by: Abijeet <abijeetpatro@gmail.com>
* Show max warning comment lenth againRoeland Jago Douma2018-01-021-2/+2
| | | | | | | | | Fixes #7414 Since we no longer use an input field we have to use text instead of val. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Fix Enter sending comment instead of adding autocomplete item to messageDaniel Calviño Sánchez2017-12-071-0/+45
| | | | | | | | | | | | | When the autocomplete popover is shown the At.js plugin listens on the message input field for key down events, and when Enter is pressed it adds the selected item to the message. However, as "_onTypeComment" also handles key down events for the message input field, when Enter was pressed the comment was submitted and At.js had no chance to add the item before that happened. Now when Enter is pressed and the autocomplete popover is shown the comment is not submitted, and thus At.js adds the selected item to the message as expected. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Add unit tests for posting comments with enter keyDaniel Calviño Sánchez2017-11-301-0/+28
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Set text only in the message div of the new comment formDaniel Calviño Sánchez2017-11-301-10/+13
| | | | | | | | When finding ".message" elements on "view.$el" the message area for the new comment form and all the comments were matched. Now the selector was restricted to match only the message area for the new comment form. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* adjust jsunit testsArthur Schiwon2017-11-011-7/+8
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Fix mentioned user not clickable after posting or editing a commentDaniel Calviño Sánchez2017-05-081-0/+4
| | | | | | | | | | | | | | | | | | | The contactsMenu plugin was called on avatar elements from _postRenderItem, which is called when a new comment is added to the collection. Due to this contactsMenu was not called when messages were edited; when a new comment is posted _postRenderItem is called, but at that time the "mentions" attribute is not filled yet, so "@username" is not replaced by avatars in the message and thus contactsMenu has no avatars to be called on. Calling contactsMenu was moved to a new method, _postRenderMessage, which is called from _postRenderItem and from the success callback when fetching the model in _onSubmitSuccess (which replaces "@username" by avatars in the message after posting or editing a comment). Fixes #4555 Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Add missing unit tests for comments with mentionsDaniel Calviño Sánchez2017-05-081-3/+117
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* fix CommentsTabsView js testGeorg Ehrke2017-04-261-1/+1
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Always enable avatarsMorris Jobke2017-02-131-14/+3
| | | | | | | | | * we introduced this setting in the begining because our avatar support caused some performance issues, but we fixed them and should only provide one way how Nextcloud looks Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* fix JS test and introduce tests for rendering mentions to displaynamesArthur Schiwon2016-10-251-8/+62
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Fix js testRoeland Jago Douma2016-10-041-1/+1
|
* Fix js unit testRoeland Jago Douma2016-08-171-2/+2
|
* Limit comment size to 1000 in UIVincent Petry2016-02-051-0/+78
| | | | | | | | Whenever the limit is almost reached (90% of the length), a tooltip will appear. Once the limit is exceeded, the "Post" button will be disabled and the field will become red.
* Special label for deleted users in comments listVincent Petry2016-02-041-1/+9
|
* Added unit tests for edit/delete commentsVincent Petry2016-02-031-0/+134
|
* Reset comments read marker after loading commentsVincent Petry2016-02-032-4/+82
|
* Add file row indicator for unread commentsVincent Petry2016-02-031-0/+102
|
* Added JS unit tests for commentsVincent Petry2016-02-022-0/+302