| // 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-reviewer-list', |
| |
| properties: { |
| change: Object, |
| disabled: { |
| type: Boolean, |
| value: false, |
| reflectToAttribute: true, |
| }, |
| mutable: { |
| type: Boolean, |
| value: false, |
| }, |
| suggestFrom: { |
| type: Number, |
| value: 3, |
| }, |
| |
| _reviewers: { |
| type: Array, |
| value: function() { return []; }, |
| }, |
| _showInput: { |
| type: Boolean, |
| value: false, |
| }, |
| |
| // Used for testing. |
| _lastAutocompleteRequest: Object, |
| _xhrPromise: Object, |
| }, |
| |
| observers: [ |
| '_reviewersChanged(change.reviewers.*, change.owner)', |
| ], |
| |
| _reviewersChanged: function(changeRecord, owner) { |
| var result = []; |
| var reviewers = changeRecord.base; |
| for (var key in reviewers) { |
| if (key == 'REVIEWER' || key == 'CC') { |
| result = result.concat(reviewers[key]); |
| } |
| } |
| this._reviewers = result.filter(function(reviewer) { |
| return reviewer._account_id != owner._account_id; |
| }); |
| }, |
| |
| _computeCanRemoveReviewer: function(reviewer, mutable) { |
| if (!mutable) { return false; } |
| |
| for (var i = 0; i < this.change.removable_reviewers.length; i++) { |
| if (this.change.removable_reviewers[i]._account_id == |
| reviewer._account_id) { |
| return true; |
| } |
| } |
| return false; |
| }, |
| |
| _handleRemove: function(e) { |
| e.preventDefault(); |
| var target = Polymer.dom(e).rootTarget; |
| var accountID = parseInt(target.getAttribute('data-account-id'), 10); |
| this.disabled = true; |
| this._xhrPromise = |
| this._removeReviewer(accountID).then(function(response) { |
| this.disabled = false; |
| if (!response.ok) { return response; } |
| |
| var reviewers = this.change.reviewers; |
| ['REVIEWER', 'CC'].forEach(function(type) { |
| reviewers[type] = reviewers[type] || []; |
| for (var i = 0; i < reviewers[type].length; i++) { |
| if (reviewers[type][i]._account_id == accountID) { |
| this.splice('change.reviewers.' + type, i, 1); |
| break; |
| } |
| } |
| }, this); |
| }.bind(this)).catch(function(err) { |
| this.disabled = false; |
| throw err; |
| }.bind(this)); |
| }, |
| |
| _handleAddTap: function(e) { |
| e.preventDefault(); |
| this._showInput = true; |
| this.$.accountEntry.focus(); |
| }, |
| |
| _handleCancelTap: function(e) { |
| e.preventDefault(); |
| this.$.accountEntry.clear(); |
| this._cancel(); |
| }, |
| |
| _cancel: function() { |
| this._showInput = false; |
| this.$.accountEntry.clear(); |
| this.$.addReviewer.focus(); |
| }, |
| |
| _sendAddRequest: function(e, detail) { |
| var reviewer = detail.value; |
| var reviewerID; |
| if (reviewer.account) { |
| reviewerID = reviewer.account._account_id; |
| } else if (reviewer.group) { |
| reviewerID = reviewer.group.id; |
| } |
| |
| this.disabled = true; |
| this._xhrPromise = this._addReviewer(reviewerID).then(function(response) { |
| this.change.reviewers.CC = this.change.reviewers.CC || []; |
| this.disabled = false; |
| if (!response.ok) { return response; } |
| |
| return this.$.restAPI.getResponseObject(response).then(function(obj) { |
| obj.reviewers.forEach(function(r) { |
| this.push('change.removable_reviewers', r); |
| this.push('change.reviewers.CC', r); |
| }, this); |
| this.$.accountEntry.focus(); |
| }.bind(this)); |
| }.bind(this)).catch(function(err) { |
| this.disabled = false; |
| throw err; |
| }.bind(this)); |
| }, |
| |
| _addReviewer: function(id) { |
| return this.$.restAPI.addChangeReviewer(this.change._number, id); |
| }, |
| |
| _removeReviewer: function(id) { |
| return this.$.restAPI.removeChangeReviewer(this.change._number, id); |
| }, |
| }); |
| })(); |