web: re-format with prettier
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
		| @ -1,5 +1,13 @@ | ||||
| import "../elements/messages/MessageContainer"; | ||||
| import { css, CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; | ||||
| import { | ||||
|     css, | ||||
|     CSSResult, | ||||
|     customElement, | ||||
|     html, | ||||
|     LitElement, | ||||
|     property, | ||||
|     TemplateResult, | ||||
| } from "lit-element"; | ||||
| import { me } from "../api/Users"; | ||||
| import { ID_REGEX, SLUG_REGEX, UUID_REGEX } from "../elements/router/Route"; | ||||
| import "./locale"; | ||||
| @ -21,24 +29,31 @@ import { AdminApi } from "authentik-api"; | ||||
| import { DEFAULT_CONFIG } from "../api/Config"; | ||||
| import { WebsocketClient } from "../common/ws"; | ||||
|  | ||||
|  | ||||
| @customElement("ak-interface-admin") | ||||
| export class AdminInterface extends LitElement { | ||||
|  | ||||
|     @property({type: Boolean}) | ||||
|     @property({ type: Boolean }) | ||||
|     sidebarOpen = true; | ||||
|  | ||||
|     @property({type: Boolean}) | ||||
|     @property({ type: Boolean }) | ||||
|     notificationOpen = false; | ||||
|  | ||||
|     ws: WebsocketClient; | ||||
|  | ||||
|     static get styles(): CSSResult[] { | ||||
|         return [PFBase, PFPage, PFButton, PFDrawer, AKGlobal, css` | ||||
|             .pf-c-page__main, .pf-c-drawer__content, .pf-c-page__drawer { | ||||
|                 z-index: auto !important; | ||||
|             } | ||||
|         `]; | ||||
|         return [ | ||||
|             PFBase, | ||||
|             PFPage, | ||||
|             PFButton, | ||||
|             PFDrawer, | ||||
|             AKGlobal, | ||||
|             css` | ||||
|                 .pf-c-page__main, | ||||
|                 .pf-c-drawer__content, | ||||
|                 .pf-c-page__drawer { | ||||
|                     z-index: auto !important; | ||||
|                 } | ||||
|             `, | ||||
|         ]; | ||||
|     } | ||||
|  | ||||
|     constructor() { | ||||
| @ -58,56 +73,78 @@ export class AdminInterface extends LitElement { | ||||
|     } | ||||
|  | ||||
|     render(): TemplateResult { | ||||
|         return html` | ||||
|             <div class="pf-c-page"> | ||||
|                 <ak-sidebar class="pf-c-page__sidebar ${this.sidebarOpen ? "pf-m-expanded" : "pf-m-collapsed"}"> | ||||
|                     ${this.renderSidebarItems()} | ||||
|                 </ak-sidebar> | ||||
|                 <div class="pf-c-page__drawer"> | ||||
|                     <div class="pf-c-drawer ${this.notificationOpen ? "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-c-page__main" tabindex="-1" id="main-content" defaultUrl="/library"> | ||||
|                                         </ak-router-outlet> | ||||
|                                     </main> | ||||
|                                 </div> | ||||
|         return html` <div class="pf-c-page"> | ||||
|             <ak-sidebar | ||||
|                 class="pf-c-page__sidebar ${this.sidebarOpen ? "pf-m-expanded" : "pf-m-collapsed"}" | ||||
|             > | ||||
|                 ${this.renderSidebarItems()} | ||||
|             </ak-sidebar> | ||||
|             <div class="pf-c-page__drawer"> | ||||
|                 <div | ||||
|                     class="pf-c-drawer ${this.notificationOpen | ||||
|                         ? "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-c-page__main" | ||||
|                                         tabindex="-1" | ||||
|                                         id="main-content" | ||||
|                                         defaultUrl="/library" | ||||
|                                     > | ||||
|                                     </ak-router-outlet> | ||||
|                                 </main> | ||||
|                             </div> | ||||
|                             <ak-notification-drawer class="pf-c-drawer__panel pf-m-width-33"> | ||||
|                             </ak-notification-drawer> | ||||
|                         </div> | ||||
|                         <ak-notification-drawer class="pf-c-drawer__panel pf-m-width-33"> | ||||
|                         </ak-notification-drawer> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div>`; | ||||
|             </div> | ||||
|         </div>`; | ||||
|     } | ||||
|  | ||||
|     renderSidebarItems(): TemplateResult { | ||||
|         const superUserCondition = () => { | ||||
|             return me().then(u => u.user.isSuperuser || false); | ||||
|             return me().then((u) => u.user.isSuperuser || false); | ||||
|         }; | ||||
|         return html` | ||||
|             ${until(new AdminApi(DEFAULT_CONFIG).adminVersionRetrieve().then(version => { | ||||
|                 if (version.versionCurrent !== VERSION) { | ||||
|                     return html`<ak-sidebar-item ?highlight=${true}> | ||||
|                         <span slot="label">${t`A newer version of the frontend is available.`}</span> | ||||
|                     </ak-sidebar-item>`; | ||||
|                 } | ||||
|                 return html``; | ||||
|             }))} | ||||
|             ${until(me().then((u) => { | ||||
|                 if (u.original) { | ||||
|                     return html`<ak-sidebar-item ?highlight=${true} ?isAbsoluteLink=${true} path=${`/-/impersonation/end/?back=${window.location.pathname}%23${window.location.hash}`}> | ||||
|                         <span slot="label">${t`You're currently impersonating ${u.user.username}. Click to stop.`}</span> | ||||
|                     </ak-sidebar-item>`; | ||||
|                 } | ||||
|                 return html``; | ||||
|             }))} | ||||
|             ${until( | ||||
|                 new AdminApi(DEFAULT_CONFIG).adminVersionRetrieve().then((version) => { | ||||
|                     if (version.versionCurrent !== VERSION) { | ||||
|                         return html`<ak-sidebar-item ?highlight=${true}> | ||||
|                             <span slot="label" | ||||
|                                 >${t`A newer version of the frontend is available.`}</span | ||||
|                             > | ||||
|                         </ak-sidebar-item>`; | ||||
|                     } | ||||
|                     return html``; | ||||
|                 }), | ||||
|             )} | ||||
|             ${until( | ||||
|                 me().then((u) => { | ||||
|                     if (u.original) { | ||||
|                         return html`<ak-sidebar-item | ||||
|                             ?highlight=${true} | ||||
|                             ?isAbsoluteLink=${true} | ||||
|                             path=${`/-/impersonation/end/?back=${window.location.pathname}%23${window.location.hash}`} | ||||
|                         > | ||||
|                             <span slot="label" | ||||
|                                 >${t`You're currently impersonating ${u.user.username}. Click to stop.`}</span | ||||
|                             > | ||||
|                         </ak-sidebar-item>`; | ||||
|                     } | ||||
|                     return html``; | ||||
|                 }), | ||||
|             )} | ||||
|             <ak-sidebar-item path="/library"> | ||||
|                 <span slot="label">${t`Library`}</span> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Monitor`}</span> | ||||
|                 <ak-sidebar-item path="/administration/overview"> | ||||
|                     <span slot="label">${t`Overview`}</span> | ||||
| @ -116,24 +153,31 @@ export class AdminInterface extends LitElement { | ||||
|                     <span slot="label">${t`System Tasks`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Resources`}</span> | ||||
|                 <ak-sidebar-item path="/core/applications" .activeWhen=${[`^/core/applications/(?<slug>${SLUG_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/core/applications" | ||||
|                     .activeWhen=${[`^/core/applications/(?<slug>${SLUG_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Applications`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/core/sources" .activeWhen=${[`^/core/sources/(?<slug>${SLUG_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/core/sources" | ||||
|                     .activeWhen=${[`^/core/sources/(?<slug>${SLUG_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Sources`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/core/providers" .activeWhen=${[`^/core/providers/(?<id>${ID_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/core/providers" | ||||
|                     .activeWhen=${[`^/core/providers/(?<id>${ID_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Providers`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/core/tenants"> | ||||
|                     <span slot="label">${t`Tenants`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Outposts`}</span> | ||||
|                 <ak-sidebar-item path="/outpost/outposts"> | ||||
|                     <span slot="label">${t`Outposts`}</span> | ||||
| @ -142,10 +186,12 @@ export class AdminInterface extends LitElement { | ||||
|                     <span slot="label">${t`Service Connections`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Events`}</span> | ||||
|                 <ak-sidebar-item path="/events/log" .activeWhen=${[`^/events/log/(?<id>${UUID_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/events/log" | ||||
|                     .activeWhen=${[`^/events/log/(?<id>${UUID_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Logs`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/events/rules"> | ||||
| @ -155,8 +201,7 @@ export class AdminInterface extends LitElement { | ||||
|                     <span slot="label">${t`Notification Transports`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Customisation`}</span> | ||||
|                 <ak-sidebar-item path="/policy/policies"> | ||||
|                     <span slot="label">${t`Policies`}</span> | ||||
| @ -171,10 +216,12 @@ export class AdminInterface extends LitElement { | ||||
|                     <span slot="label">${t`Property Mappings`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Flows`}</span> | ||||
|                 <ak-sidebar-item path="/flow/flows" .activeWhen=${[`^/flow/flows/(?<slug>${SLUG_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/flow/flows" | ||||
|                     .activeWhen=${[`^/flow/flows/(?<slug>${SLUG_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Flows`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/flow/stages"> | ||||
| @ -187,10 +234,12 @@ export class AdminInterface extends LitElement { | ||||
|                     <span slot="label">${t`Invitations`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|             </ak-sidebar-item> | ||||
|             <ak-sidebar-item | ||||
|                 .condition=${superUserCondition}> | ||||
|             <ak-sidebar-item .condition=${superUserCondition}> | ||||
|                 <span slot="label">${t`Identity & Cryptography`}</span> | ||||
|                 <ak-sidebar-item path="/identity/users" .activeWhen=${[`^/identity/users/(?<id>${ID_REGEX})$`]}> | ||||
|                 <ak-sidebar-item | ||||
|                     path="/identity/users" | ||||
|                     .activeWhen=${[`^/identity/users/(?<id>${ID_REGEX})$`]} | ||||
|                 > | ||||
|                     <span slot="label">${t`Users`}</span> | ||||
|                 </ak-sidebar-item> | ||||
|                 <ak-sidebar-item path="/identity/groups"> | ||||
| @ -205,5 +254,4 @@ export class AdminInterface extends LitElement { | ||||
|             </ak-sidebar-item> | ||||
|         `; | ||||
|     } | ||||
|  | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer