Becky Siegel 8b7d50b3c8 Add default values in create project dialog and group config
A previous fix (change 146550) for gr-select surfaced another issue that
was previously masked by it. gr-select takes a bind-value but in cases
where that value is not supplied, the dropdown appears to be blank.

In order to have the correct default values, the objects being two way
bound have to get set to have the default value.

Bug: Issue 7973
Change-Id: Ied00a4c297fb85dbd63838395d67e36aa3fb0947
2017-12-14 14:44:13 -08:00

96 lines
2.4 KiB
JavaScript

// Copyright (C) 2017 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-create-project-dialog',
properties: {
params: Object,
hasNewProjectName: {
type: Boolean,
notify: true,
value: false,
},
/** @type {?} */
_projectConfig: {
type: Object,
value: () => {
// Set default values for dropdowns.
return {
create_empty_commit: false,
permissions_only: false,
};
},
},
_projectCreated: {
type: Boolean,
value: false,
},
_query: {
type: Function,
value() {
return this._getProjectSuggestions.bind(this);
},
},
},
observers: [
'_updateProjectName(_projectConfig.name)',
],
behaviors: [
Gerrit.BaseUrlBehavior,
Gerrit.URLEncodingBehavior,
],
_computeProjectUrl(projectName) {
return this.getBaseUrl() + '/admin/projects/' +
this.encodeURL(projectName, true);
},
_updateProjectName(name) {
this.hasNewProjectName = !!name;
},
handleCreateProject() {
return this.$.restAPI.createProject(this._projectConfig)
.then(projectRegistered => {
if (projectRegistered.status === 201) {
this._projectCreated = true;
page.show(this._computeProjectUrl(this._projectConfig.name));
}
});
},
_getProjectSuggestions(input) {
return this.$.restAPI.getSuggestedProjects(input)
.then(response => {
const projects = [];
for (const key in response) {
if (!response.hasOwnProperty(key)) { continue; }
projects.push({
name: key,
value: response[key],
});
}
return projects;
});
},
});
})();