blob: b76b3c4fa4d6495398624412ae6e67f2c8c2c329 [file] [log] [blame]
Andrew Bonventre78792e82016-03-04 17:48:22 -05001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14(function() {
15 'use strict';
16
17 Polymer({
18 is: 'gr-change-view',
19
20 /**
21 * Fired when the title of the page should change.
22 *
23 * @event title-change
24 */
25
26 properties: {
27 /**
28 * URL params passed from the router.
29 */
30 params: {
31 type: Object,
32 observer: '_paramsChanged',
33 },
34 viewState: {
35 type: Object,
36 notify: true,
37 value: function() { return {}; },
38 },
39 serverConfig: Object,
40 keyEventTarget: {
41 type: Object,
42 value: function() { return document.body; },
43 },
44
45 _comments: Object,
46 _change: {
47 type: Object,
48 observer: '_changeChanged',
49 },
50 _commitInfo: Object,
51 _changeNum: String,
52 _patchNum: String,
53 _allPatchSets: {
54 type: Array,
55 computed: '_computeAllPatchSets(_change)',
56 },
57 _loggedIn: {
58 type: Boolean,
59 value: false,
60 },
61 _loading: Boolean,
62 _headerContainerEl: Object,
63 _headerEl: Object,
64 _projectConfig: Object,
65 _boundScrollHandler: {
66 type: Function,
67 value: function() { return this._handleBodyScroll.bind(this); },
68 },
69 },
70
71 behaviors: [
72 Gerrit.KeyboardShortcutBehavior,
73 Gerrit.RESTClientBehavior,
74 ],
75
76 ready: function() {
77 app.accountReady.then(function() {
78 this._loggedIn = app.loggedIn;
79 }.bind(this));
80 this._headerEl = this.$$('.header');
81 },
82
83 attached: function() {
84 window.addEventListener('scroll', this._boundScrollHandler);
85 },
86
87 detached: function() {
88 window.removeEventListener('scroll', this._boundScrollHandler);
89 },
90
91 _handleBodyScroll: function(e) {
92 var containerEl = this._headerContainerEl ||
93 this.$$('.headerContainer');
94
95 // Calculate where the header is relative to the window.
96 var top = containerEl.offsetTop;
97 for (var offsetParent = containerEl.offsetParent;
98 offsetParent;
99 offsetParent = offsetParent.offsetParent) {
100 top += offsetParent.offsetTop;
101 }
102 // The element may not be displayed yet, in which case do nothing.
103 if (top == 0) { return; }
104
105 this._headerEl.classList.toggle('pinned', window.scrollY >= top);
106 },
107
108 _resetHeaderEl: function() {
109 var el = this._headerEl || this.$$('.header');
110 this._headerEl = el;
111 el.classList.remove('pinned');
112 },
113
114 _handlePatchChange: function(e) {
115 var patchNum = e.target.value;
116 var currentPatchNum =
117 this._change.revisions[this._change.current_revision]._number;
118 if (patchNum == currentPatchNum) {
David Ostrovskye8771402016-02-13 12:23:53 +0100119 page.show(this.changePath(this._changeNum));
Andrew Bonventre78792e82016-03-04 17:48:22 -0500120 return;
121 }
David Ostrovskye8771402016-02-13 12:23:53 +0100122 page.show(this.changePath(this._changeNum) + '/' + patchNum);
Andrew Bonventre78792e82016-03-04 17:48:22 -0500123 },
124
125 _handleReplyTap: function(e) {
126 e.preventDefault();
127 this.$.replyOverlay.open();
128 },
129
130 _handleDownloadTap: function(e) {
131 e.preventDefault();
132 this.$.downloadOverlay.open();
133 },
134
135 _handleDownloadDialogClose: function(e) {
136 this.$.downloadOverlay.close();
137 },
138
139 _handleMessageReply: function(e) {
140 var msg = e.detail.message.message;
141 var quoteStr = msg.split('\n').map(
142 function(line) { return '> ' + line; }).join('\n') + '\n\n';
143 this.$.replyDialog.draft += quoteStr;
144 this.$.replyOverlay.open();
145 },
146
147 _handleReplyOverlayOpen: function(e) {
148 this.$.replyDialog.reload().then(function() {
149 this.async(function() { this.$.replyOverlay.center() }, 1);
150 }.bind(this));
151 this.$.replyDialog.focus();
152 },
153
154 _handleReplySent: function(e) {
155 this.$.replyOverlay.close();
156 this._reload();
157 },
158
159 _handleReplyCancel: function(e) {
160 this.$.replyOverlay.close();
161 },
162
163 _paramsChanged: function(value) {
164 if (value.view != this.tagName.toLowerCase()) { return; }
165
166 this._changeNum = value.changeNum;
167 this._patchNum = value.patchNum;
168 if (this.viewState.changeNum != this._changeNum ||
169 this.viewState.patchNum != this._patchNum) {
170 this.set('viewState.selectedFileIndex', 0);
171 this.set('viewState.changeNum', this._changeNum);
172 this.set('viewState.patchNum', this._patchNum);
173 }
174 if (!this._changeNum) {
175 return;
176 }
177 this._reload().then(function() {
178 this.$.messageList.topMargin = this._headerEl.offsetHeight;
179
180 // Allow the message list to render before scrolling.
181 this.async(function() {
182 var msgPrefix = '#message-';
183 var hash = window.location.hash;
184 if (hash.indexOf(msgPrefix) == 0) {
185 this.$.messageList.scrollToMessage(hash.substr(msgPrefix.length));
186 }
187 }.bind(this), 1);
188
189 app.accountReady.then(function() {
190 if (!this._loggedIn) { return; }
191
192 if (this.viewState.showReplyDialog) {
193 this.$.replyOverlay.open();
194 this.set('viewState.showReplyDialog', false);
195 }
196 }.bind(this));
197 }.bind(this));
198 },
199
200 _changeChanged: function(change) {
201 if (!change) { return; }
202 this._patchNum = this._patchNum ||
203 change.revisions[change.current_revision]._number;
204
205 var title = change.subject + ' (' + change.change_id.substr(0, 9) + ')';
206 this.fire('title-change', {title: title});
207 },
208
Andrew Bonventre78792e82016-03-04 17:48:22 -0500209 _computeChangePermalink: function(changeNum) {
210 return '/' + changeNum;
211 },
212
213 _computeChangeStatus: function(change, patchNum) {
214 var status = change.status;
215 if (status == this.ChangeStatus.NEW) {
216 var rev = this._getRevisionNumber(change, patchNum);
217 // TODO(davido): Figure out, why sometimes revision is not there
218 if (rev == undefined || !rev.draft) { return ''; }
219 status = this.ChangeStatus.DRAFT;
220 }
221 return '(' + status.toLowerCase() + ')';
222 },
223
224 _computeDetailPath: function(changeNum) {
225 return '/changes/' + changeNum + '/detail';
226 },
227
228 _computeCommitInfoPath: function(changeNum, patchNum) {
229 return this.changeBaseURL(changeNum, patchNum) + '/commit?links';
230 },
231
232 _computeCommentsPath: function(changeNum) {
233 return '/changes/' + changeNum + '/comments';
234 },
235
236 _computeProjectConfigPath: function(project) {
237 return '/projects/' + encodeURIComponent(project) + '/config';
238 },
239
240 _computeDetailQueryParams: function() {
241 var options = this.listChangesOptionsToHex(
242 this.ListChangesOption.ALL_REVISIONS,
243 this.ListChangesOption.CHANGE_ACTIONS,
244 this.ListChangesOption.DOWNLOAD_COMMANDS
245 );
246 return {O: options};
247 },
248
249 _computeLatestPatchNum: function(change) {
250 return change.revisions[change.current_revision]._number;
251 },
252
253 _computeAllPatchSets: function(change) {
254 var patchNums = [];
255 for (var rev in change.revisions) {
256 patchNums.push(change.revisions[rev]._number);
257 }
258 return patchNums.sort(function(a, b) {
259 return a - b;
260 });
261 },
262
263 _getRevisionNumber: function(change, patchNum) {
264 for (var rev in change.revisions) {
265 if (change.revisions[rev]._number == patchNum) {
266 return change.revisions[rev];
267 }
268 }
269 },
270
271 _computePatchIndexIsSelected: function(index, patchNum) {
272 return this._allPatchSets[index] == patchNum;
273 },
274
275 _computeLabelNames: function(labels) {
276 return Object.keys(labels).sort();
277 },
278
279 _computeLabelValues: function(labelName, labels) {
280 var result = [];
281 var t = labels[labelName];
282 if (!t) { return result; }
283 var approvals = t.all || [];
284 approvals.forEach(function(label) {
285 if (label.value && label.value != labels[labelName].default_value) {
286 var labelClassName;
287 var labelValPrefix = '';
288 if (label.value > 0) {
289 labelValPrefix = '+';
290 labelClassName = 'approved';
291 } else if (label.value < 0) {
292 labelClassName = 'notApproved';
293 }
294 result.push({
295 value: labelValPrefix + label.value,
296 className: labelClassName,
297 account: label,
298 });
299 }
300 });
301 return result;
302 },
303
304 _handleKey: function(e) {
305 if (this.shouldSupressKeyboardShortcut(e)) { return; }
306
307 switch (e.keyCode) {
308 case 65: // 'a'
309 e.preventDefault();
310 this.$.replyOverlay.open();
311 break;
312 case 85: // 'u'
313 e.preventDefault();
314 page.show('/');
315 break;
316 }
317 },
318
319 _handleReloadChange: function() {
David Ostrovskye8771402016-02-13 12:23:53 +0100320 page.show(this.changePath(this._changeNum));
Andrew Bonventre78792e82016-03-04 17:48:22 -0500321 },
322
323 _reload: function() {
324 var detailCompletes = this.$.detailXHR.generateRequest().completes;
325 this.$.commentsXHR.generateRequest();
326 var reloadPatchNumDependentResources = function() {
327 return Promise.all([
328 this.$.commitInfoXHR.generateRequest().completes,
329 this.$.actions.reload(),
330 this.$.fileList.reload(),
331 ]);
332 }.bind(this);
333 var reloadDetailDependentResources = function() {
334 return this.$.relatedChanges.reload();
335 }.bind(this);
336
337 this._resetHeaderEl();
338
339 if (this._patchNum) {
340 return reloadPatchNumDependentResources().then(function() {
341 return detailCompletes;
342 }).then(reloadDetailDependentResources);
343 } else {
344 // The patch number is reliant on the change detail request.
345 return detailCompletes.then(reloadPatchNumDependentResources).then(
346 reloadDetailDependentResources);
347 }
348 },
349 });
350})();