2016-03-04 17:48:22 -05:00
|
|
|
|
// 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';
|
|
|
|
|
|
|
|
|
|
var COMMIT_MESSAGE_PATH = '/COMMIT_MSG';
|
|
|
|
|
|
2016-06-20 14:38:33 -07:00
|
|
|
|
var DiffSides = {
|
|
|
|
|
LEFT: 'left',
|
|
|
|
|
RIGHT: 'right',
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-19 15:03:18 -07:00
|
|
|
|
var HASH_PATTERN = /^[ab]?\d+$/;
|
2016-06-20 14:38:33 -07:00
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
Polymer({
|
|
|
|
|
is: 'gr-diff-view',
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Fired when the title of the page should change.
|
|
|
|
|
*
|
|
|
|
|
* @event title-change
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
properties: {
|
|
|
|
|
/**
|
|
|
|
|
* URL params passed from the router.
|
|
|
|
|
*/
|
|
|
|
|
params: {
|
|
|
|
|
type: Object,
|
|
|
|
|
observer: '_paramsChanged',
|
|
|
|
|
},
|
|
|
|
|
keyEventTarget: {
|
|
|
|
|
type: Object,
|
|
|
|
|
value: function() { return document.body; },
|
|
|
|
|
},
|
|
|
|
|
changeViewState: {
|
|
|
|
|
type: Object,
|
|
|
|
|
notify: true,
|
|
|
|
|
value: function() { return {}; },
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_patchRange: Object,
|
|
|
|
|
_change: Object,
|
|
|
|
|
_changeNum: String,
|
|
|
|
|
_diff: Object,
|
|
|
|
|
_fileList: {
|
|
|
|
|
type: Array,
|
|
|
|
|
value: function() { return []; },
|
|
|
|
|
},
|
|
|
|
|
_path: {
|
|
|
|
|
type: String,
|
|
|
|
|
observer: '_pathChanged',
|
|
|
|
|
},
|
|
|
|
|
_loggedIn: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
value: false,
|
|
|
|
|
},
|
2016-04-23 23:18:43 -04:00
|
|
|
|
_loading: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
value: true,
|
|
|
|
|
},
|
|
|
|
|
_prefs: Object,
|
2016-06-08 12:37:31 -07:00
|
|
|
|
_localPrefs: Object,
|
2016-05-29 18:12:56 +02:00
|
|
|
|
_projectConfig: Object,
|
2016-05-05 16:53:38 -07:00
|
|
|
|
_userPrefs: Object,
|
|
|
|
|
_diffMode: {
|
|
|
|
|
type: String,
|
2016-08-03 13:16:36 -07:00
|
|
|
|
computed: '_getDiffViewMode(changeViewState.diffMode, _userPrefs)',
|
2016-05-05 16:53:38 -07:00
|
|
|
|
},
|
2016-05-23 17:18:43 -07:00
|
|
|
|
_isImageDiff: Boolean,
|
2016-08-03 13:16:36 -07:00
|
|
|
|
_filesWeblinks: Object,
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
behaviors: [
|
|
|
|
|
Gerrit.KeyboardShortcutBehavior,
|
2016-10-21 11:01:08 -07:00
|
|
|
|
Gerrit.RESTClientBehavior,
|
2016-11-01 16:11:07 -07:00
|
|
|
|
Gerrit.URLEncodingBehavior,
|
2016-04-05 16:06:57 -04:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
observers: [
|
|
|
|
|
'_getProjectConfig(_change.project)',
|
2016-05-11 14:31:49 -04:00
|
|
|
|
'_getFiles(_changeNum, _patchRange.*)',
|
2016-03-04 17:48:22 -05:00
|
|
|
|
],
|
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
keyBindings: {
|
|
|
|
|
'esc': '_handleEscKey',
|
|
|
|
|
'shift+left': '_handleShiftLeftKey',
|
|
|
|
|
'shift+right': '_handleShiftRightKey',
|
|
|
|
|
'up k': '_handleUpKey',
|
|
|
|
|
'down j': '_handleDownKey',
|
|
|
|
|
'c': '_handleCKey',
|
|
|
|
|
'[': '_handleLeftBracketKey',
|
|
|
|
|
']': '_handleRightBracketKey',
|
|
|
|
|
'n shift+n': '_handleNKey',
|
|
|
|
|
'p shift+p': '_handlePKey',
|
|
|
|
|
'a shift+a': '_handleAKey',
|
|
|
|
|
'u': '_handleUKey',
|
|
|
|
|
',': '_handleCommaKey',
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-29 14:06:39 -04:00
|
|
|
|
attached: function() {
|
|
|
|
|
this._getLoggedIn().then(function(loggedIn) {
|
|
|
|
|
this._loggedIn = loggedIn;
|
|
|
|
|
if (loggedIn) {
|
2016-03-04 17:48:22 -05:00
|
|
|
|
this._setReviewed(true);
|
|
|
|
|
}
|
|
|
|
|
}.bind(this));
|
2016-08-25 12:35:50 -07:00
|
|
|
|
if (this.changeViewState.diffMode === null) {
|
2016-10-07 17:22:16 -07:00
|
|
|
|
// If screen size is small, always default to unified view.
|
2016-12-09 16:58:31 -08:00
|
|
|
|
this.$.restAPI.getPreferences().then(function(prefs) {
|
|
|
|
|
this.set('changeViewState.diffMode', prefs.default_diff_view);
|
|
|
|
|
}.bind(this));
|
2016-08-25 12:35:50 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
if (this._path) {
|
|
|
|
|
this.fire('title-change',
|
|
|
|
|
{title: this._computeFileDisplayName(this._path)});
|
|
|
|
|
}
|
2016-05-17 09:46:00 -07:00
|
|
|
|
|
|
|
|
|
this.$.cursor.push('diffs', this.$.diff);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
2016-03-29 14:06:39 -04:00
|
|
|
|
_getLoggedIn: function() {
|
|
|
|
|
return this.$.restAPI.getLoggedIn();
|
|
|
|
|
},
|
|
|
|
|
|
2016-04-05 16:06:57 -04:00
|
|
|
|
_getProjectConfig: function(project) {
|
|
|
|
|
return this.$.restAPI.getProjectConfig(project).then(
|
|
|
|
|
function(config) {
|
|
|
|
|
this._projectConfig = config;
|
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_getChangeDetail: function(changeNum) {
|
|
|
|
|
return this.$.restAPI.getDiffChangeDetail(changeNum).then(
|
|
|
|
|
function(change) {
|
|
|
|
|
this._change = change;
|
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
2016-05-11 14:31:49 -04:00
|
|
|
|
_getFiles: function(changeNum, patchRangeRecord) {
|
|
|
|
|
var patchRange = patchRangeRecord.base;
|
2016-04-14 17:52:07 -04:00
|
|
|
|
return this.$.restAPI.getChangeFilePathsAsSpeciallySortedArray(
|
2016-05-11 14:31:49 -04:00
|
|
|
|
changeNum, patchRange).then(function(files) {
|
2016-04-14 17:52:07 -04:00
|
|
|
|
this._fileList = files;
|
2016-04-05 16:06:57 -04:00
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
2016-04-23 23:18:43 -04:00
|
|
|
|
_getDiffPreferences: function() {
|
2016-05-03 18:11:00 -04:00
|
|
|
|
return this.$.restAPI.getDiffPreferences();
|
2016-04-23 23:18:43 -04:00
|
|
|
|
},
|
|
|
|
|
|
2016-05-05 16:53:38 -07:00
|
|
|
|
_getPreferences: function() {
|
|
|
|
|
return this.$.restAPI.getPreferences();
|
|
|
|
|
},
|
|
|
|
|
|
2016-10-07 17:22:16 -07:00
|
|
|
|
_getWindowWidth: function() {
|
|
|
|
|
return window.innerWidth;
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
_handleReviewedChange: function(e) {
|
|
|
|
|
this._setReviewed(Polymer.dom(e).rootTarget.checked);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_setReviewed: function(reviewed) {
|
|
|
|
|
this.$.reviewed.checked = reviewed;
|
2016-04-05 16:06:57 -04:00
|
|
|
|
this._saveReviewedState(reviewed).catch(function(err) {
|
2016-03-04 17:48:22 -05:00
|
|
|
|
alert('Couldn’t change file review status. Check the console ' +
|
|
|
|
|
'and contact the PolyGerrit team for assistance.');
|
|
|
|
|
throw err;
|
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
2016-04-05 16:06:57 -04:00
|
|
|
|
_saveReviewedState: function(reviewed) {
|
|
|
|
|
return this.$.restAPI.saveFileReviewed(this._changeNum,
|
|
|
|
|
this._patchRange.patchNum, this._path, reviewed);
|
|
|
|
|
},
|
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
_handleEscKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.diff.displayLine = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleShiftLeftKey: function(e) {
|
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.cursor.moveLeft();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleShiftRightKey: function(e) {
|
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.cursor.moveRight();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleUpKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.diff.displayLine = true;
|
|
|
|
|
this.$.cursor.moveUp();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleDownKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.diff.displayLine = true;
|
|
|
|
|
this.$.cursor.moveDown();
|
2016-09-27 15:57:56 -07:00
|
|
|
|
},
|
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
_handleCKey: function(e) {
|
2016-10-10 17:10:10 -07:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
if (this.$.diff.isRangeSelected()) { return; }
|
2016-11-28 15:16:21 -08:00
|
|
|
|
if (this.modifierPressed(e)) { return; }
|
2016-03-04 17:48:22 -05:00
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
e.preventDefault();
|
|
|
|
|
var line = this.$.cursor.getTargetLineElement();
|
|
|
|
|
if (line) {
|
|
|
|
|
this.$.diff.addDraftAtLine(line);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
_handleLeftBracketKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this._navToFile(this._path, this._fileList, -1);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleRightBracketKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this._navToFile(this._path, this._fileList, 1);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleNKey: function(e) {
|
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
if (e.detail.keyboardEvent.shiftKey) {
|
|
|
|
|
this.$.cursor.moveToNextCommentThread();
|
|
|
|
|
} else {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
this.$.cursor.moveToNextChunk();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handlePKey: function(e) {
|
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
if (e.detail.keyboardEvent.shiftKey) {
|
|
|
|
|
this.$.cursor.moveToPreviousCommentThread();
|
|
|
|
|
} else {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
this.$.cursor.moveToPreviousChunk();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleAKey: function(e) {
|
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e)) { return; }
|
|
|
|
|
|
|
|
|
|
if (e.detail.keyboardEvent.shiftKey) { // Hide left diff.
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this.$.diff.toggleLeftDiff();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.modifierPressed(e)) { return; }
|
|
|
|
|
|
2016-11-15 17:01:15 -08:00
|
|
|
|
if (!this._loggedIn) { return; }
|
|
|
|
|
|
|
|
|
|
this.set('changeViewState.showReplyDialog', true);
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this._navToChangeView();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleUKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this._navToChangeView();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleCommaKey: function(e) {
|
2016-12-07 18:02:34 -08:00
|
|
|
|
if (this.shouldSuppressKeyboardShortcut(e) ||
|
|
|
|
|
this.modifierPressed(e)) { return; }
|
2016-11-15 17:01:15 -08:00
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
this._openPrefs();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_navToChangeView: function() {
|
|
|
|
|
if (!this._changeNum || !this._patchRange.patchNum) { return; }
|
|
|
|
|
|
|
|
|
|
page.show(this._getChangePath(
|
|
|
|
|
this._changeNum,
|
|
|
|
|
this._patchRange,
|
|
|
|
|
this._change && this._change.revisions));
|
|
|
|
|
},
|
|
|
|
|
|
2016-09-07 17:34:41 -04:00
|
|
|
|
_navToFile: function(path, fileList, direction) {
|
|
|
|
|
var url = this._computeNavLinkURL(path, fileList, direction);
|
|
|
|
|
if (!url) { return; }
|
2016-03-04 17:48:22 -05:00
|
|
|
|
|
2016-09-07 17:34:41 -04:00
|
|
|
|
page.show(this._computeNavLinkURL(path, fileList, direction));
|
|
|
|
|
},
|
|
|
|
|
|
2016-09-16 10:44:37 -07:00
|
|
|
|
_openPrefs: function() {
|
|
|
|
|
this.$.prefsOverlay.open().then(function() {
|
|
|
|
|
var diffPreferences = this.$.diffPreferences;
|
|
|
|
|
var focusStops = diffPreferences.getFocusStops();
|
|
|
|
|
this.$.prefsOverlay.setFocusStops(focusStops);
|
|
|
|
|
this.$.diffPreferences.resetFocus();
|
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
2016-09-07 17:34:41 -04:00
|
|
|
|
/**
|
|
|
|
|
* @param {?string} path The path of the current file being shown.
|
|
|
|
|
* @param {Array.<string>} fileList The list of files in this change and
|
|
|
|
|
* patch range.
|
|
|
|
|
* @param {number} direction Either 1 (next file) or -1 (prev file).
|
|
|
|
|
* @param {(number|boolean)} opt_noUp Whether to return to the change view
|
|
|
|
|
* when advancing the file goes outside the bounds of fileList.
|
|
|
|
|
*
|
|
|
|
|
* @return {?string} The next URL when proceeding in the specified
|
|
|
|
|
* direction.
|
|
|
|
|
*/
|
|
|
|
|
_computeNavLinkURL: function(path, fileList, direction, opt_noUp) {
|
|
|
|
|
if (!path || fileList.length === 0) { return null; }
|
|
|
|
|
|
|
|
|
|
var idx = fileList.indexOf(path);
|
2017-01-06 15:31:32 -08:00
|
|
|
|
if (idx === -1) {
|
|
|
|
|
var file = direction > 0 ? fileList[0] : fileList[fileList.length - 1];
|
|
|
|
|
return this._getDiffURL(this._changeNum, this._patchRange, file);
|
|
|
|
|
}
|
2016-09-07 17:34:41 -04:00
|
|
|
|
|
|
|
|
|
idx += direction;
|
|
|
|
|
// Redirect to the change view if opt_noUp isn’t truthy and idx falls
|
|
|
|
|
// outside the bounds of [0, fileList.length).
|
2016-03-04 17:48:22 -05:00
|
|
|
|
if (idx < 0 || idx > fileList.length - 1) {
|
2016-09-07 17:34:41 -04:00
|
|
|
|
if (opt_noUp) { return null; }
|
|
|
|
|
return this._getChangePath(
|
2016-03-04 17:48:22 -05:00
|
|
|
|
this._changeNum,
|
2016-05-11 14:31:49 -04:00
|
|
|
|
this._patchRange,
|
2016-09-07 17:34:41 -04:00
|
|
|
|
this._change && this._change.revisions);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
}
|
2016-09-07 17:34:41 -04:00
|
|
|
|
return this._getDiffURL(this._changeNum, this._patchRange, fileList[idx]);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_paramsChanged: function(value) {
|
|
|
|
|
if (value.view != this.tagName.toLowerCase()) { return; }
|
|
|
|
|
|
2016-06-20 14:38:33 -07:00
|
|
|
|
this._loadHash(location.hash);
|
2016-04-23 23:18:43 -04:00
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
this._changeNum = value.changeNum;
|
|
|
|
|
this._patchRange = {
|
|
|
|
|
patchNum: value.patchNum,
|
|
|
|
|
basePatchNum: value.basePatchNum || 'PARENT',
|
|
|
|
|
};
|
|
|
|
|
this._path = value.path;
|
|
|
|
|
|
|
|
|
|
this.fire('title-change',
|
|
|
|
|
{title: this._computeFileDisplayName(this._path)});
|
|
|
|
|
|
|
|
|
|
// When navigating away from the page, there is a possibility that the
|
|
|
|
|
// patch number is no longer a part of the URL (say when navigating to
|
|
|
|
|
// the top-level change info view) and therefore undefined in `params`.
|
|
|
|
|
if (!this._patchRange.patchNum) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-23 23:18:43 -04:00
|
|
|
|
var promises = [];
|
|
|
|
|
|
2016-06-09 16:08:04 -07:00
|
|
|
|
this._localPrefs = this.$.storage.getPreferences();
|
2016-04-23 23:18:43 -04:00
|
|
|
|
promises.push(this._getDiffPreferences().then(function(prefs) {
|
|
|
|
|
this._prefs = prefs;
|
|
|
|
|
}.bind(this)));
|
|
|
|
|
|
2016-05-05 16:53:38 -07:00
|
|
|
|
promises.push(this._getPreferences().then(function(prefs) {
|
|
|
|
|
this._userPrefs = prefs;
|
|
|
|
|
}.bind(this)));
|
|
|
|
|
|
2016-05-23 17:18:43 -07:00
|
|
|
|
promises.push(this._getChangeDetail(this._changeNum));
|
2016-04-23 23:18:43 -04:00
|
|
|
|
|
2016-05-23 17:18:43 -07:00
|
|
|
|
Promise.all(promises)
|
|
|
|
|
.then(function() { return this.$.diff.reload(); }.bind(this))
|
|
|
|
|
.then(function() { this._loading = false; }.bind(this));
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
2016-06-20 14:38:33 -07:00
|
|
|
|
/**
|
|
|
|
|
* If the URL hash is a diff address then configure the diff cursor.
|
|
|
|
|
*/
|
|
|
|
|
_loadHash: function(hash) {
|
|
|
|
|
var hash = hash.replace(/^#/, '');
|
|
|
|
|
if (!HASH_PATTERN.test(hash)) { return; }
|
2016-10-19 15:03:18 -07:00
|
|
|
|
if (hash[0] === 'a' || hash[0] === 'b') {
|
2016-06-20 14:38:33 -07:00
|
|
|
|
this.$.cursor.side = DiffSides.LEFT;
|
|
|
|
|
hash = hash.substring(1);
|
|
|
|
|
} else {
|
|
|
|
|
this.$.cursor.side = DiffSides.RIGHT;
|
|
|
|
|
}
|
|
|
|
|
this.$.cursor.initialLineNumber = parseInt(hash, 10);
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
_pathChanged: function(path) {
|
|
|
|
|
if (this._fileList.length == 0) { return; }
|
|
|
|
|
|
|
|
|
|
this.set('changeViewState.selectedFileIndex',
|
|
|
|
|
this._fileList.indexOf(path));
|
|
|
|
|
|
|
|
|
|
if (this._loggedIn) {
|
|
|
|
|
this._setReviewed(true);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2016-05-11 14:31:49 -04:00
|
|
|
|
_getDiffURL: function(changeNum, patchRange, path) {
|
|
|
|
|
return '/c/' + changeNum + '/' + this._patchRangeStr(patchRange) + '/' +
|
2016-11-01 16:11:07 -07:00
|
|
|
|
this.encodeURL(path, true);
|
2016-05-11 14:31:49 -04:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_computeDiffURL: function(changeNum, patchRangeRecord, path) {
|
|
|
|
|
return this._getDiffURL(changeNum, patchRangeRecord.base, path);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_patchRangeStr: function(patchRange) {
|
2016-03-04 17:48:22 -05:00
|
|
|
|
var patchStr = patchRange.patchNum;
|
|
|
|
|
if (patchRange.basePatchNum != null &&
|
|
|
|
|
patchRange.basePatchNum != 'PARENT') {
|
|
|
|
|
patchStr = patchRange.basePatchNum + '..' + patchRange.patchNum;
|
|
|
|
|
}
|
2016-05-11 14:31:49 -04:00
|
|
|
|
return patchStr;
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_computeAvailablePatches: function(revisions) {
|
|
|
|
|
var patchNums = [];
|
|
|
|
|
for (var rev in revisions) {
|
|
|
|
|
patchNums.push(revisions[rev]._number);
|
|
|
|
|
}
|
|
|
|
|
return patchNums.sort(function(a, b) { return a - b; });
|
|
|
|
|
},
|
|
|
|
|
|
2016-05-11 14:31:49 -04:00
|
|
|
|
_getChangePath: function(changeNum, patchRange, revisions) {
|
2016-03-04 17:48:22 -05:00
|
|
|
|
var base = '/c/' + changeNum + '/';
|
|
|
|
|
|
|
|
|
|
// The change may not have loaded yet, making revisions unavailable.
|
|
|
|
|
if (!revisions) {
|
2016-05-11 14:31:49 -04:00
|
|
|
|
return base + this._patchRangeStr(patchRange);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var latestPatchNum = -1;
|
|
|
|
|
for (var rev in revisions) {
|
|
|
|
|
latestPatchNum = Math.max(latestPatchNum, revisions[rev]._number);
|
|
|
|
|
}
|
2016-05-11 14:31:49 -04:00
|
|
|
|
if (patchRange.basePatchNum !== 'PARENT' ||
|
|
|
|
|
parseInt(patchRange.patchNum, 10) !== latestPatchNum) {
|
|
|
|
|
return base + this._patchRangeStr(patchRange);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base;
|
|
|
|
|
},
|
|
|
|
|
|
2016-05-11 14:31:49 -04:00
|
|
|
|
_computeChangePath: function(changeNum, patchRangeRecord, revisions) {
|
|
|
|
|
return this._getChangePath(changeNum, patchRangeRecord.base, revisions);
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
_computeFileDisplayName: function(path) {
|
2016-10-11 13:23:53 -07:00
|
|
|
|
return path === COMMIT_MESSAGE_PATH ? 'Commit message' : path;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_computeTruncatedFileDisplayName: function(path) {
|
|
|
|
|
return path === COMMIT_MESSAGE_PATH ?
|
2016-12-09 11:45:40 -08:00
|
|
|
|
'Commit message' : util.truncatePath(path);
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_computeFileSelected: function(path, currentPath) {
|
|
|
|
|
return path == currentPath;
|
|
|
|
|
},
|
|
|
|
|
|
2016-04-23 23:18:43 -04:00
|
|
|
|
_computePrefsButtonHidden: function(prefs, loggedIn) {
|
|
|
|
|
return !loggedIn || !prefs;
|
|
|
|
|
},
|
|
|
|
|
|
2016-03-04 17:48:22 -05:00
|
|
|
|
_computeKeyNav: function(path, selectedPath, fileList) {
|
|
|
|
|
var selectedIndex = fileList.indexOf(selectedPath);
|
|
|
|
|
if (fileList.indexOf(path) == selectedIndex - 1) {
|
|
|
|
|
return '[';
|
|
|
|
|
}
|
|
|
|
|
if (fileList.indexOf(path) == selectedIndex + 1) {
|
|
|
|
|
return ']';
|
|
|
|
|
}
|
|
|
|
|
return '';
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleFileTap: function(e) {
|
|
|
|
|
this.$.dropdown.close();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handleMobileSelectChange: function(e) {
|
|
|
|
|
var path = Polymer.dom(e).rootTarget.value;
|
2016-05-11 14:31:49 -04:00
|
|
|
|
page.show(this._getDiffURL(this._changeNum, this._patchRange, path));
|
2016-03-04 17:48:22 -05:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_showDropdownTapHandler: function(e) {
|
|
|
|
|
this.$.dropdown.open();
|
|
|
|
|
},
|
2016-04-23 23:18:43 -04:00
|
|
|
|
|
|
|
|
|
_handlePrefsTap: function(e) {
|
|
|
|
|
e.preventDefault();
|
2016-09-16 10:44:37 -07:00
|
|
|
|
this._openPrefs();
|
2016-04-23 23:18:43 -04:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handlePrefsSave: function(e) {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
var el = Polymer.dom(e).rootTarget;
|
|
|
|
|
el.disabled = true;
|
2016-06-08 12:37:31 -07:00
|
|
|
|
this.$.storage.savePreferences(this._localPrefs);
|
2016-04-23 23:18:43 -04:00
|
|
|
|
this._saveDiffPreferences().then(function(response) {
|
|
|
|
|
el.disabled = false;
|
2016-05-02 15:59:59 -04:00
|
|
|
|
if (!response.ok) { return response; }
|
|
|
|
|
|
2016-04-23 23:18:43 -04:00
|
|
|
|
this.$.prefsOverlay.close();
|
2016-05-02 15:59:59 -04:00
|
|
|
|
}.bind(this)).catch(function(err) {
|
|
|
|
|
el.disabled = false;
|
2016-04-23 23:18:43 -04:00
|
|
|
|
}.bind(this));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_saveDiffPreferences: function() {
|
|
|
|
|
return this.$.restAPI.saveDiffPreferences(this._prefs);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_handlePrefsCancel: function(e) {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
this.$.prefsOverlay.close();
|
|
|
|
|
},
|
2016-05-05 16:53:38 -07:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* _getDiffViewMode: Get the diff view (side-by-side or unified) based on
|
|
|
|
|
* the current state.
|
|
|
|
|
*
|
|
|
|
|
* The expected behavior is to use the mode specified in the user's
|
2016-12-09 16:58:31 -08:00
|
|
|
|
* preferences unless they have manually chosen the alternative view or they
|
|
|
|
|
* are on a mobile device. If the user navigates up to the change view, it
|
|
|
|
|
* should clear this choice and revert to the preference the next time a
|
|
|
|
|
* diff is viewed.
|
2016-05-05 16:53:38 -07:00
|
|
|
|
*
|
|
|
|
|
* Use side-by-side if the user is not logged in.
|
|
|
|
|
*
|
|
|
|
|
* @return {String}
|
|
|
|
|
*/
|
|
|
|
|
_getDiffViewMode: function() {
|
|
|
|
|
if (this.changeViewState.diffMode) {
|
|
|
|
|
return this.changeViewState.diffMode;
|
2016-12-09 16:58:31 -08:00
|
|
|
|
} else if (this._userPrefs) {
|
|
|
|
|
return this.changeViewState.diffMode =
|
|
|
|
|
this._userPrefs.default_diff_view;
|
|
|
|
|
} else {
|
|
|
|
|
return 'SIDE_BY_SIDE';
|
2016-05-05 16:53:38 -07:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2016-05-23 17:18:43 -07:00
|
|
|
|
_computeModeSelectHidden: function() {
|
|
|
|
|
return this._isImageDiff;
|
|
|
|
|
},
|
2016-06-20 14:02:42 -07:00
|
|
|
|
|
|
|
|
|
_onLineSelected: function(e, detail) {
|
|
|
|
|
this.$.cursor.moveToLineNumber(detail.number, detail.side);
|
2016-10-26 17:11:50 -07:00
|
|
|
|
history.replaceState(null, null, '#' + this.$.cursor.getAddress());
|
2016-06-20 14:02:42 -07:00
|
|
|
|
},
|
2016-08-30 12:44:27 -07:00
|
|
|
|
|
2016-10-21 11:01:08 -07:00
|
|
|
|
_computeDownloadLink: function(changeNum, patchRange, path) {
|
|
|
|
|
var url = this.changeBaseURL(changeNum, patchRange.patchNum);
|
|
|
|
|
url += '/patch?zip&path=' + encodeURIComponent(path);
|
|
|
|
|
return url;
|
|
|
|
|
},
|
2016-03-04 17:48:22 -05:00
|
|
|
|
});
|
|
|
|
|
})();
|