142 lines
3.5 KiB
JavaScript
142 lines
3.5 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-admin-project-list',
|
|
|
|
properties: {
|
|
/**
|
|
* URL params passed from the router.
|
|
*/
|
|
params: {
|
|
type: Object,
|
|
observer: '_paramsChanged',
|
|
},
|
|
|
|
/**
|
|
* Offset of currently visible query results.
|
|
*/
|
|
_offset: Number,
|
|
_path: {
|
|
type: String,
|
|
readOnly: true,
|
|
value: '/admin/projects',
|
|
},
|
|
_hasNewProjectName: Boolean,
|
|
_createNewCapability: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
_projects: Array,
|
|
|
|
/**
|
|
* Because we request one more than the projectsPerPage, _shownProjects
|
|
* maybe one less than _projects.
|
|
* */
|
|
_shownProjects: {
|
|
type: Array,
|
|
computed: 'computeShownItems(_projects)',
|
|
},
|
|
|
|
_projectsPerPage: {
|
|
type: Number,
|
|
value: 25,
|
|
},
|
|
|
|
_loading: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
_filter: String,
|
|
},
|
|
|
|
behaviors: [
|
|
Gerrit.ListViewBehavior,
|
|
],
|
|
|
|
attached() {
|
|
this._getCreateProjectCapability();
|
|
this.fire('title-change', {title: 'Project List'});
|
|
},
|
|
|
|
_paramsChanged(params) {
|
|
this._loading = true;
|
|
this._filter = this.getFilterValue(params);
|
|
this._offset = this.getOffsetValue(params);
|
|
|
|
return this._getProjects(this._filter, this._projectsPerPage,
|
|
this._offset);
|
|
},
|
|
|
|
_computeProjectUrl(name) {
|
|
return this.getUrl(this._path + '/', name);
|
|
},
|
|
|
|
_getCreateProjectCapability() {
|
|
return this.$.restAPI.getAccount().then(account => {
|
|
if (!account) { return; }
|
|
return this.$.restAPI.getAccountCapabilities(['createProject'])
|
|
.then(capabilities => {
|
|
if (capabilities.createProject) {
|
|
this._createNewCapability = true;
|
|
}
|
|
});
|
|
});
|
|
},
|
|
|
|
_getProjects(filter, projectsPerPage, offset) {
|
|
this._projects = [];
|
|
return this.$.restAPI.getProjects(filter, projectsPerPage, offset)
|
|
.then(projects => {
|
|
if (!projects) {
|
|
return;
|
|
}
|
|
this._projects = Object.keys(projects)
|
|
.map(key => {
|
|
const project = projects[key];
|
|
project.name = key;
|
|
return project;
|
|
});
|
|
this._loading = false;
|
|
});
|
|
},
|
|
|
|
_handleCreateProject() {
|
|
this.$.createNewModal.handleCreateProject();
|
|
},
|
|
|
|
_handleCloseCreate() {
|
|
this.$.createOverlay.close();
|
|
},
|
|
|
|
_handleCreateClicked() {
|
|
this.$.createOverlay.open();
|
|
},
|
|
|
|
_readOnly(item) {
|
|
return item.state === 'READ_ONLY' ? 'Y' : 'N';
|
|
},
|
|
|
|
_computeWeblink(project) {
|
|
if (!project.web_links) {
|
|
return '';
|
|
}
|
|
const webLinks = project.web_links;
|
|
return webLinks.length ? webLinks : null;
|
|
},
|
|
});
|
|
})();
|