import { gettext } from "django"; import { customElement, html, property, TemplateResult } from "lit-element"; import { AKResponse } from "../../api/Client"; import { TablePage } from "../../elements/table/TablePage"; import "../policies/BoundPoliciesList"; import "../../elements/buttons/SpinnerButton"; import "../../elements/forms/ModalForm"; import { TableColumn } from "../../elements/table/Table"; import { PAGE_SIZE } from "../../constants"; import { EventsApi, NotificationRule } from "authentik-api"; import { DEFAULT_CONFIG } from "../../api/Config"; import "../../elements/forms/DeleteForm"; import "./RuleForm"; @customElement("ak-event-rule-list") export class RuleListPage extends TablePage { expandable = true; searchEnabled(): boolean { return true; } pageTitle(): string { return gettext("Notification Rules"); } pageDescription(): string { return gettext("Send notifications whenever a specific Event is created and matched by policies."); } pageIcon(): string { return "pf-icon pf-icon-attention-bell"; } @property() order = "name"; apiEndpoint(page: number): Promise> { return new EventsApi(DEFAULT_CONFIG).eventsRulesList({ ordering: this.order, page: page, pageSize: PAGE_SIZE, search: this.search || "", }); } columns(): TableColumn[] { return [ new TableColumn("Name", "name"), new TableColumn("Severity", "severity"), new TableColumn("Sent to group", "group"), new TableColumn(""), ]; } row(item: NotificationRule): TemplateResult[] { return [ html`${item.name}`, html`${item.severity}`, html`${item.group?.name || gettext("None (rule disabled)")}`, html` ${gettext("Update")} ${gettext("Update Notification Rule")} { return new EventsApi(DEFAULT_CONFIG).eventsRulesDelete({ pbmUuid: item.pk || "" }); }}> `, ]; } renderToolbar(): TemplateResult { return html` ${gettext("Create")} ${gettext("Create Notification Rule")} ${super.renderToolbar()} `; } renderExpanded(item: NotificationRule): TemplateResult { return html`
`; } }