2017-01-27 15:33:08 -08:00
|
|
|
// Copyright (C) 2017 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Polymer({
|
|
|
|
is: 'gr-diff-comment-thread-group',
|
|
|
|
|
|
|
|
properties: {
|
|
|
|
changeNum: String,
|
2018-02-08 09:50:48 -08:00
|
|
|
commentSide: String,
|
2017-01-27 15:33:08 -08:00
|
|
|
comments: {
|
|
|
|
type: Array,
|
2017-05-16 14:01:18 -07:00
|
|
|
value() { return []; },
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
2017-07-31 14:33:16 -07:00
|
|
|
projectName: String,
|
2017-02-09 07:34:23 -08:00
|
|
|
patchForNewThreads: String,
|
2017-01-27 15:33:08 -08:00
|
|
|
range: Object,
|
2017-03-13 16:40:01 -07:00
|
|
|
isOnParent: {
|
|
|
|
type: Boolean,
|
|
|
|
value: false,
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
2017-11-17 10:57:46 -08:00
|
|
|
parentIndex: {
|
|
|
|
type: Number,
|
|
|
|
value: null,
|
|
|
|
},
|
2017-02-09 07:34:23 -08:00
|
|
|
_threads: {
|
2017-01-27 15:33:08 -08:00
|
|
|
type: Array,
|
2017-05-16 14:01:18 -07:00
|
|
|
value() { return []; },
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
observers: [
|
|
|
|
'_commentsChanged(comments.*)',
|
|
|
|
],
|
|
|
|
|
2018-02-08 09:50:48 -08:00
|
|
|
/**
|
|
|
|
* Adds a new thread. Range is optional because a comment can be
|
|
|
|
* added to a line without a range selected.
|
|
|
|
*
|
|
|
|
* @param {!Object} opt_range
|
|
|
|
*/
|
|
|
|
addNewThread(opt_range) {
|
2017-02-09 07:34:23 -08:00
|
|
|
this.push('_threads', {
|
2017-01-27 15:33:08 -08:00
|
|
|
comments: [],
|
2017-02-09 07:34:23 -08:00
|
|
|
patchNum: this.patchForNewThreads,
|
2018-02-08 09:50:48 -08:00
|
|
|
range: opt_range,
|
2017-01-27 15:33:08 -08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-08 09:50:48 -08:00
|
|
|
removeThread(rootId) {
|
2017-05-16 14:01:18 -07:00
|
|
|
for (let i = 0; i < this._threads.length; i++) {
|
2018-02-08 09:50:48 -08:00
|
|
|
if (this._threads[i].rootId === rootId) {
|
2017-02-09 07:34:23 -08:00
|
|
|
this.splice('_threads', i, 1);
|
2017-01-27 15:33:08 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-08 09:50:48 -08:00
|
|
|
/**
|
|
|
|
* Fetch the thread group at the given range, or the range-less thread
|
|
|
|
* on the line if no range is provided.
|
|
|
|
*
|
|
|
|
* @param {!Object=} opt_range
|
|
|
|
* @return {!Object|undefined}
|
|
|
|
*/
|
|
|
|
getThread(opt_range) {
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
const threadEls =
|
|
|
|
Polymer.dom(this.root).querySelectorAll('gr-diff-comment-thread');
|
|
|
|
const threads = [].filter.call(threadEls,
|
|
|
|
thread => this._rangesEqual(thread.range, opt_range));
|
2017-01-27 15:33:08 -08:00
|
|
|
if (threads.length === 1) {
|
|
|
|
return threads[0];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
/**
|
|
|
|
* Compare two ranges. Either argument may be falsy, but will only return
|
|
|
|
* true if both are falsy or if neither are falsy and have the same position
|
|
|
|
* values.
|
|
|
|
*
|
|
|
|
* @param {Object=} a range 1
|
|
|
|
* @param {Object=} b range 2
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
_rangesEqual(a, b) {
|
|
|
|
if (!a && !b) { return true; }
|
|
|
|
if (!a || !b) { return false; }
|
|
|
|
return a.startLine === b.startLine &&
|
|
|
|
a.startChar === b.startChar &&
|
|
|
|
a.endLine === b.endLine &&
|
|
|
|
a.endChar === b.endChar;
|
|
|
|
},
|
|
|
|
|
2017-05-16 14:01:18 -07:00
|
|
|
_commentsChanged() {
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
this._threads = this._getThreads(this.comments);
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
|
|
|
|
2017-05-16 14:01:18 -07:00
|
|
|
_sortByDate(threadGroups) {
|
2017-01-27 15:33:08 -08:00
|
|
|
if (!threadGroups.length) { return; }
|
2017-05-16 14:01:18 -07:00
|
|
|
return threadGroups.sort((a, b) => {
|
Move reply buttons to comment thread
Move all buttons that generate a reply of some sort (done, ack, reply,
quote) to the comment thread instead of the comment [1].
When there is a draft for a particular comment thread, all reply buttons
are hidden [2]. For example, if you click reply, you cannot click done
on the same thread, unless you remove the draft.
Each thread can have up to 1 draft. It's also worth noting that if a
thread has a draft, and the user clicks on the line or 'c' at the same
range, the existing draft will switch to 'editing' form.
[1] With the exception of "please fix" for robot comments.
[2] In this case, The please fix button will be disabled when other
reply buttons are hidden.
Feature: Issue 5410
Change-Id: Id847ee0cba0d0ce4e5b6476f58141866d41ffdad
2017-02-09 16:07:32 -08:00
|
|
|
// If a comment is a draft, it doesn't have a start_datetime yet.
|
|
|
|
// Assume it is newer than the comment it is being compared to.
|
|
|
|
if (!a.start_datetime) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!b.start_datetime) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-02-06 18:15:14 -08:00
|
|
|
return util.parseDate(a.start_datetime) -
|
|
|
|
util.parseDate(b.start_datetime);
|
2017-01-27 15:33:08 -08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-05-16 14:01:18 -07:00
|
|
|
_calculateLocationRange(range, comment) {
|
2017-01-27 15:33:08 -08:00
|
|
|
return 'range-' + range.start_line + '-' +
|
|
|
|
range.start_character + '-' +
|
|
|
|
range.end_line + '-' +
|
2017-01-30 12:03:13 -08:00
|
|
|
range.end_character + '-' +
|
|
|
|
comment.__commentSide;
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
|
|
|
|
2017-02-09 07:34:23 -08:00
|
|
|
/**
|
|
|
|
* Determines what the patchNum of a thread should be. Use patchNum from
|
|
|
|
* comment if it exists, otherwise the property of the thread group.
|
|
|
|
* This is needed for switching between side-by-side and unified views when
|
|
|
|
* there are unsaved drafts.
|
|
|
|
*/
|
2017-05-16 14:01:18 -07:00
|
|
|
_getPatchNum(comment) {
|
2017-02-09 07:34:23 -08:00
|
|
|
return comment.patchNum || this.patchForNewThreads;
|
|
|
|
},
|
|
|
|
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
_getThreads(comments) {
|
2018-02-05 18:10:01 -08:00
|
|
|
const sortedComments = comments.slice(0).sort((a, b) =>
|
|
|
|
util.parseDate(a.updated) - util.parseDate(b.updated));
|
2017-01-27 15:33:08 -08:00
|
|
|
|
2018-02-05 18:10:01 -08:00
|
|
|
const threads = [];
|
|
|
|
for (const comment of sortedComments) {
|
|
|
|
// If the comment is in reply to another comment, find that comment's
|
|
|
|
// thread and append to it.
|
|
|
|
if (comment.in_reply_to) {
|
|
|
|
const thread = threads.find(thread =>
|
|
|
|
thread.comments.some(c => c.id === comment.in_reply_to));
|
|
|
|
if (thread) {
|
|
|
|
thread.comments.push(comment);
|
|
|
|
continue;
|
|
|
|
}
|
2017-01-27 15:33:08 -08:00
|
|
|
}
|
|
|
|
|
2018-02-05 18:10:01 -08:00
|
|
|
// Otherwise, this comment starts its own thread.
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
const newThread = {
|
2018-02-05 18:10:01 -08:00
|
|
|
start_datetime: comment.updated,
|
|
|
|
comments: [comment],
|
|
|
|
commentSide: comment.__commentSide,
|
|
|
|
patchNum: this._getPatchNum(comment),
|
2018-02-08 09:50:48 -08:00
|
|
|
rootId: comment.id,
|
Correct logic for matching a new comment to its thread in a group
When a new comment is being added to a line, Gerrit checks to see if
there is an existing thread on the same line (and same range, if any) so
that the comment can be appended to it if so. Otherwise, a new thread is
created.
However, following I4f7804ac02, the logic to identify the appropriate
thread by range was refactored to not use range location strings, but
use range objects instead. Problematically, there were two flaws in this
code:
1) The range object references were compared rather than their values.
2) Only new threads were being rendered with their corresponding ranges
whereas existing threads were not.
As a result, if the user attempted to add a line comment on a line with
an existing ranged comment, the ranged comment's thread would be
identified as the destination (because the new comment has no range and
the existing thread's range was not being set). Appending the range-less
comment to a ranged thread resulted in incoherent data and the draft
would be unsavable.
With this change, the logic uses value equality to match ranges and the
`gr-diff-comment-thread-group#_getThreads` method is updated to set the
range on existing threads.
Bug: Issue 8410
Change-Id: If34e0d46a5c1af81bec82125217088fb574a2f61
2018-02-21 12:47:26 -08:00
|
|
|
};
|
|
|
|
if (comment.range) {
|
|
|
|
newThread.range = Object.assign({}, comment.range);
|
|
|
|
}
|
|
|
|
threads.push(newThread);
|
2017-05-16 14:01:18 -07:00
|
|
|
}
|
2018-02-05 18:10:01 -08:00
|
|
|
return threads;
|
2017-01-27 15:33:08 -08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
})();
|