static: add elements for sidebar brand and sidebar user
This commit is contained in:
parent
3c311ca527
commit
07773ed934
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,4 +4,11 @@ export interface User {
|
||||||
name: string;
|
name: string;
|
||||||
is_superuser: boolean;
|
is_superuser: boolean;
|
||||||
email: boolean;
|
email: boolean;
|
||||||
|
avatar: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function me(): Promise<User> {
|
||||||
|
return fetch("/api/v2beta/core/users/me/")
|
||||||
|
.then((r) => r.json())
|
||||||
|
.then((r) => <User>r);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,107 +12,17 @@ import PageStyle from "@patternfly/patternfly/components/Page/page.css";
|
||||||
import NavStyle from "@patternfly/patternfly/components/Nav/nav.css";
|
import NavStyle from "@patternfly/patternfly/components/Nav/nav.css";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import GlobalsStyle from "@patternfly/patternfly/base/patternfly-globals.css";
|
import GlobalsStyle from "@patternfly/patternfly/base/patternfly-globals.css";
|
||||||
import { User } from "../api/user";
|
|
||||||
|
import { me, User } from "../api/user";
|
||||||
|
|
||||||
export interface SidebarItem {
|
export interface SidebarItem {
|
||||||
name: string;
|
name: string;
|
||||||
path?: string;
|
path?: string;
|
||||||
children?: SidebarItem[];
|
children?: SidebarItem[];
|
||||||
condition?: (sb: SideBar) => boolean;
|
condition?: (sb: Sidebar) => boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SIDEBAR_ITEMS: SidebarItem[] = [
|
export const SIDEBAR_ITEMS: SidebarItem[] = [
|
||||||
{
|
|
||||||
name: "General",
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
name: "Overview",
|
|
||||||
path: "administration/overview",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "System Tasks",
|
|
||||||
path: "administration/tasks",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Applications",
|
|
||||||
path: "administration/applications",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Sources",
|
|
||||||
path: "administration/sources",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Providers",
|
|
||||||
path: "administration/providers",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "User Management",
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
name: "User",
|
|
||||||
path: "administration/users",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Groups",
|
|
||||||
path: "administration/groups",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Outposts",
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
name: "Outposts",
|
|
||||||
path: "administration/outposts",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Service Connections",
|
|
||||||
path: "administration/outposts/service_connections",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Policies",
|
|
||||||
path: "administration/policies",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Property Mappings",
|
|
||||||
path: "administration/property_mappings",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Flows",
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
name: "Flows",
|
|
||||||
path: "administration/flows",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Stages",
|
|
||||||
path: "administration/stages",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Prompts",
|
|
||||||
path: "administration/stages/prompts",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Invitations",
|
|
||||||
path: "administration/stages/invitations",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Certificates",
|
|
||||||
path: "administration/crypto/certificates",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Tokens",
|
|
||||||
path: "administration/tokens",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
export const ROOT_ITEMS: SidebarItem[] = [
|
|
||||||
{
|
{
|
||||||
name: "Library",
|
name: "Library",
|
||||||
path: "/-/overview/",
|
path: "/-/overview/",
|
||||||
|
@ -120,21 +30,110 @@ export const ROOT_ITEMS: SidebarItem[] = [
|
||||||
{
|
{
|
||||||
name: "Monitor",
|
name: "Monitor",
|
||||||
path: "/audit/audit/",
|
path: "/audit/audit/",
|
||||||
condition: (sb: SideBar) => {
|
condition: (sb: Sidebar) => {
|
||||||
return sb.user?.is_superuser!;
|
return sb.user?.is_superuser!;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Administration",
|
name: "Administration",
|
||||||
children: SIDEBAR_ITEMS,
|
children: [
|
||||||
condition: (sb: SideBar) => {
|
{
|
||||||
|
name: "General",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: "Overview",
|
||||||
|
path: "administration/overview",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "System Tasks",
|
||||||
|
path: "administration/tasks",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Applications",
|
||||||
|
path: "administration/applications",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Sources",
|
||||||
|
path: "administration/sources",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Providers",
|
||||||
|
path: "administration/providers",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "User Management",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: "User",
|
||||||
|
path: "administration/users",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Groups",
|
||||||
|
path: "administration/groups",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Outposts",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: "Outposts",
|
||||||
|
path: "administration/outposts",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Service Connections",
|
||||||
|
path: "administration/outposts/service_connections",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Policies",
|
||||||
|
path: "administration/policies",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Property Mappings",
|
||||||
|
path: "administration/property_mappings",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Flows",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: "Flows",
|
||||||
|
path: "administration/flows",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Stages",
|
||||||
|
path: "administration/stages",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Prompts",
|
||||||
|
path: "administration/stages/prompts",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Invitations",
|
||||||
|
path: "administration/stages/invitations",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Certificates",
|
||||||
|
path: "administration/crypto/certificates",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Tokens",
|
||||||
|
path: "administration/tokens",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
condition: (sb: Sidebar) => {
|
||||||
return sb.user?.is_superuser!;
|
return sb.user?.is_superuser!;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@customElement("pb-sidebar")
|
@customElement("pb-sidebar")
|
||||||
export class SideBar extends LitElement {
|
export class Sidebar extends LitElement {
|
||||||
@property()
|
@property()
|
||||||
activePath: string;
|
activePath: string;
|
||||||
|
|
||||||
|
@ -161,21 +160,11 @@ export class SideBar extends LitElement {
|
||||||
.pf-c-nav__subnav {
|
.pf-c-nav__subnav {
|
||||||
--pf-c-nav__subnav--PaddingBottom: 0px;
|
--pf-c-nav__subnav--PaddingBottom: 0px;
|
||||||
}
|
}
|
||||||
.pb-brand {
|
|
||||||
font-family: "DIN 1451 Std";
|
.pf-c-nav__item-bottom {
|
||||||
line-height: 60px;
|
position: absolute;
|
||||||
font-size: 3rem;
|
bottom: 0;
|
||||||
color: var(--pf-c-nav__link--m-current--Color);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: center;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 1rem;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
}
|
|
||||||
.pb-brand img {
|
|
||||||
max-height: 60px;
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
|
@ -183,28 +172,13 @@ export class SideBar extends LitElement {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
fetch("/api/v2beta/core/users/me/")
|
me().then((u) => (this.user = u));
|
||||||
.then((r) => r.json())
|
|
||||||
.then((r) => (this.user = <User>r));
|
|
||||||
this.activePath = window.location.hash.slice(1, Infinity);
|
this.activePath = window.location.hash.slice(1, Infinity);
|
||||||
window.addEventListener("hashchange", (e) => {
|
window.addEventListener("hashchange", (e) => {
|
||||||
this.activePath = window.location.hash.slice(1, Infinity);
|
this.activePath = window.location.hash.slice(1, Infinity);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
renderBrand(): TemplateResult {
|
|
||||||
return html`<li class="pf-c-nav__item">
|
|
||||||
<a href="#/" class="pf-c-page__header-brand-link">
|
|
||||||
<div class="pf-c-brand pb-brand">
|
|
||||||
<img src="${this.brandLogo}" alt="passbook icon" />
|
|
||||||
${this.brandTitle
|
|
||||||
? html`<span>${this.brandTitle}</span>`
|
|
||||||
: ""}
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>`;
|
|
||||||
}
|
|
||||||
|
|
||||||
renderItem(item: SidebarItem): TemplateResult {
|
renderItem(item: SidebarItem): TemplateResult {
|
||||||
if (item.condition) {
|
if (item.condition) {
|
||||||
const result = item.condition(this);
|
const result = item.condition(this);
|
||||||
|
@ -247,8 +221,16 @@ export class SideBar extends LitElement {
|
||||||
return html`<div class="pf-c-page__sidebar-body">
|
return html`<div class="pf-c-page__sidebar-body">
|
||||||
<nav class="pf-c-nav" aria-label="Global">
|
<nav class="pf-c-nav" aria-label="Global">
|
||||||
<ul class="pf-c-nav__list">
|
<ul class="pf-c-nav__list">
|
||||||
${this.renderBrand()}
|
<li class="pf-c-nav__item">
|
||||||
${ROOT_ITEMS.map((i) => this.renderItem(i))}
|
<pb-sidebar-brand
|
||||||
|
.brandLogo=${this.brandLogo}
|
||||||
|
.brandTitle=${this.brandTitle}
|
||||||
|
></pb-sidebar-brand>
|
||||||
|
</li>
|
||||||
|
${SIDEBAR_ITEMS.map((i) => this.renderItem(i))}
|
||||||
|
<li class="pf-c-nav__item pf-c-nav__item-bottom">
|
||||||
|
<pb-sidebar-user .user=${this.user}></pb-sidebar-user>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>`;
|
</div>`;
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
import { css, customElement, html, LitElement, property } from "lit-element";
|
||||||
|
// @ts-ignore
|
||||||
|
import PageStyle from "@patternfly/patternfly/components/Page/page.css";
|
||||||
|
// @ts-ignore
|
||||||
|
import GlobalsStyle from "@patternfly/patternfly/base/patternfly-globals.css";
|
||||||
|
|
||||||
|
@customElement("pb-sidebar-brand")
|
||||||
|
export class SidebarBrand extends LitElement {
|
||||||
|
@property()
|
||||||
|
brandLogo?: string;
|
||||||
|
|
||||||
|
@property()
|
||||||
|
brandTitle?: string;
|
||||||
|
|
||||||
|
static get styles() {
|
||||||
|
return [
|
||||||
|
GlobalsStyle,
|
||||||
|
PageStyle,
|
||||||
|
css`
|
||||||
|
.pf-c-brand {
|
||||||
|
font-family: "DIN 1451 Std";
|
||||||
|
line-height: 60px;
|
||||||
|
font-size: 3rem;
|
||||||
|
color: var(--pf-c-nav__link--m-current--Color);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 1rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
.pf-c-brand img {
|
||||||
|
max-height: 60px;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return html` <a href="#/" class="pf-c-page__header-brand-link">
|
||||||
|
<div class="pf-c-brand pb-brand">
|
||||||
|
<img src="${this.brandLogo}" alt="passbook icon" />
|
||||||
|
${this.brandTitle ? html`<span>${this.brandTitle}</span>` : ""}
|
||||||
|
</div>
|
||||||
|
</a>`;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
import { css, customElement, html, LitElement, property } from "lit-element";
|
||||||
|
// @ts-ignore
|
||||||
|
import NavStyle from "@patternfly/patternfly/components/Nav/nav.css";
|
||||||
|
// @ts-ignore
|
||||||
|
import fa from "@fortawesome/fontawesome-free/css/all.css";
|
||||||
|
// @ts-ignore
|
||||||
|
import AvatarStyle from "@patternfly/patternfly/components/Avatar/avatar.css";
|
||||||
|
import { User } from "../api/user";
|
||||||
|
|
||||||
|
@customElement("pb-sidebar-user")
|
||||||
|
export class SidebarUser extends LitElement {
|
||||||
|
@property()
|
||||||
|
user?: User;
|
||||||
|
|
||||||
|
static get styles() {
|
||||||
|
return [
|
||||||
|
fa,
|
||||||
|
NavStyle,
|
||||||
|
AvatarStyle,
|
||||||
|
css`
|
||||||
|
:host {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.pf-c-nav__link {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.user-avatar {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.user-avatar > span {
|
||||||
|
line-height: var(--pf-c-avatar--Height);
|
||||||
|
padding-left: var(--pf-global--spacer--sm);
|
||||||
|
font-size: var(--pf-global--FontSize--lg);
|
||||||
|
}
|
||||||
|
.user-logout {
|
||||||
|
flex-shrink: 3;
|
||||||
|
max-width: 75px;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
if (!this.user) {
|
||||||
|
return html``;
|
||||||
|
}
|
||||||
|
return html`
|
||||||
|
<a
|
||||||
|
href="/-/user/"
|
||||||
|
class="pf-c-nav__link user-avatar"
|
||||||
|
id="user-settings"
|
||||||
|
>
|
||||||
|
<img class="pf-c-avatar" src="${this.user?.avatar}" alt="" />
|
||||||
|
<span>${this.user?.username}</span>
|
||||||
|
</a>
|
||||||
|
<a
|
||||||
|
href="/-/default/invalidation/"
|
||||||
|
class="pf-c-nav__link user-logout"
|
||||||
|
id="logout"
|
||||||
|
>
|
||||||
|
<i class="fas fa-sign-out-alt" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,6 +2,8 @@ import "./legacy.js";
|
||||||
|
|
||||||
import "./elements/ActionButton";
|
import "./elements/ActionButton";
|
||||||
import "./elements/Sidebar";
|
import "./elements/Sidebar";
|
||||||
|
import "./elements/SidebarBrand";
|
||||||
|
import "./elements/SidebarUser";
|
||||||
import "./elements/CodeMirror";
|
import "./elements/CodeMirror";
|
||||||
import "./elements/Dropdown";
|
import "./elements/Dropdown";
|
||||||
import "./elements/FetchFillSlot";
|
import "./elements/FetchFillSlot";
|
||||||
|
|
Reference in New Issue