blob: 8f1706db9e350537be8fb758305b8eb7e0838147 [file] [log] [blame]
/**
* @license
* 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.
*/
import {GerritNav} from '../../core/gr-navigation/gr-navigation';
import {GroupInfo, GroupId} from '../../../types/common';
import {appContext} from '../../../services/app-context';
import {formStyles} from '../../../styles/gr-form-styles';
import {sharedStyles} from '../../../styles/shared-styles';
import {LitElement, css, html} from 'lit';
import {customElement, state} from 'lit/decorators';
declare global {
interface HTMLElementTagNameMap {
'gr-group-list': GrGroupList;
}
}
@customElement('gr-group-list')
export class GrGroupList extends LitElement {
@state()
protected _groups: GroupInfo[] = [];
private readonly restApiService = appContext.restApiService;
loadData() {
return this.restApiService.getAccountGroups().then(groups => {
if (!groups) return;
this._groups = groups.sort((a, b) =>
(a.name || '').localeCompare(b.name || '')
);
});
}
static override get styles() {
return [
sharedStyles,
formStyles,
css`
#groups .nameColumn {
min-width: 11em;
width: auto;
}
.descriptionHeader {
min-width: 21.5em;
}
.visibleCell {
text-align: center;
width: 6em;
}
`,
];
}
override render() {
return html` <div class="gr-form-styles">
<table id="groups">
<thead>
<tr>
<th class="nameHeader">Name</th>
<th class="descriptionHeader">Description</th>
<th class="visibleCell">Visible to all</th>
</tr>
</thead>
<tbody>
${(this._groups ?? []).map(group => {
const href = this._computeGroupPath(group);
return html`
<tr>
<td class="nameColumn">
<a href="${href}"> ${group.name} </a>
</td>
<td>${group.description}</td>
<td class="visibleCell">
${group?.options?.visible_to_all ? 'Yes' : 'No'}
</td>
</tr>
`;
})}
</tbody>
</table>
</div>`;
}
_computeGroupPath(group: GroupInfo) {
if (!group || !group.id) {
return;
}
// Group ID is already encoded from the API
// Decode it here to match with our router encoding behavior
return GerritNav.getUrlForGroup(decodeURIComponent(group.id) as GroupId);
}
}