2021-04-03 17:26:43 +00:00
|
|
|
import { t } from "@lingui/macro";
|
2021-02-19 16:18:09 +00:00
|
|
|
import { customElement, html, property, TemplateResult } from "lit-element";
|
|
|
|
import { AKResponse } from "../../api/Client";
|
|
|
|
import { TablePage } from "../../elements/table/TablePage";
|
|
|
|
|
2021-08-12 20:03:13 +00:00
|
|
|
import "../../elements/forms/DeleteBulkForm";
|
2021-02-19 16:18:09 +00:00
|
|
|
import "../../elements/buttons/SpinnerButton";
|
|
|
|
import { TableColumn } from "../../elements/table/Table";
|
2021-03-02 14:12:26 +00:00
|
|
|
import { PAGE_SIZE } from "../../constants";
|
2021-03-16 20:32:39 +00:00
|
|
|
import { CoreApi, Group } from "authentik-api";
|
2021-03-08 10:14:00 +00:00
|
|
|
import { DEFAULT_CONFIG } from "../../api/Config";
|
2021-03-25 20:39:49 +00:00
|
|
|
import "../../elements/forms/ModalForm";
|
|
|
|
import "./GroupForm";
|
2021-02-19 16:18:09 +00:00
|
|
|
|
|
|
|
@customElement("ak-group-list")
|
|
|
|
export class GroupListPage extends TablePage<Group> {
|
2021-08-05 10:30:43 +00:00
|
|
|
checkbox = true;
|
2021-02-19 16:18:09 +00:00
|
|
|
searchEnabled(): boolean {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
pageTitle(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Groups`;
|
2021-02-19 16:18:09 +00:00
|
|
|
}
|
|
|
|
pageDescription(): string {
|
2021-04-03 17:26:43 +00:00
|
|
|
return t`Group users together and give them permissions based on the membership.`;
|
2021-02-19 16:18:09 +00:00
|
|
|
}
|
|
|
|
pageIcon(): string {
|
2021-03-20 15:06:56 +00:00
|
|
|
return "pf-icon pf-icon-users";
|
2021-02-19 16:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@property()
|
|
|
|
order = "slug";
|
|
|
|
|
|
|
|
apiEndpoint(page: number): Promise<AKResponse<Group>> {
|
2021-03-08 10:14:00 +00:00
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreGroupsList({
|
2021-02-19 16:18:09 +00:00
|
|
|
ordering: this.order,
|
|
|
|
page: page,
|
2021-03-08 10:14:00 +00:00
|
|
|
pageSize: PAGE_SIZE,
|
2021-02-19 16:18:09 +00:00
|
|
|
search: this.search || "",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
columns(): TableColumn[] {
|
|
|
|
return [
|
2021-04-04 14:56:16 +00:00
|
|
|
new TableColumn(t`Name`, "name"),
|
|
|
|
new TableColumn(t`Parent`, "parent"),
|
2021-04-04 14:22:29 +00:00
|
|
|
new TableColumn(t`Members`),
|
|
|
|
new TableColumn(t`Superuser privileges?`),
|
2021-08-05 10:30:43 +00:00
|
|
|
new TableColumn(t`Actions`),
|
2021-02-19 16:18:09 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-08-05 10:30:43 +00:00
|
|
|
renderToolbarSelected(): TemplateResult {
|
2021-08-12 20:03:13 +00:00
|
|
|
const disabled = this.selectedElements.length < 1;
|
|
|
|
return html`<ak-forms-delete-bulk
|
|
|
|
objectLabel=${t`Group(s)`}
|
|
|
|
.objects=${this.selectedElements}
|
|
|
|
.usedBy=${(item: Group) => {
|
2021-08-05 10:30:43 +00:00
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreGroupsUsedByList({
|
|
|
|
groupUuid: item.pk,
|
|
|
|
});
|
|
|
|
}}
|
2021-08-12 20:03:13 +00:00
|
|
|
.delete=${(item: Group) => {
|
2021-08-05 10:30:43 +00:00
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreGroupsDestroy({
|
|
|
|
groupUuid: item.pk,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<button ?disabled=${disabled} slot="trigger" class="pf-c-button pf-m-danger">
|
|
|
|
${t`Delete`}
|
|
|
|
</button>
|
2021-08-12 20:03:13 +00:00
|
|
|
</ak-forms-delete-bulk>`;
|
2021-08-05 10:30:43 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 16:18:09 +00:00
|
|
|
row(item: Group): TemplateResult[] {
|
|
|
|
return [
|
|
|
|
html`${item.name}`,
|
|
|
|
html`${item.parent || "-"}`,
|
2021-04-22 08:36:10 +00:00
|
|
|
html`${Array.from(item.users || []).length}`,
|
2021-04-03 17:59:22 +00:00
|
|
|
html`${item.isSuperuser ? t`Yes` : t`No`}`,
|
2021-08-03 15:52:21 +00:00
|
|
|
html` <ak-forms-modal>
|
2021-08-05 10:30:43 +00:00
|
|
|
<span slot="submit"> ${t`Update`} </span>
|
|
|
|
<span slot="header"> ${t`Update Group`} </span>
|
|
|
|
<ak-group-form slot="form" .instancePk=${item.pk}> </ak-group-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-plain">
|
|
|
|
<i class="fas fa-edit"></i>
|
|
|
|
</button>
|
|
|
|
</ak-forms-modal>`,
|
2021-02-19 16:18:09 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
|
|
|
return html`
|
2021-08-03 15:52:21 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit"> ${t`Create`} </span>
|
|
|
|
<span slot="header"> ${t`Create Group`} </span>
|
|
|
|
<ak-group-form slot="form"> </ak-group-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">${t`Create`}</button>
|
|
|
|
</ak-forms-modal>
|
|
|
|
${super.renderToolbar()}
|
2021-02-19 16:18:09 +00:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|