
There is no change in functionality. Only moving things around. + Separate html from the js. + Place the unit test for a component within the same folder. + Organize the components in subfolders. Change-Id: I51fdc510db75fc1b33f040ca63decbbdfd4d5513
112 lines
3.3 KiB
JavaScript
112 lines
3.3 KiB
JavaScript
// Copyright (C) 2016 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-messages-list',
|
|
|
|
properties: {
|
|
changeNum: Number,
|
|
messages: {
|
|
type: Array,
|
|
value: function() { return []; },
|
|
},
|
|
comments: Object,
|
|
projectConfig: Object,
|
|
topMargin: Number,
|
|
showReplyButtons: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
|
|
_expanded: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
},
|
|
|
|
scrollToMessage: function(messageID) {
|
|
var el = this.$$('[data-message-id="' + messageID + '"]');
|
|
if (!el) { return; }
|
|
|
|
el.expanded = true;
|
|
var top = el.offsetTop;
|
|
for (var offsetParent = el.offsetParent;
|
|
offsetParent;
|
|
offsetParent = offsetParent.offsetParent) {
|
|
top += offsetParent.offsetTop;
|
|
}
|
|
window.scrollTo(0, top - this.topMargin);
|
|
this._highlightEl(el);
|
|
},
|
|
|
|
_highlightEl: function(el) {
|
|
var highlightedEls =
|
|
Polymer.dom(this.root).querySelectorAll('.highlighted');
|
|
for (var i = 0; i < highlightedEls.length; i++) {
|
|
highlightedEls[i].classList.remove('highlighted');
|
|
}
|
|
function handleAnimationEnd() {
|
|
el.removeEventListener('animationend', handleAnimationEnd);
|
|
el.classList.remove('highlighted');
|
|
}
|
|
el.addEventListener('animationend', handleAnimationEnd);
|
|
el.classList.add('highlighted');
|
|
},
|
|
|
|
_handleExpandCollapseTap: function(e) {
|
|
e.preventDefault();
|
|
this._expanded = !this._expanded;
|
|
var messageEls = Polymer.dom(this.root).querySelectorAll('gr-message');
|
|
for (var i = 0; i < messageEls.length; i++) {
|
|
messageEls[i].expanded = this._expanded;
|
|
}
|
|
},
|
|
|
|
_handleScrollTo: function(e) {
|
|
this.scrollToMessage(e.detail.message.id);
|
|
},
|
|
|
|
_computeExpandCollapseMessage: function(expanded) {
|
|
return expanded ? 'Collapse all' : 'Expand all';
|
|
},
|
|
|
|
_computeCommentsForMessage: function(comments, message, index) {
|
|
comments = comments || {};
|
|
var messages = this.messages || [];
|
|
var msgComments = {};
|
|
var mDate = util.parseDate(message.date);
|
|
var nextMDate;
|
|
if (index < messages.length - 1) {
|
|
nextMDate = util.parseDate(messages[index + 1].date);
|
|
}
|
|
for (var file in comments) {
|
|
var fileComments = comments[file];
|
|
for (var i = 0; i < fileComments.length; i++) {
|
|
var cDate = util.parseDate(fileComments[i].updated);
|
|
if (cDate >= mDate) {
|
|
if (nextMDate && cDate >= nextMDate) {
|
|
continue;
|
|
}
|
|
msgComments[file] = msgComments[file] || [];
|
|
msgComments[file].push(fileComments[i]);
|
|
}
|
|
}
|
|
}
|
|
return msgComments;
|
|
},
|
|
});
|
|
})();
|