
Add a new element that simplifies user selection of a repository and branch pair named gr-repo-branch-picker. Also introduces a wrapper around gr-autocomplete that provides additional visual styling named gr-labeled-autocomplete. Change-Id: I434690b249fd4632989bbdd73cad6f5229399ced
110 lines
2.7 KiB
JavaScript
110 lines
2.7 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright (C) 2018 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';
|
|
|
|
const SUGGESTIONS_LIMIT = 15;
|
|
const REF_PREFIX = 'refs/heads/';
|
|
|
|
Polymer({
|
|
is: 'gr-repo-branch-picker',
|
|
|
|
properties: {
|
|
repo: {
|
|
type: String,
|
|
notify: true,
|
|
observer: '_repoChanged',
|
|
},
|
|
branch: {
|
|
type: String,
|
|
notify: true,
|
|
},
|
|
_branchDisabled: Boolean,
|
|
_query: {
|
|
type: Function,
|
|
value() {
|
|
return this._getRepoBranchesSuggestions.bind(this);
|
|
},
|
|
},
|
|
_repoQuery: {
|
|
type: Function,
|
|
value() {
|
|
return this._getRepoSuggestions.bind(this);
|
|
},
|
|
},
|
|
},
|
|
|
|
behaviors: [
|
|
Gerrit.URLEncodingBehavior,
|
|
],
|
|
|
|
attached() {
|
|
if (this.repo) {
|
|
this.$.repoInput.setText(this.repo);
|
|
}
|
|
},
|
|
|
|
ready() {
|
|
this._branchDisabled = !this.repo;
|
|
},
|
|
|
|
_getRepoBranchesSuggestions(input) {
|
|
if (!this.repo) { return Promise.resolve([]); }
|
|
if (input.startsWith(REF_PREFIX)) {
|
|
input = input.substring(REF_PREFIX.length);
|
|
}
|
|
return this.$.restAPI.getRepoBranches(input, this.repo, SUGGESTIONS_LIMIT)
|
|
.then(this._branchResponseToSuggestions.bind(this));
|
|
},
|
|
|
|
_getRepoSuggestions(input) {
|
|
return this.$.restAPI.getRepos(input, SUGGESTIONS_LIMIT)
|
|
.then(this._repoResponseToSuggestions.bind(this));
|
|
},
|
|
|
|
_repoResponseToSuggestions(res) {
|
|
return res.map(repo => ({
|
|
name: repo.name,
|
|
value: this.singleDecodeURL(repo.id),
|
|
}));
|
|
},
|
|
|
|
_branchResponseToSuggestions(res) {
|
|
return Object.keys(res).map(key => {
|
|
let branch = res[key].ref;
|
|
if (branch.startsWith(REF_PREFIX)) {
|
|
branch = branch.substring(REF_PREFIX.length);
|
|
}
|
|
return {name: branch, value: branch};
|
|
});
|
|
},
|
|
|
|
_repoCommitted(e) {
|
|
this.repo = e.detail.value;
|
|
},
|
|
|
|
_branchCommitted(e) {
|
|
this.branch = e.detail.value;
|
|
},
|
|
|
|
_repoChanged() {
|
|
this.$.branchInput.clear();
|
|
this._branchDisabled = !this.repo;
|
|
},
|
|
});
|
|
})();
|