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-03-18 00:43:12 +00:00
|
|
|
import "../../elements/forms/DeleteForm";
|
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> {
|
|
|
|
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-02-19 16:18:09 +00:00
|
|
|
new TableColumn(""),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
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-02-19 16:18:09 +00:00
|
|
|
html`
|
2021-03-25 20:39:49 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update`}
|
2021-03-25 20:39:49 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Update Group`}
|
2021-03-25 20:39:49 +00:00
|
|
|
</span>
|
|
|
|
<ak-group-form slot="form" .group=${item}>
|
|
|
|
</ak-group-form>
|
2021-03-29 14:16:27 +00:00
|
|
|
<button slot="trigger" class="pf-c-button pf-m-secondary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Edit`}
|
2021-03-25 20:39:49 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
2021-03-18 00:43:12 +00:00
|
|
|
<ak-forms-delete
|
|
|
|
.obj=${item}
|
2021-04-03 17:26:43 +00:00
|
|
|
objectLabel=${t`Group`}
|
2021-03-18 00:43:12 +00:00
|
|
|
.delete=${() => {
|
|
|
|
return new CoreApi(DEFAULT_CONFIG).coreGroupsDelete({
|
|
|
|
groupUuid: item.pk || ""
|
|
|
|
});
|
|
|
|
}}>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-danger">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Delete`}
|
2021-03-18 00:43:12 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-delete>`,
|
2021-02-19 16:18:09 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
renderToolbar(): TemplateResult {
|
|
|
|
return html`
|
2021-03-29 10:02:54 +00:00
|
|
|
<ak-forms-modal>
|
|
|
|
<span slot="submit">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 10:02:54 +00:00
|
|
|
</span>
|
|
|
|
<span slot="header">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create Group`}
|
2021-03-29 10:02:54 +00:00
|
|
|
</span>
|
|
|
|
<ak-group-form slot="form">
|
|
|
|
</ak-group-form>
|
|
|
|
<button slot="trigger" class="pf-c-button pf-m-primary">
|
2021-04-03 17:26:43 +00:00
|
|
|
${t`Create`}
|
2021-03-29 10:02:54 +00:00
|
|
|
</button>
|
|
|
|
</ak-forms-modal>
|
2021-02-19 16:18:09 +00:00
|
|
|
${super.renderToolbar()}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|