Move comment and thread elements to shared

Even before the refactorings, the comment and thread elements were also used
from views outside of diff/. Now they are now completely independent from
gr-diff and descendants, and can move into their own folder and drop the -diff
from their name.

The dependency left from diff/gr-diff-host onto comment[-thread], makes sense
since gr-diff-host is the Gerrit wrapper for gr-diff with gr-comment[-thread].

Change-Id: I5076428da980198989edc605e5edc0e4d66529dd
This commit is contained in:
Ole Rehmsen 2018-11-19 21:45:41 +01:00
parent 71e09f25a8
commit 9b94616a54
16 changed files with 60 additions and 60 deletions

View File

@ -91,7 +91,7 @@ iron-a11y-keys-behavior's keyBindings attribute to implement the binding in the
element. An example of this is in comment threads. A diff view supports actions element. An example of this is in comment threads. A diff view supports actions
on comment threads, but there may be zero or many comment threads attached at on comment threads, but there may be zero or many comment threads attached at
any given point. So the shortcut is declared as doc-only by the diff view and any given point. So the shortcut is declared as doc-only by the diff view and
by gr-app, and actually implemented by gr-diff-comment-thread. by gr-app, and actually implemented by gr-comment-thread.
NOTE: doc-only shortcuts will not be customizable in the same way that other NOTE: doc-only shortcuts will not be customizable in the same way that other
shortcuts are. shortcuts are.

View File

@ -219,7 +219,7 @@
[this.Shortcut.TOGGLE_FILE_REVIEWED]: '_handleToggleFileReviewed', [this.Shortcut.TOGGLE_FILE_REVIEWED]: '_handleToggleFileReviewed',
[this.Shortcut.TOGGLE_LEFT_PANE]: '_handleToggleLeftPane', [this.Shortcut.TOGGLE_LEFT_PANE]: '_handleToggleLeftPane',
// Final two are actually handled by gr-diff-comment-thread. // Final two are actually handled by gr-comment-thread.
[this.Shortcut.EXPAND_ALL_COMMENT_THREADS]: null, [this.Shortcut.EXPAND_ALL_COMMENT_THREADS]: null,
[this.Shortcut.COLLAPSE_ALL_COMMENT_THREADS]: null, [this.Shortcut.COLLAPSE_ALL_COMMENT_THREADS]: null,
}; };

View File

@ -18,7 +18,7 @@ limitations under the License.
<link rel="import" href="../../../bower_components/polymer/polymer.html"> <link rel="import" href="../../../bower_components/polymer/polymer.html">
<link rel="import" href="../../../bower_components/paper-toggle-button/paper-toggle-button.html"> <link rel="import" href="../../../bower_components/paper-toggle-button/paper-toggle-button.html">
<link rel="import" href="../../../styles/shared-styles.html"> <link rel="import" href="../../../styles/shared-styles.html">
<link rel="import" href="../../diff/gr-diff-comment-thread/gr-diff-comment-thread.html"> <link rel="import" href="../../shared/gr-comment-thread/gr-comment-thread.html">
<dom-module id="gr-thread-list"> <dom-module id="gr-thread-list">
<template> <template>
@ -28,7 +28,7 @@ limitations under the License.
min-height: 20rem; min-height: 20rem;
padding: 1rem; padding: 1rem;
} }
gr-diff-comment-thread { gr-comment-thread {
display: block; display: block;
margin-bottom: .5rem; margin-bottom: .5rem;
max-width: 80ch; max-width: 80ch;
@ -54,9 +54,9 @@ limitations under the License.
display: flex; display: flex;
margin-right: 1rem; margin-right: 1rem;
} }
.draftsOnly:not(.unresolvedOnly) gr-diff-comment-thread[has-draft], .draftsOnly:not(.unresolvedOnly) gr-comment-thread[has-draft],
.unresolvedOnly:not(.draftsOnly) gr-diff-comment-thread[unresolved], .unresolvedOnly:not(.draftsOnly) gr-comment-thread[unresolved],
.draftsOnly.unresolvedOnly gr-diff-comment-thread[has-draft][unresolved] { .draftsOnly.unresolvedOnly gr-comment-thread[has-draft][unresolved] {
display: block display: block
} }
</style> </style>
@ -82,7 +82,7 @@ limitations under the License.
as="thread" as="thread"
initial-count="5" initial-count="5"
target-framerate="60"> target-framerate="60">
<gr-diff-comment-thread <gr-comment-thread
show-file-path show-file-path
change-num="[[changeNum]]" change-num="[[changeNum]]"
comments="[[thread.comments]]" comments="[[thread.comments]]"
@ -94,7 +94,7 @@ limitations under the License.
path="[[thread.path]]" path="[[thread.path]]"
root-id="{{thread.rootId}}" root-id="{{thread.rootId}}"
on-thread-changed="_handleCommentsChanged" on-thread-changed="_handleCommentsChanged"
on-thread-discard="_handleThreadDiscard"></gr-diff-comment-thread> on-thread-discard="_handleThreadDiscard"></gr-comment-thread>
</template> </template>
</div> </div>
</template> </template>

