This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web/src/pages/events/RuleListPage.ts

121 lines
3.9 KiB
TypeScript
Raw Normal View History

import { t } from "@lingui/macro";
2021-01-12 21:26:57 +00:00
import { customElement, html, property, TemplateResult } from "lit-element";
2021-02-09 16:04:55 +00:00
import { AKResponse } from "../../api/Client";
2021-01-12 21:26:57 +00:00
import { TablePage } from "../../elements/table/TablePage";
import "../policies/BoundPoliciesList";
2021-01-12 21:26:57 +00:00
import "../../elements/buttons/SpinnerButton";
import "../../elements/forms/ModalForm";
2021-01-12 21:26:57 +00:00
import { TableColumn } from "../../elements/table/Table";
2021-03-02 14:12:26 +00:00
import { PAGE_SIZE } from "../../constants";
import { EventsApi, NotificationRule } from "authentik-api";
import { DEFAULT_CONFIG } from "../../api/Config";
import "../../elements/forms/DeleteForm";
import "./RuleForm";
2021-01-12 21:26:57 +00:00
2021-01-15 15:23:27 +00:00
@customElement("ak-event-rule-list")
export class RuleListPage extends TablePage<NotificationRule> {
2021-01-12 21:26:57 +00:00
expandable = true;
searchEnabled(): boolean {
return true;
}
pageTitle(): string {
return t`Notification Rules`;
2021-01-12 21:26:57 +00:00
}
pageDescription(): string {
return t`Send notifications whenever a specific Event is created and matched by policies.`;
2021-01-12 21:26:57 +00:00
}
pageIcon(): string {
return "pf-icon pf-icon-attention-bell";
2021-01-12 21:26:57 +00:00
}
@property()
order = "name";
apiEndpoint(page: number): Promise<AKResponse<NotificationRule>> {
return new EventsApi(DEFAULT_CONFIG).eventsRulesList({
2021-01-12 21:26:57 +00:00
ordering: this.order,
page: page,
pageSize: PAGE_SIZE,
2021-01-12 21:26:57 +00:00
search: this.search || "",
});
}
columns(): TableColumn[] {
return [
new TableColumn(t`Name`, "name"),
new TableColumn(t`Severity`, "severity"),
new TableColumn(t`Sent to group`, "group"),
2021-01-12 21:26:57 +00:00
new TableColumn(""),
];
}
row(item: NotificationRule): TemplateResult[] {
2021-01-12 21:26:57 +00:00
return [
html`${item.name}`,
html`${item.severity}`,
html`${item.group?.name || t`None (rule disabled)`}`,
2021-01-12 21:26:57 +00:00
html`
<ak-forms-modal>
<span slot="submit">
${t`Update`}
</span>
<span slot="header">
${t`Update Notification Rule`}
</span>
<ak-event-rule-form slot="form" .rule=${item}>
</ak-event-rule-form>
<button slot="trigger" class="pf-c-button pf-m-secondary">
${t`Edit`}
</button>
</ak-forms-modal>
<ak-forms-delete
.obj=${item}
objectLabel=${t`Notification rule`}
.delete=${() => {
return new EventsApi(DEFAULT_CONFIG).eventsRulesDelete({
pbmUuid: item.pk || ""
});
}}>
<button slot="trigger" class="pf-c-button pf-m-danger">
${t`Delete`}
</button>
</ak-forms-delete>`,
2021-01-12 21:26:57 +00:00
];
}
renderToolbar(): TemplateResult {
return html`
<ak-forms-modal>
<span slot="submit">
${t`Create`}
</span>
<span slot="header">
${t`Create Notification Rule`}
</span>
<ak-event-rule-form slot="form">
</ak-event-rule-form>
<button slot="trigger" class="pf-c-button pf-m-primary">
${t`Create`}
</button>
</ak-forms-modal>
2021-01-12 21:26:57 +00:00
${super.renderToolbar()}
`;
}
renderExpanded(item: NotificationRule): TemplateResult {
2021-01-12 21:26:57 +00:00
return html`
<td role="cell" colspan="4">
<div class="pf-c-table__expandable-row-content">
<p>${t`These policies control upon which events this rule triggers. Bindings to
groups/users are checked against the user of the event.`}</p>
2021-01-12 21:26:57 +00:00
<ak-bound-policies-list .target=${item.pk}>
</ak-bound-policies-list>
</div>
</td>
<td></td>
<td></td>`;
}
}