import { t } from "@lingui/macro"; import { CSSResult, LitElement, TemplateResult, html } from "lit"; import { customElement, property } from "lit/decorators.js"; import AKGlobal from "../../authentik.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; import PFDescriptionList from "@patternfly/patternfly/components/DescriptionList/description-list.css"; import PFPage from "@patternfly/patternfly/components/Page/page.css"; import PFGrid from "@patternfly/patternfly/layouts/Grid/grid.css"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css"; import PFFlex from "@patternfly/patternfly/utilities/Flex/flex.css"; import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css"; import { CoreApi, Group } from "@goauthentik/api"; import { DEFAULT_CONFIG } from "../../api/Config"; import { EVENT_REFRESH } from "../../constants"; import "../../elements/CodeMirror"; import { PFColor } from "../../elements/Label"; import "../../elements/PageHeader"; import "../../elements/Tabs"; import "../../elements/buttons/ActionButton"; import "../../elements/buttons/SpinnerButton"; import "../../elements/events/ObjectChangelog"; import "../../elements/forms/ModalForm"; import "../users/RelatedUserList"; import "./GroupForm"; @customElement("ak-group-view") export class GroupViewPage extends LitElement { @property({ type: String }) set groupId(id: string) { new CoreApi(DEFAULT_CONFIG) .coreGroupsRetrieve({ groupUuid: id, }) .then((group) => { this.group = group; }); } @property({ attribute: false }) group?: Group; static get styles(): CSSResult[] { return [ PFBase, PFPage, PFFlex, PFButton, PFDisplay, PFGrid, PFContent, PFCard, PFDescriptionList, PFSizing, AKGlobal, ]; } constructor() { super(); this.addEventListener(EVENT_REFRESH, () => { if (!this.group?.pk) return; this.groupId = this.group?.pk; }); } render(): TemplateResult { return html` ${this.renderBody()}`; } renderBody(): TemplateResult { if (!this.group) { return html``; } return html`
${t`Group Info`}
${t`Name`}
${this.group.name}
${t`Superuser`}
${t`Changelog`}
`; } }