View File

@ -171,7 +171,7 @@ limitations under the License.
]; ];
flushAsynchronousOperations(); flushAsynchronousOperations();
threadElements = Polymer.dom(element.root) threadElements = Polymer.dom(element.root)
.querySelectorAll('gr-diff-comment-thread'); .querySelectorAll('gr-comment-thread');
}); });
teardown(() => { teardown(() => {
@ -188,7 +188,7 @@ limitations under the License.
test('there are five threads by default', () => { test('there are five threads by default', () => {
assert.equal(Polymer.dom(element.root) assert.equal(Polymer.dom(element.root)
.querySelectorAll('gr-diff-comment-thread').length, 5); .querySelectorAll('gr-comment-thread').length, 5);
}); });
test('_computeSortedThreads', () => { test('_computeSortedThreads', () => {
@ -231,14 +231,14 @@ limitations under the License.
MockInteractions.tap(element.$.unresolvedToggle); MockInteractions.tap(element.$.unresolvedToggle);
flushAsynchronousOperations(); flushAsynchronousOperations();
assert.equal(Polymer.dom(element.root) assert.equal(Polymer.dom(element.root)
.querySelectorAll('gr-diff-comment-thread').length, 3); .querySelectorAll('gr-comment-thread').length, 3);
}); });
test('toggle drafts only shows threads with draft comments', () => { test('toggle drafts only shows threads with draft comments', () => {
MockInteractions.tap(element.$.draftToggle); MockInteractions.tap(element.$.draftToggle);
flushAsynchronousOperations(); flushAsynchronousOperations();
assert.equal(Polymer.dom(element.root) assert.equal(Polymer.dom(element.root)
.querySelectorAll('gr-diff-comment-thread').length, 2); .querySelectorAll('gr-comment-thread').length, 2);
}); });
test('toggle drafts and unresolved only shows threads with drafts and ' + test('toggle drafts and unresolved only shows threads with drafts and ' +
@ -247,7 +247,7 @@ limitations under the License.
MockInteractions.tap(element.$.unresolvedToggle); MockInteractions.tap(element.$.unresolvedToggle);
flushAsynchronousOperations(); flushAsynchronousOperations();
assert.equal(Polymer.dom(element.root) assert.equal(Polymer.dom(element.root)
.querySelectorAll('gr-diff-comment-thread').length, 2); .querySelectorAll('gr-comment-thread').length, 2);
}); });
test('modification events are consumed and displatched', () => { test('modification events are consumed and displatched', () => {

View File

@ -19,7 +19,7 @@ limitations under the License.
<link rel="import" href="../../../behaviors/gr-patch-set-behavior/gr-patch-set-behavior.html"> <link rel="import" href="../../../behaviors/gr-patch-set-behavior/gr-patch-set-behavior.html">
<link rel="import" href="../../core/gr-reporting/gr-reporting.html"> <link rel="import" href="../../core/gr-reporting/gr-reporting.html">
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html"> <link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
<link rel="import" href="../gr-diff-comment-thread/gr-diff-comment-thread.html"> <link rel="import" href="../../shared/gr-comment-thread/gr-comment-thread.html">
<link rel="import" href="../gr-diff/gr-diff.html"> <link rel="import" href="../gr-diff/gr-diff.html">
<dom-module id="gr-diff-host"> <dom-module id="gr-diff-host">

View File

@ -601,7 +601,7 @@
}, },
_createThreadElement(thread) { _createThreadElement(thread) {
const threadEl = document.createElement('gr-diff-comment-thread'); const threadEl = document.createElement('gr-comment-thread');
threadEl.className = 'comment-thread'; threadEl.className = 'comment-thread';
threadEl.slot = `${thread.commentSide}-${thread.lineNum}`; threadEl.slot = `${thread.commentSide}-${thread.lineNum}`;
threadEl.comments = thread.comments; threadEl.comments = thread.comments;

View File

@ -256,7 +256,7 @@ limitations under the License.
threadEls[0].dispatchEvent( threadEls[0].dispatchEvent(
new CustomEvent('thread-discard', {detail: {rootId: 4711}})); new CustomEvent('thread-discard', {detail: {rootId: 4711}}));
const attachedThreads = element.queryAllEffectiveChildren( const attachedThreads = element.queryAllEffectiveChildren(
'gr-diff-comment-thread'); 'gr-comment-thread');
assert.equal(attachedThreads.length, 1); assert.equal(attachedThreads.length, 1);
assert.equal(attachedThreads[0].rootId, 42); assert.equal(attachedThreads[0].rootId, 42);
}); });
@ -1130,7 +1130,7 @@ limitations under the License.
commentSide, undefined, false)); commentSide, undefined, false));
let threads = Polymer.dom(element.$.diff) let threads = Polymer.dom(element.$.diff)
.queryDistributedElements('gr-diff-comment-thread'); .queryDistributedElements('gr-comment-thread');
assert.equal(threads.length, 1); assert.equal(threads.length, 1);
assert.equal(threads[0].commentSide, commentSide); assert.equal(threads[0].commentSide, commentSide);
@ -1151,7 +1151,7 @@ limitations under the License.
'3', 1, commentSide, range, true)); '3', 1, commentSide, range, true));
threads = Polymer.dom(element.$.diff) threads = Polymer.dom(element.$.diff)
.queryDistributedElements('gr-diff-comment-thread'); .queryDistributedElements('gr-comment-thread');
assert.equal(threads.length, 2); assert.equal(threads.length, 2);
assert.equal(threads[1].commentSide, commentSide); assert.equal(threads[1].commentSide, commentSide);

