35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { AKElement } from "@goauthentik/elements/Base";
|
|
|
|
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/common/styles/authentik.css";
|
|
import PFContent from "@patternfly/patternfly/components/Content/content.css";
|
|
import PFList from "@patternfly/patternfly/components/List/list.css";
|
|
|
|
export interface MarkdownDocument {
|
|
html: string;
|
|
metadata: { [key: string]: string };
|
|
filename: string;
|
|
}
|
|
|
|
@customElement("ak-markdown")
|
|
export class Markdown extends AKElement {
|
|
@property({ attribute: false })
|
|
md?: MarkdownDocument;
|
|
|
|
static get styles(): CSSResult[] {
|
|
return [PFList, PFContent, AKGlobal];
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
if (!this.md) {
|
|
return html``;
|
|
}
|
|
const finalHTML = this.md?.html.replace("<ul>", "<ul class='pf-c-list'>");
|
|
return html`${this.md?.metadata.title ? html`<h2>${this.md.metadata.title}</h2>` : html``}
|
|
${unsafeHTML(finalHTML)}`;
|
|
}
|
|
}
|