import { t } from "@lingui/macro"; 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 t`Notification Rules`; } pageDescription(): string { return t`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(t`Name`, "name"), new TableColumn(t`Severity`, "severity"), new TableColumn(t`Sent to group`, "group"), new TableColumn(""), ]; } row(item: NotificationRule): TemplateResult[] { return [ html`${item.name}`, html`${item.severity}`, html`${item.group?.name || t`None (rule disabled)`}`, html` ${t`Update`} ${t`Update Notification Rule`} { return new EventsApi(DEFAULT_CONFIG).eventsRulesDelete({ pbmUuid: item.pk || "" }); }}> `, ]; } renderToolbar(): TemplateResult { return html` ${t`Create`} ${t`Create Notification Rule`} ${super.renderToolbar()} `; } renderExpanded(item: NotificationRule): TemplateResult { return html`

${t`These policies control upon which events this rule triggers.`}

`; } }