View File

@ -83,7 +83,7 @@
targetClasses.push(SelectionClass.BLAME); targetClasses.push(SelectionClass.BLAME);
} else { } else {
const commentSelected = const commentSelected =
this._elementDescendedFromClass(e.target, 'gr-diff-comment'); this._elementDescendedFromClass(e.target, 'gr-comment');
const side = this.diffBuilder.getSideByLineEl(lineEl); const side = this.diffBuilder.getSideByLineEl(lineEl);
targetClasses.push(side === 'left' ? targetClasses.push(side === 'left' ?

View File

@ -221,7 +221,7 @@
[this.Shortcut.EXPAND_ALL_DIFF_CONTEXT]: '_handleExpandAllDiffContext', [this.Shortcut.EXPAND_ALL_DIFF_CONTEXT]: '_handleExpandAllDiffContext',
[this.Shortcut.NEXT_UNREVIEWED_FILE]: '_handleNextUnreviewedFile', [this.Shortcut.NEXT_UNREVIEWED_FILE]: '_handleNextUnreviewedFile',
// Final two are actually handled by gr-diff-comment-thread. // Final two are actually handled by gr-comment-thread.
[this.Shortcut.EXPAND_ALL_COMMENT_THREADS]: null, [this.Shortcut.EXPAND_ALL_COMMENT_THREADS]: null,
[this.Shortcut.COLLAPSE_ALL_COMMENT_THREADS]: null, [this.Shortcut.COLLAPSE_ALL_COMMENT_THREADS]: null,
}; };

View File

@ -22,9 +22,9 @@ limitations under the License.
<link rel="import" href="../../core/gr-reporting/gr-reporting.html"> <link rel="import" href="../../core/gr-reporting/gr-reporting.html">
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html"> <link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
<link rel="import" href="../../shared/gr-storage/gr-storage.html"> <link rel="import" href="../../shared/gr-storage/gr-storage.html">
<link rel="import" href="../gr-diff-comment/gr-diff-comment.html"> <link rel="import" href="../gr-comment/gr-comment.html">
<dom-module id="gr-diff-comment-thread"> <dom-module id="gr-comment-thread">
<template> <template>
<style include="shared-styles"> <style include="shared-styles">
gr-button { gr-button {
@ -72,7 +72,7 @@ limitations under the License.
<div id="container" class$="[[_computeHostClass(unresolved)]]"> <div id="container" class$="[[_computeHostClass(unresolved)]]">
<template id="commentList" is="dom-repeat" items="[[_orderedComments]]" <template id="commentList" is="dom-repeat" items="[[_orderedComments]]"
as="comment"> as="comment">
<gr-diff-comment <gr-comment
comment="{{comment}}" comment="{{comment}}"
robot-button-disabled="[[_hideActions(_showActions, _lastComment)]]" robot-button-disabled="[[_hideActions(_showActions, _lastComment)]]"
change-num="[[changeNum]]" change-num="[[changeNum]]"
@ -85,7 +85,7 @@ limitations under the License.
project-config="[[_projectConfig]]" project-config="[[_projectConfig]]"
on-create-fix-comment="_handleCommentFix" on-create-fix-comment="_handleCommentFix"
on-comment-discard="_handleCommentDiscard" on-comment-discard="_handleCommentDiscard"
on-comment-save="_handleCommentSavedOrDiscarded"></gr-diff-comment> on-comment-save="_handleCommentSavedOrDiscarded"></gr-comment>
</template> </template>
<div id="commentInfoContainer" <div id="commentInfoContainer"
hidden$="[[_hideActions(_showActions, _lastComment)]]"> hidden$="[[_hideActions(_showActions, _lastComment)]]">
@ -122,5 +122,5 @@ limitations under the License.
<gr-rest-api-interface id="restAPI"></gr-rest-api-interface> <gr-rest-api-interface id="restAPI"></gr-rest-api-interface>
<gr-storage id="storage"></gr-storage> <gr-storage id="storage"></gr-storage>
</template> </template>
<script src="gr-diff-comment-thread.js"></script> <script src="gr-comment-thread.js"></script>
</dom-module> </dom-module>

View File

@ -21,7 +21,7 @@
const NEWLINE_PATTERN = /\n/g; const NEWLINE_PATTERN = /\n/g;
Polymer({ Polymer({
is: 'gr-diff-comment-thread', is: 'gr-comment-thread',
/** /**
* Fired when the thread should be discarded. * Fired when the thread should be discarded.
@ -36,7 +36,7 @@
*/ */
/** /**
* gr-diff-comment-thread exposes the following attributes that allow a * gr-comment-thread exposes the following attributes that allow a
* diff widget like gr-diff to show the thread in the right location: * diff widget like gr-diff to show the thread in the right location:
* *
* line-num: * line-num:
@ -219,7 +219,7 @@
if (this.shouldSuppressKeyboardShortcut(e)) { return; } if (this.shouldSuppressKeyboardShortcut(e)) { return; }
// Dont preventDefault in this case because it will render the event // Dont preventDefault in this case because it will render the event
// useless for other handlers (other gr-diff-comment-thread elements). // useless for other handlers (other gr-comment-thread elements).
if (e.detail.keyboardEvent.shiftKey) { if (e.detail.keyboardEvent.shiftKey) {
this._expandCollapseComments(true); this._expandCollapseComments(true);
} else { } else {
@ -230,7 +230,7 @@
_expandCollapseComments(actionIsCollapse) { _expandCollapseComments(actionIsCollapse) {
const comments = const comments =
Polymer.dom(this.root).querySelectorAll('gr-diff-comment'); Polymer.dom(this.root).querySelectorAll('gr-comment');
for (const comment of comments) { for (const comment of comments) {
comment.collapsed = actionIsCollapse; comment.collapsed = actionIsCollapse;
} }
@ -283,7 +283,7 @@
parent.range); parent.range);
// If there is currently a comment in an editing state, add an attribute // If there is currently a comment in an editing state, add an attribute
// so that the gr-diff-comment knows not to populate the draft text. // so that the gr-comment knows not to populate the draft text.
for (let i = 0; i < this.comments.length; i++) { for (let i = 0; i < this.comments.length; i++) {
if (this.comments[i].__editing) { if (this.comments[i].__editing) {
reply.__otherEditing = true; reply.__otherEditing = true;
@ -350,7 +350,7 @@
}, },
_commentElWithDraftID(id) { _commentElWithDraftID(id) {
const els = Polymer.dom(this.root).querySelectorAll('gr-diff-comment'); const els = Polymer.dom(this.root).querySelectorAll('gr-comment');
for (const el of els) { for (const el of els) {
if (el.comment.id === id || el.comment.__draftID === id) { if (el.comment.id === id || el.comment.__draftID === id) {
return el; return el;

View File

@ -17,31 +17,31 @@ limitations under the License.
--> -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>gr-diff-comment-thread</title> <title>gr-comment-thread</title>
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../../bower_components/web-component-tester/browser.js"></script> <script src="../../../bower_components/web-component-tester/browser.js"></script>
<link rel="import" href="../../../test/common-test-setup.html"/> <link rel="import" href="../../../test/common-test-setup.html"/>
<script src="../../../scripts/util.js"></script> <script src="../../../scripts/util.js"></script>
<link rel="import" href="gr-diff-comment-thread.html"> <link rel="import" href="gr-comment-thread.html">
<script>void(0);</script> <script>void(0);</script>
<test-fixture id="basic"> <test-fixture id="basic">
<template> <template>
<gr-diff-comment-thread></gr-diff-comment-thread> <gr-comment-thread></gr-comment-thread>
</template> </template>
</test-fixture> </test-fixture>
<test-fixture id="withComment"> <test-fixture id="withComment">
<template> <template>
<gr-diff-comment-thread></gr-diff-comment-thread> <gr-comment-thread></gr-comment-thread>
</template> </template>
</test-fixture> </test-fixture>
<script> <script>
suite('gr-diff-comment-thread tests', () => { suite('gr-comment-thread tests', () => {
let element; let element;
let sandbox; let sandbox;
@ -248,7 +248,7 @@ limitations under the License.
}); });
test('reply', () => { test('reply', () => {
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
const reportStub = sandbox.stub(element.$.reporting, const reportStub = sandbox.stub(element.$.reporting,
'recordDraftInteraction'); 'recordDraftInteraction');
assert.ok(commentEl); assert.ok(commentEl);
@ -267,7 +267,7 @@ limitations under the License.
}); });
test('quote reply', () => { test('quote reply', () => {
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
const reportStub = sandbox.stub(element.$.reporting, const reportStub = sandbox.stub(element.$.reporting,
'recordDraftInteraction'); 'recordDraftInteraction');
assert.ok(commentEl); assert.ok(commentEl);
@ -300,7 +300,7 @@ limitations under the License.
}]; }];
flushAsynchronousOperations(); flushAsynchronousOperations();
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
assert.ok(commentEl); assert.ok(commentEl);
const quoteBtn = element.$.quoteBtn; const quoteBtn = element.$.quoteBtn;
@ -323,7 +323,7 @@ limitations under the License.
element.changeNum = '42'; element.changeNum = '42';
element.patchNum = '1'; element.patchNum = '1';
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
assert.ok(commentEl); assert.ok(commentEl);
const ackBtn = element.$.ackBtn; const ackBtn = element.$.ackBtn;
@ -346,7 +346,7 @@ limitations under the License.
'recordDraftInteraction'); 'recordDraftInteraction');
element.changeNum = '42'; element.changeNum = '42';
element.patchNum = '1'; element.patchNum = '1';
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
assert.ok(commentEl); assert.ok(commentEl);
const doneBtn = element.$.doneBtn; const doneBtn = element.$.doneBtn;
@ -368,12 +368,12 @@ limitations under the License.
element.changeNum = '42'; element.changeNum = '42';
element.patchNum = '1'; element.patchNum = '1';
element.path = '/path/to/file.txt'; element.path = '/path/to/file.txt';
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
assert.ok(commentEl); assert.ok(commentEl);
const saveOrDiscardStub = sandbox.stub(); const saveOrDiscardStub = sandbox.stub();
element.addEventListener('thread-changed', saveOrDiscardStub); element.addEventListener('thread-changed', saveOrDiscardStub);
element.$$('gr-diff-comment')._fireSave(); element.$$('gr-comment')._fireSave();
flush(() => { flush(() => {
assert.isTrue(saveOrDiscardStub.called); assert.isTrue(saveOrDiscardStub.called);
@ -389,7 +389,7 @@ limitations under the License.
test('please fix', done => { test('please fix', done => {
element.changeNum = '42'; element.changeNum = '42';
element.patchNum = '1'; element.patchNum = '1';
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
assert.ok(commentEl); assert.ok(commentEl);
commentEl.addEventListener('create-fix-comment', () => { commentEl.addEventListener('create-fix-comment', () => {
const drafts = element._orderedComments.filter(c => { const drafts = element._orderedComments.filter(c => {
@ -420,7 +420,7 @@ limitations under the License.
const saveOrDiscardStub = sandbox.stub(); const saveOrDiscardStub = sandbox.stub();
element.addEventListener('thread-changed', saveOrDiscardStub); element.addEventListener('thread-changed', saveOrDiscardStub);
const draftEl = const draftEl =
Polymer.dom(element.root).querySelectorAll('gr-diff-comment')[1]; Polymer.dom(element.root).querySelectorAll('gr-comment')[1];
assert.ok(draftEl); assert.ok(draftEl);
draftEl.addEventListener('comment-discard', () => { draftEl.addEventListener('comment-discard', () => {
const drafts = element.comments.filter(c => { const drafts = element.comments.filter(c => {
@ -452,7 +452,7 @@ limitations under the License.
const saveOrDiscardStub = sandbox.stub(); const saveOrDiscardStub = sandbox.stub();
element.addEventListener('thread-changed', saveOrDiscardStub); element.addEventListener('thread-changed', saveOrDiscardStub);
const draftEl = const draftEl =
Polymer.dom(element.root).querySelectorAll('gr-diff-comment')[0]; Polymer.dom(element.root).querySelectorAll('gr-comment')[0];
assert.ok(draftEl); assert.ok(draftEl);
draftEl.addEventListener('comment-discard', () => { draftEl.addEventListener('comment-discard', () => {
assert.equal(element.comments.length, 0); assert.equal(element.comments.length, 0);
@ -534,7 +534,7 @@ limitations under the License.
flushAsynchronousOperations(); flushAsynchronousOperations();
const draftEl = const draftEl =
Polymer.dom(element.root).querySelectorAll('gr-diff-comment')[1]; Polymer.dom(element.root).querySelectorAll('gr-comment')[1];
assert.ok(draftEl); assert.ok(draftEl);
draftEl.addEventListener('comment-discard', () => { draftEl.addEventListener('comment-discard', () => {
assert.isFalse(storageStub.called); assert.isFalse(storageStub.called);
@ -546,7 +546,7 @@ limitations under the License.
}); });
test('comment-update', () => { test('comment-update', () => {
const commentEl = element.$$('gr-diff-comment'); const commentEl = element.$$('gr-comment');
const updatedComment = { const updatedComment = {
id: element.comments[0].id, id: element.comments[0].id,
foo: 'bar', foo: 'bar',

View File

@ -35,7 +35,7 @@ limitations under the License.
<link rel="import" href="../gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html"> <link rel="import" href="../gr-confirm-delete-comment-dialog/gr-confirm-delete-comment-dialog.html">
<script src="../../../scripts/rootElement.js"></script> <script src="../../../scripts/rootElement.js"></script>
<dom-module id="gr-diff-comment"> <dom-module id="gr-comment">
<template> <template>
<style include="shared-styles"> <style include="shared-styles">
:host { :host {
@ -384,5 +384,5 @@ limitations under the License.
<gr-storage id="storage"></gr-storage> <gr-storage id="storage"></gr-storage>
<gr-reporting id="reporting"></gr-reporting> <gr-reporting id="reporting"></gr-reporting>
</template> </template>
<script src="gr-diff-comment.js"></script> <script src="gr-comment.js"></script>
</dom-module> </dom-module>

View File

@ -32,7 +32,7 @@
const FILE = 'FILE'; const FILE = 'FILE';
Polymer({ Polymer({
is: 'gr-diff-comment', is: 'gr-comment',
/** /**
* Fired when the create fix comment action is triggered. * Fired when the create fix comment action is triggered.

View File

@ -17,7 +17,7 @@ limitations under the License.
--> -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>gr-diff-comment</title> <title>gr-comment</title>
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script> <script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../../bower_components/web-component-tester/browser.js"></script> <script src="../../../bower_components/web-component-tester/browser.js"></script>
@ -25,19 +25,19 @@ limitations under the License.
<script src="../../../bower_components/page/page.js"></script> <script src="../../../bower_components/page/page.js"></script>
<script src="../../../scripts/util.js"></script> <script src="../../../scripts/util.js"></script>
<link rel="import" href="gr-diff-comment.html"> <link rel="import" href="gr-comment.html">
<script>void(0);</script> <script>void(0);</script>
<test-fixture id="basic"> <test-fixture id="basic">
<template> <template>
<gr-diff-comment></gr-diff-comment> <gr-comment></gr-comment>
</template> </template>
</test-fixture> </test-fixture>
<test-fixture id="draft"> <test-fixture id="draft">
<template> <template>
<gr-diff-comment draft="true"></gr-diff-comment> <gr-comment draft="true"></gr-comment>
</template> </template>
</test-fixture> </test-fixture>
@ -48,7 +48,7 @@ limitations under the License.
return getComputedStyle(el).getPropertyValue('display') !== 'none'; return getComputedStyle(el).getPropertyValue('display') !== 'none';
} }
suite('gr-diff-comment tests', () => { suite('gr-comment tests', () => {
let element; let element;
let sandbox; let sandbox;
setup(() => { setup(() => {
@ -343,7 +343,7 @@ limitations under the License.
}); });
}); });
suite('gr-diff-comment draft tests', () => { suite('gr-comment draft tests', () => {
let element; let element;
let sandbox; let sandbox;

View File

@ -103,8 +103,6 @@ limitations under the License.
'core/gr-smart-search/gr-smart-search_test.html', 'core/gr-smart-search/gr-smart-search_test.html',
'diff/gr-comment-api/gr-comment-api_test.html', 'diff/gr-comment-api/gr-comment-api_test.html',
'diff/gr-diff-builder/gr-diff-builder_test.html', 'diff/gr-diff-builder/gr-diff-builder_test.html',
'diff/gr-diff-comment-thread/gr-diff-comment-thread_test.html',
'diff/gr-diff-comment/gr-diff-comment_test.html',
'diff/gr-diff-cursor/gr-diff-cursor_test.html', 'diff/gr-diff-cursor/gr-diff-cursor_test.html',
'diff/gr-diff-highlight/gr-annotation_test.html', 'diff/gr-diff-highlight/gr-annotation_test.html',
'diff/gr-diff-highlight/gr-diff-highlight_test.html', 'diff/gr-diff-highlight/gr-diff-highlight_test.html',
@ -157,6 +155,8 @@ limitations under the License.
'shared/gr-button/gr-button_test.html', 'shared/gr-button/gr-button_test.html',
'shared/gr-change-star/gr-change-star_test.html', 'shared/gr-change-star/gr-change-star_test.html',
'shared/gr-change-status/gr-change-status_test.html', 'shared/gr-change-status/gr-change-status_test.html',
'shared/gr-comment-thread/gr-comment-thread_test.html',
'shared/gr-comment/gr-comment_test.html',
'shared/gr-copy-clipboard/gr-copy-clipboard_test.html', 'shared/gr-copy-clipboard/gr-copy-clipboard_test.html',
'shared/gr-cursor-manager/gr-cursor-manager_test.html', 'shared/gr-cursor-manager/gr-cursor-manager_test.html',
'shared/gr-date-formatter/gr-date-formatter_test.html', 'shared/gr-date-formatter/gr-date-formatter_test.html',