e2d3a95c80
* migrate loading Signed-off-by: Jens Langhammer <jens@goauthentik.io> * migrate api browser Signed-off-by: Jens Langhammer <jens@goauthentik.io> * migrate base css Signed-off-by: Jens Langhammer <jens@goauthentik.io> * move tenant fetching to base interface Signed-off-by: Jens Langhammer <jens@goauthentik.io> * import pre-loaded stages in flow interface and not executor to strip down executor size Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix redirect and such Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
99 lines
3.3 KiB
TypeScript
99 lines
3.3 KiB
TypeScript
import { EVENT_SIDEBAR_TOGGLE } from "@goauthentik/common/constants";
|
|
import { first } from "@goauthentik/common/utils";
|
|
import { AKElement, rootInterface } from "@goauthentik/elements/Base";
|
|
|
|
import { CSSResult, TemplateResult, css, html } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
|
|
import PFButton from "@patternfly/patternfly/components/Button/button.css";
|
|
import PFPage from "@patternfly/patternfly/components/Page/page.css";
|
|
import PFGlobal from "@patternfly/patternfly/patternfly-base.css";
|
|
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
|
|
|
import { CurrentTenant, UiThemeEnum } from "@goauthentik/api";
|
|
|
|
// If the viewport is wider than MIN_WIDTH, the sidebar
|
|
// is shown besides the content, and not overlaid.
|
|
export const MIN_WIDTH = 1200;
|
|
|
|
export const DefaultTenant: CurrentTenant = {
|
|
brandingLogo: "/static/dist/assets/icons/icon_left_brand.svg",
|
|
brandingFavicon: "/static/dist/assets/icons/icon.png",
|
|
brandingTitle: "authentik",
|
|
uiFooterLinks: [],
|
|
uiTheme: UiThemeEnum.Automatic,
|
|
matchedDomain: "",
|
|
defaultLocale: "",
|
|
};
|
|
|
|
@customElement("ak-sidebar-brand")
|
|
export class SidebarBrand extends AKElement {
|
|
static get styles(): CSSResult[] {
|
|
return [
|
|
PFBase,
|
|
PFGlobal,
|
|
PFPage,
|
|
PFButton,
|
|
css`
|
|
:host {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 114px;
|
|
min-height: 114px;
|
|
}
|
|
.pf-c-brand img {
|
|
width: 100%;
|
|
padding: 0 0.5rem;
|
|
height: 42px;
|
|
}
|
|
button.pf-c-button.sidebar-trigger {
|
|
background-color: transparent;
|
|
border-radius: 0px;
|
|
height: 100%;
|
|
color: var(--ak-dark-foreground);
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
window.addEventListener("resize", () => {
|
|
this.requestUpdate();
|
|
});
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
return html` ${window.innerWidth <= MIN_WIDTH
|
|
? html`
|
|
<button
|
|
class="sidebar-trigger pf-c-button"
|
|
@click=${() => {
|
|
this.dispatchEvent(
|
|
new CustomEvent(EVENT_SIDEBAR_TOGGLE, {
|
|
bubbles: true,
|
|
composed: true,
|
|
}),
|
|
);
|
|
}}
|
|
>
|
|
<i class="fas fa-bars"></i>
|
|
</button>
|
|
`
|
|
: html``}
|
|
<a href="#/" class="pf-c-page__header-brand-link">
|
|
<div class="pf-c-brand ak-brand">
|
|
<img
|
|
src="${first(
|
|
rootInterface()?.tenant?.brandingLogo,
|
|
DefaultTenant.brandingLogo,
|
|
)}"
|
|
alt="authentik Logo"
|
|
loading="lazy"
|
|
/>
|
|
</div>
|
|
</a>`;
|
|
}
|
|
}
|