web: re-organise frontend and cleanup common code (#3572)
* fix repo in api client Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * web: re-organise files to match their interface Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * core: include version in script tags Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * cleanup maybe broken Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * revert rename Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * web: get rid of Client.ts Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * move more to common Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * more moving Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * format Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * unfuck files that vscode fucked, thanks Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * move more Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * finish moving (maybe) Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * ok more moving Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix more stuff that vs code destroyed Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * get rid "web" prefix for virtual package Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix locales Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * use custom base element Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix css file Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * don't run autoDetectLanguage when importing locale Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix circular dependencies Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * web: fix build Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		@ -1,15 +1,16 @@
 | 
			
		||||
import { me } from "@goauthentik/web/api/Users";
 | 
			
		||||
import { uiConfig } from "@goauthentik/web/common/config";
 | 
			
		||||
import { truncate } from "@goauthentik/web/utils";
 | 
			
		||||
import { uiConfig } from "@goauthentik/common/ui/config";
 | 
			
		||||
import { me } from "@goauthentik/common/users";
 | 
			
		||||
import { truncate } from "@goauthentik/common/utils";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, LitElement, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { CSSResult, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { customElement, property } from "lit/decorators.js";
 | 
			
		||||
import { ifDefined } from "lit/directives/if-defined.js";
 | 
			
		||||
import { until } from "lit/directives/until.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFAvatar from "@patternfly/patternfly/components/Avatar/avatar.css";
 | 
			
		||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
 | 
			
		||||
import PFCard from "@patternfly/patternfly/components/Card/card.css";
 | 
			
		||||
@ -18,7 +19,7 @@ import PFBase from "@patternfly/patternfly/patternfly-base.css";
 | 
			
		||||
import { Application } from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
@customElement("ak-library-app")
 | 
			
		||||
export class LibraryApplication extends LitElement {
 | 
			
		||||
export class LibraryApplication extends AKElement {
 | 
			
		||||
    @property({ attribute: false })
 | 
			
		||||
    application?: Application;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,18 +1,20 @@
 | 
			
		||||
import { AKResponse } from "@goauthentik/web/api/Client";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { LayoutType, UIConfig, uiConfig } from "@goauthentik/web/common/config";
 | 
			
		||||
import { getURLParam, updateURLParams } from "@goauthentik/web/elements/router/RouteMatch";
 | 
			
		||||
import "@goauthentik/web/user/LibraryApplication";
 | 
			
		||||
import { groupBy, loading } from "@goauthentik/web/utils";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { LayoutType, UIConfig, uiConfig } from "@goauthentik/common/ui/config";
 | 
			
		||||
import { groupBy } from "@goauthentik/common/utils";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
import "@goauthentik/elements/EmptyState";
 | 
			
		||||
import { getURLParam, updateURLParams } from "@goauthentik/elements/router/RouteMatch";
 | 
			
		||||
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
 | 
			
		||||
import "@goauthentik/user/LibraryApplication";
 | 
			
		||||
import Fuse from "fuse.js";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, LitElement, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { CSSResult, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { customElement, property } from "lit/decorators.js";
 | 
			
		||||
import { until } from "lit/directives/until.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFContent from "@patternfly/patternfly/components/Content/content.css";
 | 
			
		||||
import PFEmptyState from "@patternfly/patternfly/components/EmptyState/empty-state.css";
 | 
			
		||||
import PFPage from "@patternfly/patternfly/components/Page/page.css";
 | 
			
		||||
@ -23,10 +25,17 @@ import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css";
 | 
			
		||||
 | 
			
		||||
import { Application, CoreApi } from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
export function loading<T>(v: T, actual: TemplateResult): TemplateResult {
 | 
			
		||||
    if (!v) {
 | 
			
		||||
        return html`<ak-empty-state ?loading="${true}" header=${t`Loading`}> </ak-empty-state>`;
 | 
			
		||||
    }
 | 
			
		||||
    return actual;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@customElement("ak-library")
 | 
			
		||||
export class LibraryPage extends LitElement {
 | 
			
		||||
export class LibraryPage extends AKElement {
 | 
			
		||||
    @property({ attribute: false })
 | 
			
		||||
    apps?: AKResponse<Application>;
 | 
			
		||||
    apps?: PaginatedResponse<Application>;
 | 
			
		||||
 | 
			
		||||
    @property({ attribute: false })
 | 
			
		||||
    selectedApp?: Application;
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										15
									
								
								web/src/user/Routes.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								web/src/user/Routes.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,15 @@
 | 
			
		||||
import { Route } from "@goauthentik/elements/router/Route";
 | 
			
		||||
import "@goauthentik/user/LibraryPage";
 | 
			
		||||
 | 
			
		||||
import { html } from "lit";
 | 
			
		||||
 | 
			
		||||
export const ROUTES: Route[] = [
 | 
			
		||||
    // Prevent infinite Shell loops
 | 
			
		||||
    new Route(new RegExp("^/$")).redirect("/library"),
 | 
			
		||||
    new Route(new RegExp("^#.*")).redirect("/library"),
 | 
			
		||||
    new Route(new RegExp("^/library$"), async () => html`<ak-library></ak-library>`),
 | 
			
		||||
    new Route(new RegExp("^/settings$"), async () => {
 | 
			
		||||
        await import("@goauthentik/user/user-settings/UserSettingsPage");
 | 
			
		||||
        return html`<ak-user-settings></ak-user-settings>`;
 | 
			
		||||
    }),
 | 
			
		||||
];
 | 
			
		||||
							
								
								
									
										338
									
								
								web/src/user/UserInterface.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										338
									
								
								web/src/user/UserInterface.ts
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,338 @@
 | 
			
		||||
import { DEFAULT_CONFIG, tenant } from "@goauthentik/common/api/config";
 | 
			
		||||
import {
 | 
			
		||||
    EVENT_API_DRAWER_TOGGLE,
 | 
			
		||||
    EVENT_NOTIFICATION_DRAWER_TOGGLE,
 | 
			
		||||
    EVENT_WS_MESSAGE,
 | 
			
		||||
} from "@goauthentik/common/constants";
 | 
			
		||||
import { configureSentry } from "@goauthentik/common/sentry";
 | 
			
		||||
import { UserDisplay, uiConfig } from "@goauthentik/common/ui/config";
 | 
			
		||||
import { autoDetectLanguage } from "@goauthentik/common/ui/locale";
 | 
			
		||||
import { me } from "@goauthentik/common/users";
 | 
			
		||||
import { first } from "@goauthentik/common/utils";
 | 
			
		||||
import { WebsocketClient } from "@goauthentik/common/ws";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
import "@goauthentik/elements/messages/MessageContainer";
 | 
			
		||||
import "@goauthentik/elements/messages/MessageContainer";
 | 
			
		||||
import "@goauthentik/elements/notifications/NotificationDrawer";
 | 
			
		||||
import { getURLParam, updateURLParams } from "@goauthentik/elements/router/RouteMatch";
 | 
			
		||||
import "@goauthentik/elements/router/RouterOutlet";
 | 
			
		||||
import "@goauthentik/elements/sidebar/Sidebar";
 | 
			
		||||
import { DefaultTenant } from "@goauthentik/elements/sidebar/SidebarBrand";
 | 
			
		||||
import "@goauthentik/elements/sidebar/SidebarItem";
 | 
			
		||||
import { ROUTES } from "@goauthentik/user/Routes";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { customElement, property } from "lit/decorators.js";
 | 
			
		||||
import { until } from "lit/directives/until.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFAvatar from "@patternfly/patternfly/components/Avatar/avatar.css";
 | 
			
		||||
import PFBrand from "@patternfly/patternfly/components/Brand/brand.css";
 | 
			
		||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
 | 
			
		||||
import PFDrawer from "@patternfly/patternfly/components/Drawer/drawer.css";
 | 
			
		||||
import PFDropdown from "@patternfly/patternfly/components/Dropdown/dropdown.css";
 | 
			
		||||
import PFNotificationBadge from "@patternfly/patternfly/components/NotificationBadge/notification-badge.css";
 | 
			
		||||
import PFPage from "@patternfly/patternfly/components/Page/page.css";
 | 
			
		||||
import PFBase from "@patternfly/patternfly/patternfly-base.css";
 | 
			
		||||
import PFDisplay from "@patternfly/patternfly/utilities/Display/display.css";
 | 
			
		||||
 | 
			
		||||
import { CurrentTenant, EventsApi } from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
autoDetectLanguage();
 | 
			
		||||
 | 
			
		||||
@customElement("ak-interface-user")
 | 
			
		||||
export class UserInterface extends AKElement {
 | 
			
		||||
    @property({ type: Boolean })
 | 
			
		||||
    notificationDrawerOpen = getURLParam("notificationDrawerOpen", false);
 | 
			
		||||
 | 
			
		||||
    @property({ type: Boolean })
 | 
			
		||||
    apiDrawerOpen = getURLParam("apiDrawerOpen", false);
 | 
			
		||||
 | 
			
		||||
    ws: WebsocketClient;
 | 
			
		||||
 | 
			
		||||
    @property({ attribute: false })
 | 
			
		||||
    tenant: CurrentTenant = DefaultTenant;
 | 
			
		||||
 | 
			
		||||
    @property({ type: Number })
 | 
			
		||||
    notificationsCount = 0;
 | 
			
		||||
 | 
			
		||||
    static get styles(): CSSResult[] {
 | 
			
		||||
        return [
 | 
			
		||||
            PFBase,
 | 
			
		||||
            PFDisplay,
 | 
			
		||||
            PFBrand,
 | 
			
		||||
            PFPage,
 | 
			
		||||
            PFAvatar,
 | 
			
		||||
            PFButton,
 | 
			
		||||
            PFDrawer,
 | 
			
		||||
            PFDropdown,
 | 
			
		||||
            PFNotificationBadge,
 | 
			
		||||
            AKGlobal,
 | 
			
		||||
            css`
 | 
			
		||||
                .pf-c-page__main,
 | 
			
		||||
                .pf-c-drawer__content,
 | 
			
		||||
                .pf-c-page__drawer {
 | 
			
		||||
                    z-index: auto !important;
 | 
			
		||||
                    background-color: transparent !important;
 | 
			
		||||
                }
 | 
			
		||||
                .pf-c-page {
 | 
			
		||||
                    background-color: transparent;
 | 
			
		||||
                }
 | 
			
		||||
                .background-wrapper {
 | 
			
		||||
                    background-color: var(--pf-c-page--BackgroundColor) !important;
 | 
			
		||||
                }
 | 
			
		||||
                .display-none {
 | 
			
		||||
                    display: none;
 | 
			
		||||
                }
 | 
			
		||||
                .pf-c-brand {
 | 
			
		||||
                    min-height: 48px;
 | 
			
		||||
                    height: 48px;
 | 
			
		||||
                }
 | 
			
		||||
                .has-notifications {
 | 
			
		||||
                    color: #2b9af3;
 | 
			
		||||
                }
 | 
			
		||||
                .background-wrapper {
 | 
			
		||||
                    height: 100vh;
 | 
			
		||||
                    width: 100vw;
 | 
			
		||||
                    position: absolute;
 | 
			
		||||
                    z-index: -1;
 | 
			
		||||
                }
 | 
			
		||||
            `,
 | 
			
		||||
        ];
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    constructor() {
 | 
			
		||||
        super();
 | 
			
		||||
        this.ws = new WebsocketClient();
 | 
			
		||||
        window.addEventListener(EVENT_NOTIFICATION_DRAWER_TOGGLE, () => {
 | 
			
		||||
            this.notificationDrawerOpen = !this.notificationDrawerOpen;
 | 
			
		||||
            updateURLParams({
 | 
			
		||||
                notificationDrawerOpen: this.notificationDrawerOpen,
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
        window.addEventListener(EVENT_API_DRAWER_TOGGLE, () => {
 | 
			
		||||
            this.apiDrawerOpen = !this.apiDrawerOpen;
 | 
			
		||||
            updateURLParams({
 | 
			
		||||
                apiDrawerOpen: this.apiDrawerOpen,
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
        window.addEventListener(EVENT_WS_MESSAGE, () => {
 | 
			
		||||
            this.firstUpdated();
 | 
			
		||||
        });
 | 
			
		||||
        tenant().then((tenant) => (this.tenant = tenant));
 | 
			
		||||
        configureSentry(true);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    firstUpdated(): void {
 | 
			
		||||
        me().then((user) => {
 | 
			
		||||
            new EventsApi(DEFAULT_CONFIG)
 | 
			
		||||
                .eventsNotificationsList({
 | 
			
		||||
                    seen: false,
 | 
			
		||||
                    ordering: "-created",
 | 
			
		||||
                    pageSize: 1,
 | 
			
		||||
                    user: user.user.pk,
 | 
			
		||||
                })
 | 
			
		||||
                .then((r) => {
 | 
			
		||||
                    this.notificationsCount = r.pagination.count;
 | 
			
		||||
                });
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    render(): TemplateResult {
 | 
			
		||||
        return html`${until(
 | 
			
		||||
            uiConfig().then((config) => {
 | 
			
		||||
                return html`<div class="pf-c-page">
 | 
			
		||||
                    <div class="background-wrapper" style="${config.theme.background}"></div>
 | 
			
		||||
                    <header class="pf-c-page__header">
 | 
			
		||||
                        <div class="pf-c-page__header-brand">
 | 
			
		||||
                            <a href="#/" class="pf-c-page__header-brand-link">
 | 
			
		||||
                                <img
 | 
			
		||||
                                    class="pf-c-brand"
 | 
			
		||||
                                    src="${first(
 | 
			
		||||
                                        this.tenant.brandingLogo,
 | 
			
		||||
                                        DefaultTenant.brandingLogo,
 | 
			
		||||
                                    )}"
 | 
			
		||||
                                    alt="${(this.tenant.brandingTitle,
 | 
			
		||||
                                    DefaultTenant.brandingTitle)}"
 | 
			
		||||
                                />
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="pf-c-page__header-tools">
 | 
			
		||||
                            <div class="pf-c-page__header-tools-group">
 | 
			
		||||
                                ${config.enabledFeatures.apiDrawer
 | 
			
		||||
                                    ? html`<div
 | 
			
		||||
                                          class="pf-c-page__header-tools-item pf-m-hidden pf-m-visible-on-lg"
 | 
			
		||||
                                      >
 | 
			
		||||
                                          <button
 | 
			
		||||
                                              class="pf-c-button pf-m-plain"
 | 
			
		||||
                                              type="button"
 | 
			
		||||
                                              @click=${() => {
 | 
			
		||||
                                                  this.apiDrawerOpen = !this.apiDrawerOpen;
 | 
			
		||||
                                                  updateURLParams({
 | 
			
		||||
                                                      apiDrawerOpen: this.apiDrawerOpen,
 | 
			
		||||
                                                  });
 | 
			
		||||
                                              }}
 | 
			
		||||
                                          >
 | 
			
		||||
                                              <i class="fas fa-code" aria-hidden="true"></i>
 | 
			
		||||
                                          </button>
 | 
			
		||||
                                      </div>`
 | 
			
		||||
                                    : html``}
 | 
			
		||||
                                ${config.enabledFeatures.notificationDrawer
 | 
			
		||||
                                    ? html`<div
 | 
			
		||||
                                          class="pf-c-page__header-tools-item pf-m-hidden pf-m-visible-on-lg"
 | 
			
		||||
                                      >
 | 
			
		||||
                                          <button
 | 
			
		||||
                                              class="pf-c-button pf-m-plain"
 | 
			
		||||
                                              type="button"
 | 
			
		||||
                                              aria-label="${t`Unread notifications`}"
 | 
			
		||||
                                              @click=${() => {
 | 
			
		||||
                                                  this.notificationDrawerOpen =
 | 
			
		||||
                                                      !this.notificationDrawerOpen;
 | 
			
		||||
                                                  updateURLParams({
 | 
			
		||||
                                                      notificationDrawerOpen:
 | 
			
		||||
                                                          this.notificationDrawerOpen,
 | 
			
		||||
                                                  });
 | 
			
		||||
                                              }}
 | 
			
		||||
                                          >
 | 
			
		||||
                                              <span
 | 
			
		||||
                                                  class="pf-c-notification-badge ${this
 | 
			
		||||
                                                      .notificationsCount > 0
 | 
			
		||||
                                                      ? "pf-m-unread"
 | 
			
		||||
                                                      : ""}"
 | 
			
		||||
                                              >
 | 
			
		||||
                                                  <i class="pf-icon-bell" aria-hidden="true"></i>
 | 
			
		||||
                                                  <span class="pf-c-notification-badge__count"
 | 
			
		||||
                                                      >${this.notificationsCount}</span
 | 
			
		||||
                                                  >
 | 
			
		||||
                                              </span>
 | 
			
		||||
                                          </button>
 | 
			
		||||
                                      </div> `
 | 
			
		||||
                                    : html``}
 | 
			
		||||
                                ${config.enabledFeatures.settings
 | 
			
		||||
                                    ? html` <div class="pf-c-page__header-tools-item">
 | 
			
		||||
                                          <a
 | 
			
		||||
                                              class="pf-c-button pf-m-plain"
 | 
			
		||||
                                              type="button"
 | 
			
		||||
                                              href="#/settings"
 | 
			
		||||
                                          >
 | 
			
		||||
                                              <i class="fas fa-cog" aria-hidden="true"></i>
 | 
			
		||||
                                          </a>
 | 
			
		||||
                                      </div>`
 | 
			
		||||
                                    : html``}
 | 
			
		||||
                                <div class="pf-c-page__header-tools-item">
 | 
			
		||||
                                    <a
 | 
			
		||||
                                        href="/flows/-/default/invalidation/"
 | 
			
		||||
                                        class="pf-c-button pf-m-plain"
 | 
			
		||||
                                    >
 | 
			
		||||
                                        <i class="fas fa-sign-out-alt" aria-hidden="true"></i>
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </div>
 | 
			
		||||
                                ${until(
 | 
			
		||||
                                    me().then((u) => {
 | 
			
		||||
                                        if (!u.user.isSuperuser) return html``;
 | 
			
		||||
                                        return html`
 | 
			
		||||
                                            <a
 | 
			
		||||
                                                class="pf-c-button pf-m-primary pf-m-small pf-u-display-none pf-u-display-block-on-md"
 | 
			
		||||
                                                href="/if/admin"
 | 
			
		||||
                                            >
 | 
			
		||||
                                                ${t`Admin interface`}
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        `;
 | 
			
		||||
                                    }),
 | 
			
		||||
                                )}
 | 
			
		||||
                            </div>
 | 
			
		||||
                            ${until(
 | 
			
		||||
                                me().then((u) => {
 | 
			
		||||
                                    if (u.original) {
 | 
			
		||||
                                        return html`<div class="pf-c-page__header-tools">
 | 
			
		||||
                                            <div class="pf-c-page__header-tools-group">
 | 
			
		||||
                                                <a
 | 
			
		||||
                                                    class="pf-c-button pf-m-warning pf-m-small"
 | 
			
		||||
                                                    href=${`/-/impersonation/end/?back=${encodeURIComponent(
 | 
			
		||||
                                                        `${window.location.pathname}#${window.location.hash}`,
 | 
			
		||||
                                                    )}`}
 | 
			
		||||
                                                >
 | 
			
		||||
                                                    ${t`Stop impersonation`}
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </div>
 | 
			
		||||
                                        </div>`;
 | 
			
		||||
                                    }
 | 
			
		||||
                                    return html``;
 | 
			
		||||
                                }),
 | 
			
		||||
                            )}
 | 
			
		||||
                            <div class="pf-c-page__header-tools-group">
 | 
			
		||||
                                <div
 | 
			
		||||
                                    class="pf-c-page__header-tools-item pf-m-hidden pf-m-visible-on-md"
 | 
			
		||||
                                >
 | 
			
		||||
                                    ${until(
 | 
			
		||||
                                        me().then((me) => {
 | 
			
		||||
                                            switch (config.navbar.userDisplay) {
 | 
			
		||||
                                                case UserDisplay.username:
 | 
			
		||||
                                                    return me.user.username;
 | 
			
		||||
                                                case UserDisplay.name:
 | 
			
		||||
                                                    return me.user.name;
 | 
			
		||||
                                                case UserDisplay.email:
 | 
			
		||||
                                                    return me.user.email;
 | 
			
		||||
                                                default:
 | 
			
		||||
                                                    return me.user.username;
 | 
			
		||||
                                            }
 | 
			
		||||
                                        }),
 | 
			
		||||
                                    )}
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            ${until(
 | 
			
		||||
                                me().then((me) => {
 | 
			
		||||
                                    return html`<img
 | 
			
		||||
                                        class="pf-c-avatar"
 | 
			
		||||
                                        src=${me.user.avatar}
 | 
			
		||||
                                        alt="${t`Avatar image`}"
 | 
			
		||||
                                    />`;
 | 
			
		||||
                                }),
 | 
			
		||||
                            )}
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </header>
 | 
			
		||||
                    <div class="pf-c-page__drawer">
 | 
			
		||||
                        <div
 | 
			
		||||
                            class="pf-c-drawer ${this.notificationDrawerOpen || this.apiDrawerOpen
 | 
			
		||||
                                ? "pf-m-expanded"
 | 
			
		||||
                                : "pf-m-collapsed"}"
 | 
			
		||||
                        >
 | 
			
		||||
                            <div class="pf-c-drawer__main">
 | 
			
		||||
                                <div class="pf-c-drawer__content">
 | 
			
		||||
                                    <div class="pf-c-drawer__body">
 | 
			
		||||
                                        <main class="pf-c-page__main">
 | 
			
		||||
                                            <ak-router-outlet
 | 
			
		||||
                                                role="main"
 | 
			
		||||
                                                class="pf-l-bullseye__item pf-c-page__main"
 | 
			
		||||
                                                tabindex="-1"
 | 
			
		||||
                                                id="main-content"
 | 
			
		||||
                                                defaultUrl="/library"
 | 
			
		||||
                                                .routes=${ROUTES}
 | 
			
		||||
                                            >
 | 
			
		||||
                                            </ak-router-outlet>
 | 
			
		||||
                                        </main>
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </div>
 | 
			
		||||
                                <ak-notification-drawer
 | 
			
		||||
                                    class="pf-c-drawer__panel pf-m-width-33 ${this
 | 
			
		||||
                                        .notificationDrawerOpen
 | 
			
		||||
                                        ? ""
 | 
			
		||||
                                        : "display-none"}"
 | 
			
		||||
                                    ?hidden=${!this.notificationDrawerOpen}
 | 
			
		||||
                                ></ak-notification-drawer>
 | 
			
		||||
                                <ak-api-drawer
 | 
			
		||||
                                    class="pf-c-drawer__panel pf-m-width-33 ${this.apiDrawerOpen
 | 
			
		||||
                                        ? ""
 | 
			
		||||
                                        : "display-none"}"
 | 
			
		||||
                                    ?hidden=${!this.apiDrawerOpen}
 | 
			
		||||
                                ></ak-api-drawer>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>`;
 | 
			
		||||
            }),
 | 
			
		||||
        )}`;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,13 +1,15 @@
 | 
			
		||||
import { CSSResult, LitElement } from "lit";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
 | 
			
		||||
import { CSSResult } from "lit";
 | 
			
		||||
import { property } from "lit/decorators.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
 | 
			
		||||
import PFForm from "@patternfly/patternfly/components/Form/form.css";
 | 
			
		||||
import PFFormControl from "@patternfly/patternfly/components/FormControl/form-control.css";
 | 
			
		||||
import PFBase from "@patternfly/patternfly/patternfly-base.css";
 | 
			
		||||
 | 
			
		||||
export abstract class BaseUserSettings extends LitElement {
 | 
			
		||||
export abstract class BaseUserSettings extends AKElement {
 | 
			
		||||
    @property()
 | 
			
		||||
    objectId!: string;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,23 +1,24 @@
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { me } from "@goauthentik/web/api/Users";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/web/constants";
 | 
			
		||||
import "@goauthentik/web/elements/Tabs";
 | 
			
		||||
import "@goauthentik/web/elements/user/SessionList";
 | 
			
		||||
import "@goauthentik/web/elements/user/UserConsentList";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/details/UserPassword";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/details/UserSettingsFlowExecutor";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/mfa/MFADevicesPage";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/sources/SourceSettings";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/tokens/UserTokenList";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
 | 
			
		||||
import { me } from "@goauthentik/common/users";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
import "@goauthentik/elements/Tabs";
 | 
			
		||||
import "@goauthentik/elements/user/SessionList";
 | 
			
		||||
import "@goauthentik/elements/user/UserConsentList";
 | 
			
		||||
import "@goauthentik/user/user-settings/details/UserPassword";
 | 
			
		||||
import "@goauthentik/user/user-settings/details/UserSettingsFlowExecutor";
 | 
			
		||||
import "@goauthentik/user/user-settings/mfa/MFADevicesPage";
 | 
			
		||||
import "@goauthentik/user/user-settings/sources/SourceSettings";
 | 
			
		||||
import "@goauthentik/user/user-settings/tokens/UserTokenList";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, LitElement, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { CSSResult, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { customElement, state } from "lit/decorators.js";
 | 
			
		||||
import { ifDefined } from "lit/directives/if-defined.js";
 | 
			
		||||
import { until } from "lit/directives/until.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.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";
 | 
			
		||||
@ -34,7 +35,7 @@ import PFSizing from "@patternfly/patternfly/utilities/Sizing/sizing.css";
 | 
			
		||||
import { StagesApi, UserSetting } from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
@customElement("ak-user-settings")
 | 
			
		||||
export class UserSettingsPage extends LitElement {
 | 
			
		||||
export class UserSettingsPage extends AKElement {
 | 
			
		||||
    static get styles(): CSSResult[] {
 | 
			
		||||
        return [
 | 
			
		||||
            PFBase,
 | 
			
		||||
 | 
			
		||||
@ -1,14 +1,15 @@
 | 
			
		||||
import { AndNext } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { AndNext } from "@goauthentik/common/api/config";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { TemplateResult, html } from "lit";
 | 
			
		||||
import { CSSResult, LitElement } from "lit";
 | 
			
		||||
import { CSSResult } from "lit";
 | 
			
		||||
import { customElement } from "lit/decorators.js";
 | 
			
		||||
import { property } from "lit/decorators.js";
 | 
			
		||||
import { ifDefined } from "lit/directives/if-defined.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFButton from "@patternfly/patternfly/components/Button/button.css";
 | 
			
		||||
import PFCard from "@patternfly/patternfly/components/Card/card.css";
 | 
			
		||||
import PFForm from "@patternfly/patternfly/components/Form/form.css";
 | 
			
		||||
@ -16,7 +17,7 @@ import PFFormControl from "@patternfly/patternfly/components/FormControl/form-co
 | 
			
		||||
import PFBase from "@patternfly/patternfly/patternfly-base.css";
 | 
			
		||||
 | 
			
		||||
@customElement("ak-user-settings-password")
 | 
			
		||||
export class UserSettingsPassword extends LitElement {
 | 
			
		||||
export class UserSettingsPassword extends AKElement {
 | 
			
		||||
    @property()
 | 
			
		||||
    configureUrl?: string;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,18 +1,19 @@
 | 
			
		||||
import { DEFAULT_CONFIG, tenant } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { refreshMe } from "@goauthentik/web/api/Users";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/web/constants";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/web/elements/messages/Message";
 | 
			
		||||
import { showMessage } from "@goauthentik/web/elements/messages/MessageContainer";
 | 
			
		||||
import { StageHost } from "@goauthentik/web/flows/stages/base";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/details/stages/prompt/PromptStage";
 | 
			
		||||
import { DEFAULT_CONFIG, tenant } from "@goauthentik/common/api/config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/common/messages";
 | 
			
		||||
import { refreshMe } from "@goauthentik/common/users";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
import { showMessage } from "@goauthentik/elements/messages/MessageContainer";
 | 
			
		||||
import { StageHost } from "@goauthentik/flow/stages/base";
 | 
			
		||||
import "@goauthentik/user/user-settings/details/stages/prompt/PromptStage";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, LitElement, TemplateResult, html } from "lit";
 | 
			
		||||
import { CSSResult, TemplateResult, html } from "lit";
 | 
			
		||||
import { customElement, property } from "lit/decorators.js";
 | 
			
		||||
import { unsafeHTML } from "lit/directives/unsafe-html.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/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";
 | 
			
		||||
@ -31,7 +32,7 @@ import {
 | 
			
		||||
} from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
@customElement("ak-user-settings-flow-executor")
 | 
			
		||||
export class UserSettingsFlowExecutor extends LitElement implements StageHost {
 | 
			
		||||
export class UserSettingsFlowExecutor extends AKElement implements StageHost {
 | 
			
		||||
    @property()
 | 
			
		||||
    flowSlug?: string;
 | 
			
		||||
 | 
			
		||||
@ -161,7 +162,7 @@ export class UserSettingsFlowExecutor extends LitElement implements StageHost {
 | 
			
		||||
            );
 | 
			
		||||
            try {
 | 
			
		||||
                document.querySelectorAll("ak-interface-user").forEach((int) => {
 | 
			
		||||
                    (int as LitElement).requestUpdate();
 | 
			
		||||
                    (int as AKElement).requestUpdate();
 | 
			
		||||
                });
 | 
			
		||||
            } catch {
 | 
			
		||||
                console.debug("authentik/user/flows: failed to find interface to refresh");
 | 
			
		||||
 | 
			
		||||
@ -1,5 +1,5 @@
 | 
			
		||||
import "@goauthentik/web/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { PromptStage } from "@goauthentik/web/flows/stages/prompt/PromptStage";
 | 
			
		||||
import "@goauthentik/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { PromptStage } from "@goauthentik/flow/stages/prompt/PromptStage";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import "@goauthentik/web/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { ModelForm } from "@goauthentik/web/elements/forms/ModelForm";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import "@goauthentik/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { ModelForm } from "@goauthentik/elements/forms/ModelForm";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,12 +1,12 @@
 | 
			
		||||
import { AKResponse } from "@goauthentik/web/api/Client";
 | 
			
		||||
import { AndNext, DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/Dropdown";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/ModalButton";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/TokenCopyButton";
 | 
			
		||||
import "@goauthentik/web/elements/forms/DeleteBulkForm";
 | 
			
		||||
import "@goauthentik/web/elements/forms/ModalForm";
 | 
			
		||||
import { Table, TableColumn } from "@goauthentik/web/elements/table/Table";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/mfa/MFADeviceForm";
 | 
			
		||||
import { AndNext, DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import "@goauthentik/elements/buttons/Dropdown";
 | 
			
		||||
import "@goauthentik/elements/buttons/ModalButton";
 | 
			
		||||
import "@goauthentik/elements/buttons/TokenCopyButton";
 | 
			
		||||
import "@goauthentik/elements/forms/DeleteBulkForm";
 | 
			
		||||
import "@goauthentik/elements/forms/ModalForm";
 | 
			
		||||
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
 | 
			
		||||
import { Table, TableColumn } from "@goauthentik/elements/table/Table";
 | 
			
		||||
import "@goauthentik/user/user-settings/mfa/MFADeviceForm";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
@ -52,7 +52,7 @@ export class MFADevicesPage extends Table<Device> {
 | 
			
		||||
    checkbox = true;
 | 
			
		||||
 | 
			
		||||
    // eslint-disable-next-line @typescript-eslint/no-unused-vars
 | 
			
		||||
    async apiEndpoint(page: number): Promise<AKResponse<Device>> {
 | 
			
		||||
    async apiEndpoint(page: number): Promise<PaginatedResponse<Device>> {
 | 
			
		||||
        const devices = await new AuthenticatorsApi(DEFAULT_CONFIG).authenticatorsAllList();
 | 
			
		||||
        return {
 | 
			
		||||
            pagination: {
 | 
			
		||||
 | 
			
		||||
@ -1,24 +1,25 @@
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/web/constants";
 | 
			
		||||
import "@goauthentik/web/elements/EmptyState";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/sources/SourceSettingsOAuth";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/sources/SourceSettingsPlex";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
 | 
			
		||||
import { AKElement } from "@goauthentik/elements/Base";
 | 
			
		||||
import "@goauthentik/elements/EmptyState";
 | 
			
		||||
import "@goauthentik/user/user-settings/sources/SourceSettingsOAuth";
 | 
			
		||||
import "@goauthentik/user/user-settings/sources/SourceSettingsPlex";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
import { CSSResult, LitElement, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { CSSResult, TemplateResult, css, html } from "lit";
 | 
			
		||||
import { customElement, property } from "lit/decorators.js";
 | 
			
		||||
import { ifDefined } from "lit/directives/if-defined.js";
 | 
			
		||||
import { until } from "lit/directives/until.js";
 | 
			
		||||
 | 
			
		||||
import AKGlobal from "@goauthentik/web/authentik.css";
 | 
			
		||||
import AKGlobal from "@goauthentik/common/styles/authentik.css";
 | 
			
		||||
import PFContent from "@patternfly/patternfly/components/Content/content.css";
 | 
			
		||||
import PFDataList from "@patternfly/patternfly/components/DataList/data-list.css";
 | 
			
		||||
 | 
			
		||||
import { PaginatedUserSourceConnectionList, SourcesApi, UserSetting } from "@goauthentik/api";
 | 
			
		||||
 | 
			
		||||
@customElement("ak-user-settings-source")
 | 
			
		||||
export class UserSourceSettingsPage extends LitElement {
 | 
			
		||||
export class UserSourceSettingsPage extends AKElement {
 | 
			
		||||
    @property({ attribute: false })
 | 
			
		||||
    sourceSettings?: Promise<UserSetting[]>;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,9 +1,9 @@
 | 
			
		||||
import { AndNext, DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/web/constants";
 | 
			
		||||
import "@goauthentik/web/elements/Spinner";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/web/elements/messages/Message";
 | 
			
		||||
import { showMessage } from "@goauthentik/web/elements/messages/MessageContainer";
 | 
			
		||||
import { BaseUserSettings } from "@goauthentik/web/user/user-settings/BaseUserSettings";
 | 
			
		||||
import { AndNext, DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/common/messages";
 | 
			
		||||
import "@goauthentik/elements/Spinner";
 | 
			
		||||
import { showMessage } from "@goauthentik/elements/messages/MessageContainer";
 | 
			
		||||
import { BaseUserSettings } from "@goauthentik/user/user-settings/BaseUserSettings";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,10 +1,10 @@
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { PlexAPIClient, popupCenterScreen } from "@goauthentik/web/api/Plex";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/web/constants";
 | 
			
		||||
import "@goauthentik/web/elements/Spinner";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/web/elements/messages/Message";
 | 
			
		||||
import { showMessage } from "@goauthentik/web/elements/messages/MessageContainer";
 | 
			
		||||
import { BaseUserSettings } from "@goauthentik/web/user/user-settings/BaseUserSettings";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { EVENT_REFRESH } from "@goauthentik/common/constants";
 | 
			
		||||
import { PlexAPIClient, popupCenterScreen } from "@goauthentik/common/helpers/plex";
 | 
			
		||||
import { MessageLevel } from "@goauthentik/common/messages";
 | 
			
		||||
import "@goauthentik/elements/Spinner";
 | 
			
		||||
import { showMessage } from "@goauthentik/elements/messages/MessageContainer";
 | 
			
		||||
import { BaseUserSettings } from "@goauthentik/user/user-settings/BaseUserSettings";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import "@goauthentik/web/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { ModelForm } from "@goauthentik/web/elements/forms/ModelForm";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import "@goauthentik/elements/forms/HorizontalFormElement";
 | 
			
		||||
import { ModelForm } from "@goauthentik/elements/forms/ModelForm";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,15 +1,15 @@
 | 
			
		||||
import { AKResponse } from "@goauthentik/web/api/Client";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/web/api/Config";
 | 
			
		||||
import { uiConfig } from "@goauthentik/web/common/config";
 | 
			
		||||
import { PFColor } from "@goauthentik/web/elements/Label";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/Dropdown";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/ModalButton";
 | 
			
		||||
import "@goauthentik/web/elements/buttons/TokenCopyButton";
 | 
			
		||||
import "@goauthentik/web/elements/forms/DeleteBulkForm";
 | 
			
		||||
import "@goauthentik/web/elements/forms/ModalForm";
 | 
			
		||||
import { Table, TableColumn } from "@goauthentik/web/elements/table/Table";
 | 
			
		||||
import { IntentToLabel } from "@goauthentik/web/pages/tokens/TokenListPage";
 | 
			
		||||
import "@goauthentik/web/user/user-settings/tokens/UserTokenForm";
 | 
			
		||||
import { IntentToLabel } from "@goauthentik/admin/tokens/TokenListPage";
 | 
			
		||||
import { DEFAULT_CONFIG } from "@goauthentik/common/api/config";
 | 
			
		||||
import { uiConfig } from "@goauthentik/common/ui/config";
 | 
			
		||||
import { PFColor } from "@goauthentik/elements/Label";
 | 
			
		||||
import "@goauthentik/elements/buttons/Dropdown";
 | 
			
		||||
import "@goauthentik/elements/buttons/ModalButton";
 | 
			
		||||
import "@goauthentik/elements/buttons/TokenCopyButton";
 | 
			
		||||
import "@goauthentik/elements/forms/DeleteBulkForm";
 | 
			
		||||
import "@goauthentik/elements/forms/ModalForm";
 | 
			
		||||
import { PaginatedResponse } from "@goauthentik/elements/table/Table";
 | 
			
		||||
import { Table, TableColumn } from "@goauthentik/elements/table/Table";
 | 
			
		||||
import "@goauthentik/user/user-settings/tokens/UserTokenForm";
 | 
			
		||||
 | 
			
		||||
import { t } from "@lingui/macro";
 | 
			
		||||
 | 
			
		||||
@ -32,7 +32,7 @@ export class UserTokenList extends Table<Token> {
 | 
			
		||||
    @property()
 | 
			
		||||
    order = "expires";
 | 
			
		||||
 | 
			
		||||
    async apiEndpoint(page: number): Promise<AKResponse<Token>> {
 | 
			
		||||
    async apiEndpoint(page: number): Promise<PaginatedResponse<Token>> {
 | 
			
		||||
        return new CoreApi(DEFAULT_CONFIG).coreTokensList({
 | 
			
		||||
            ordering: this.order,
 | 
			
		||||
            page: page,
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user