
* Replace the global Gerrit.Nav variable with named imports. * Update gr-app-global-var-init.js Note: This is not a recommended approach. The change focuses on removing global variable. See todo in gr-navigation.js Change-Id: If389574d6d3bc1d643538f6776740bca82f71049
211 lines
6.6 KiB
JavaScript
211 lines
6.6 KiB
JavaScript
import {GerritNav} from '../../elements/core/gr-navigation/gr-navigation.js';
|
|
|
|
/**
|
|
* @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.
|
|
*/
|
|
|
|
const ADMIN_LINKS = [{
|
|
name: 'Repositories',
|
|
noBaseUrl: true,
|
|
url: '/admin/repos',
|
|
view: 'gr-repo-list',
|
|
viewableToAll: true,
|
|
}, {
|
|
name: 'Groups',
|
|
section: 'Groups',
|
|
noBaseUrl: true,
|
|
url: '/admin/groups',
|
|
view: 'gr-admin-group-list',
|
|
}, {
|
|
name: 'Plugins',
|
|
capability: 'viewPlugins',
|
|
section: 'Plugins',
|
|
noBaseUrl: true,
|
|
url: '/admin/plugins',
|
|
view: 'gr-plugin-list',
|
|
}];
|
|
|
|
window.Gerrit = window.Gerrit || {};
|
|
|
|
/** @polymerBehavior Gerrit.AdminNavBehavior */
|
|
export const AdminNavBehavior = {
|
|
/**
|
|
* @param {!Object} account
|
|
* @param {!Function} getAccountCapabilities
|
|
* @param {!Function} getAdminMenuLinks
|
|
* Possible aguments in options:
|
|
* repoName?: string
|
|
* groupId?: string,
|
|
* groupName?: string,
|
|
* groupIsInternal?: boolean,
|
|
* isAdmin?: boolean,
|
|
* groupOwner?: boolean,
|
|
* @param {!Object=} opt_options
|
|
* @return {Promise<!Object>}
|
|
*/
|
|
getAdminLinks(account, getAccountCapabilities, getAdminMenuLinks,
|
|
opt_options) {
|
|
if (!account) {
|
|
return Promise.resolve(this._filterLinks(link => link.viewableToAll,
|
|
getAdminMenuLinks, opt_options));
|
|
}
|
|
return getAccountCapabilities()
|
|
.then(capabilities => this._filterLinks(
|
|
link => !link.capability
|
|
|| capabilities.hasOwnProperty(link.capability),
|
|
getAdminMenuLinks,
|
|
opt_options));
|
|
},
|
|
|
|
/**
|
|
* @param {!Function} filterFn
|
|
* @param {!Function} getAdminMenuLinks
|
|
* Possible aguments in options:
|
|
* repoName?: string
|
|
* groupId?: string,
|
|
* groupName?: string,
|
|
* groupIsInternal?: boolean,
|
|
* isAdmin?: boolean,
|
|
* groupOwner?: boolean,
|
|
* @param {!Object|undefined} opt_options
|
|
* @return {Promise<!Object>}
|
|
*/
|
|
_filterLinks(filterFn, getAdminMenuLinks, opt_options) {
|
|
let links = ADMIN_LINKS.slice(0);
|
|
let expandedSection;
|
|
|
|
const isExernalLink = link => link.url[0] !== '/';
|
|
|
|
// Append top-level links that are defined by plugins.
|
|
links.push(...getAdminMenuLinks().map(link => {
|
|
return {
|
|
url: link.url,
|
|
name: link.text,
|
|
capability: link.capability || null,
|
|
noBaseUrl: !isExernalLink(link),
|
|
view: null,
|
|
viewableToAll: !link.capability,
|
|
target: isExernalLink(link) ? '_blank' : null,
|
|
};
|
|
}));
|
|
|
|
links = links.filter(filterFn);
|
|
|
|
const filteredLinks = [];
|
|
const repoName = opt_options && opt_options.repoName;
|
|
const groupId = opt_options && opt_options.groupId;
|
|
const groupName = opt_options && opt_options.groupName;
|
|
const groupIsInternal = opt_options && opt_options.groupIsInternal;
|
|
const isAdmin = opt_options && opt_options.isAdmin;
|
|
const groupOwner = opt_options && opt_options.groupOwner;
|
|
|
|
// Don't bother to get sub-navigation items if only the top level links
|
|
// are needed. This is used by the main header dropdown.
|
|
if (!repoName && !groupId) { return {links, expandedSection}; }
|
|
|
|
// Otherwise determine the full set of links and return both the full
|
|
// set in addition to the subsection that should be displayed if it
|
|
// exists.
|
|
for (const link of links) {
|
|
const linkCopy = Object.assign({}, link);
|
|
if (linkCopy.name === 'Repositories' && repoName) {
|
|
linkCopy.subsection = this.getRepoSubsections(repoName);
|
|
expandedSection = linkCopy.subsection;
|
|
} else if (linkCopy.name === 'Groups' && groupId && groupName) {
|
|
linkCopy.subsection = this.getGroupSubsections(groupId, groupName,
|
|
groupIsInternal, isAdmin, groupOwner);
|
|
expandedSection = linkCopy.subsection;
|
|
}
|
|
filteredLinks.push(linkCopy);
|
|
}
|
|
return {links: filteredLinks, expandedSection};
|
|
},
|
|
|
|
getGroupSubsections(groupId, groupName, groupIsInternal, isAdmin,
|
|
groupOwner) {
|
|
const subsection = {
|
|
name: groupName,
|
|
view: GerritNav.View.GROUP,
|
|
url: GerritNav.getUrlForGroup(groupId),
|
|
children: [],
|
|
};
|
|
if (groupIsInternal) {
|
|
subsection.children.push({
|
|
name: 'Members',
|
|
detailType: GerritNav.GroupDetailView.MEMBERS,
|
|
view: GerritNav.View.GROUP,
|
|
url: GerritNav.getUrlForGroupMembers(groupId),
|
|
});
|
|
}
|
|
if (groupIsInternal && (isAdmin || groupOwner)) {
|
|
subsection.children.push(
|
|
{
|
|
name: 'Audit Log',
|
|
detailType: GerritNav.GroupDetailView.LOG,
|
|
view: GerritNav.View.GROUP,
|
|
url: GerritNav.getUrlForGroupLog(groupId),
|
|
}
|
|
);
|
|
}
|
|
return subsection;
|
|
},
|
|
|
|
getRepoSubsections(repoName) {
|
|
return {
|
|
name: repoName,
|
|
view: GerritNav.View.REPO,
|
|
url: GerritNav.getUrlForRepo(repoName),
|
|
children: [{
|
|
name: 'Access',
|
|
view: GerritNav.View.REPO,
|
|
detailType: GerritNav.RepoDetailView.ACCESS,
|
|
url: GerritNav.getUrlForRepoAccess(repoName),
|
|
},
|
|
{
|
|
name: 'Commands',
|
|
view: GerritNav.View.REPO,
|
|
detailType: GerritNav.RepoDetailView.COMMANDS,
|
|
url: GerritNav.getUrlForRepoCommands(repoName),
|
|
},
|
|
{
|
|
name: 'Branches',
|
|
view: GerritNav.View.REPO,
|
|
detailType: GerritNav.RepoDetailView.BRANCHES,
|
|
url: GerritNav.getUrlForRepoBranches(repoName),
|
|
},
|
|
{
|
|
name: 'Tags',
|
|
view: GerritNav.View.REPO,
|
|
detailType: GerritNav.RepoDetailView.TAGS,
|
|
url: GerritNav.getUrlForRepoTags(repoName),
|
|
},
|
|
{
|
|
name: 'Dashboards',
|
|
view: GerritNav.View.REPO,
|
|
detailType: GerritNav.RepoDetailView.DASHBOARDS,
|
|
url: GerritNav.getUrlForRepoDashboards(repoName),
|
|
}],
|
|
};
|
|
},
|
|
};
|
|
|
|
// TODO(dmfilippov) Remove the following lines with assignments
|
|
// Plugins can use the behavior because it was accessible with
|
|
// the global Gerrit... variable. To avoid breaking changes in plugins
|
|
// temporary assign global variables.
|
|
window.Gerrit = window.Gerrit || {};
|
|
window.Gerrit.AdminNavBehavior = AdminNavBehavior;
|