Merge "Add a proper message for no threads in findings tab."
This commit is contained in:
@@ -637,6 +637,7 @@ limitations under the License.
|
||||
threads="[[_commentThreads]]"
|
||||
change="[[_change]]"
|
||||
change-num="[[_changeNum]]"
|
||||
comment-tab="[[_currentView]]"
|
||||
logged-in="[[_loggedIn]]"
|
||||
only-show-robot-comments-with-human-reply
|
||||
on-thread-list-modified="_handleReloadDiffComments"></gr-thread-list>
|
||||
@@ -654,6 +655,7 @@ limitations under the License.
|
||||
change="[[_change]]"
|
||||
change-num="[[_changeNum]]"
|
||||
logged-in="[[_loggedIn]]"
|
||||
comment-tab="[[_currentView]]"
|
||||
hide-toggle-buttons
|
||||
on-thread-list-modified="_handleReloadDiffComments"></gr-thread-list>
|
||||
</template>
|
||||
|
||||
@@ -76,7 +76,7 @@ limitations under the License.
|
||||
</template>
|
||||
<div id="threads">
|
||||
<template is="dom-if" if="[[!threads.length]]">
|
||||
There are no inline comment threads on any diff for this change.
|
||||
[[_computeNoThreadsMessage(commentTab)]]
|
||||
</template>
|
||||
<template
|
||||
is="dom-repeat"
|
||||
|
||||
@@ -23,6 +23,17 @@
|
||||
* @event thread-list-modified
|
||||
* @extends Polymer.Element
|
||||
*/
|
||||
const NO_THREADS_MESSAGE = 'There are no inline comment threads on any diff '
|
||||
+ 'for this change.';
|
||||
const NO_ROBOT_COMMENTS_THREADS_MESSAGE = 'There are no findings for this ' +
|
||||
'patchset.';
|
||||
|
||||
const CommentTabs = {
|
||||
CHANGE_LOG: 0,
|
||||
COMMENT_THREADS: 1,
|
||||
ROBOT_COMMENTS: 2,
|
||||
};
|
||||
|
||||
class GrThreadList extends Polymer.GestureEventListeners(
|
||||
Polymer.LegacyElementMixin(
|
||||
Polymer.Element)) {
|
||||
@@ -62,6 +73,7 @@
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
commentTab: Number,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -71,6 +83,13 @@
|
||||
return loggedIn ? 'show' : '';
|
||||
}
|
||||
|
||||
_computeNoThreadsMessage(commentTab) {
|
||||
if (commentTab === CommentTabs.ROBOT_COMMENTS) {
|
||||
return NO_ROBOT_COMMENTS_THREADS_MESSAGE;
|
||||
}
|
||||
return NO_THREADS_MESSAGE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Order as follows:
|
||||
* - Unresolved threads with drafts (reverse chronological)
|
||||
|
||||
Reference in New Issue
Block a user