{ "version": 3, "sources": ["../../node_modules/@patternfly/patternfly/components/AlertGroup/alert-group.css", "../../src/elements/messages/Message.ts", "../../src/elements/messages/MessageContainer.ts"], "sourcesContent": [".pf-c-alert-group {\n --pf-c-alert-group__item--MarginTop: var(--pf-global--spacer--sm);\n --pf-c-alert-group--m-toast--Top: var(--pf-global--spacer--2xl);\n --pf-c-alert-group--m-toast--Right: var(--pf-global--spacer--xl);\n --pf-c-alert-group--m-toast--MaxWidth: 37.5rem;\n --pf-c-alert-group--m-toast--ZIndex: var(--pf-global--ZIndex--2xl);\n --pf-c-alert-group__overflow-button--BorderWidth: 0;\n --pf-c-alert-group__overflow-button--PaddingTop: var(--pf-global--spacer--lg);\n --pf-c-alert-group__overflow-button--PaddingRight: var(--pf-global--spacer--md);\n --pf-c-alert-group__overflow-button--PaddingBottom: var(--pf-global--spacer--lg);\n --pf-c-alert-group__overflow-button--PaddingLeft: var(--pf-global--spacer--md);\n --pf-c-alert-group__overflow-button--Color: var(--pf-global--link--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-global--BoxShadow--lg);\n --pf-c-alert-group__overflow-button--BackgroundColor: var(--pf-global--BackgroundColor--100);\n --pf-c-alert-group__overflow-button--hover--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--hover--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n --pf-c-alert-group__overflow-button--focus--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--focus--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n --pf-c-alert-group__overflow-button--active--Color: var(--pf-global--link--Color--hover);\n --pf-c-alert-group__overflow-button--active--BoxShadow: var(--pf-global--BoxShadow--lg), var(--pf-global--BoxShadow--lg-bottom);\n}\n.pf-c-alert-group > * + * {\n margin-top: var(--pf-c-alert-group__item--MarginTop);\n}\n.pf-c-alert-group.pf-m-toast {\n position: fixed;\n top: var(--pf-c-alert-group--m-toast--Top);\n right: var(--pf-c-alert-group--m-toast--Right);\n z-index: var(--pf-c-alert-group--m-toast--ZIndex);\n width: calc(100% - var(--pf-c-alert-group--m-toast--Right) * 2);\n max-width: var(--pf-c-alert-group--m-toast--MaxWidth);\n}\n\n.pf-c-alert-group__overflow-button {\n position: relative;\n width: 100%;\n padding: var(--pf-c-alert-group__overflow-button--PaddingTop) var(--pf-c-alert-group__overflow-button--PaddingRight) var(--pf-c-alert-group__overflow-button--PaddingBottom) var(--pf-c-alert-group__overflow-button--PaddingLeft);\n color: var(--pf-c-alert-group__overflow-button--Color);\n background-color: var(--pf-c-alert-group__overflow-button--BackgroundColor);\n border-width: var(--pf-c-alert-group__overflow-button--BorderWidth);\n box-shadow: var(--pf-c-alert-group__overflow-button--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:hover {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--hover--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--hover--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:focus {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--focus--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--focus--BoxShadow);\n}\n.pf-c-alert-group__overflow-button:active {\n --pf-c-alert-group__overflow-button--Color: var(--pf-c-alert-group__overflow-button--active--Color);\n --pf-c-alert-group__overflow-button--BoxShadow: var(--pf-c-alert-group__overflow-button--active--BoxShadow);\n}", "import { MessageLevel } from \"@goauthentik/common/messages\";\nimport { AKElement } from \"@goauthentik/elements/Base\";\n\nimport { CSSResult, TemplateResult, html } from \"lit\";\nimport { customElement, property } from \"lit/decorators.js\";\n\nimport PFAlert from \"@patternfly/patternfly/components/Alert/alert.css\";\nimport PFAlertGroup from \"@patternfly/patternfly/components/AlertGroup/alert-group.css\";\nimport PFButton from \"@patternfly/patternfly/components/Button/button.css\";\nimport PFBase from \"@patternfly/patternfly/patternfly-base.css\";\n\nexport interface APIMessage {\n level: MessageLevel;\n tags?: string;\n message: string;\n description?: string;\n}\n\nconst LEVEL_ICON_MAP: { [key: string]: string } = {\n error: \"fas fa-exclamation-circle\",\n warning: \"fas fa-exclamation-triangle\",\n success: \"fas fa-check-circle\",\n info: \"fas fa-info\",\n};\n\n@customElement(\"ak-message\")\nexport class Message extends AKElement {\n @property({ attribute: false })\n message?: APIMessage;\n\n @property({ type: Number })\n removeAfter = 8000;\n\n @property({ attribute: false })\n onRemove?: (m: APIMessage) => void;\n\n static get styles(): CSSResult[] {\n return [PFBase, PFButton, PFAlert, PFAlertGroup];\n }\n\n firstUpdated(): void {\n setTimeout(() => {\n if (!this.message) return;\n if (!this.onRemove) return;\n this.onRemove(this.message);\n }, this.removeAfter);\n }\n\n render(): TemplateResult {\n return html`
  • \n \n
    \n \n
    \n

    ${this.message?.message}

    \n ${this.message?.description &&\n html`
    \n

    ${this.message.description}

    \n
    `}\n
    \n {\n if (!this.message) return;\n if (!this.onRemove) return;\n this.onRemove(this.message);\n }}\n >\n \n \n
    \n \n
  • `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n \"ak-message\": Message;\n }\n}\n", "import {\n EVENT_MESSAGE,\n EVENT_WS_MESSAGE,\n WS_MSG_TYPE_MESSAGE,\n} from \"@goauthentik/common/constants\";\nimport { SentryIgnoredError } from \"@goauthentik/common/errors\";\nimport { WSMessage } from \"@goauthentik/common/ws\";\nimport { AKElement } from \"@goauthentik/elements/Base\";\nimport \"@goauthentik/elements/messages/Message\";\nimport { APIMessage } from \"@goauthentik/elements/messages/Message\";\n\nimport { msg } from \"@lit/localize\";\nimport { CSSResult, TemplateResult, css, html } from \"lit\";\nimport { customElement, property } from \"lit/decorators.js\";\n\nimport PFAlertGroup from \"@patternfly/patternfly/components/AlertGroup/alert-group.css\";\nimport PFBase from \"@patternfly/patternfly/patternfly-base.css\";\n\nexport function showMessage(message: APIMessage, unique = false): void {\n const container = document.querySelector(\"ak-message-container\");\n if (!container) {\n throw new SentryIgnoredError(\"failed to find message container\");\n }\n if (message.message.trim() === \"\") {\n message.message = msg(\"Error\");\n }\n container.addMessage(message, unique);\n container.requestUpdate();\n}\n\n@customElement(\"ak-message-container\")\nexport class MessageContainer extends AKElement {\n @property({ attribute: false })\n messages: APIMessage[] = [];\n\n static get styles(): CSSResult[] {\n return [\n PFBase,\n PFAlertGroup,\n css`\n /* Fix spacing between messages */\n ak-message {\n display: block;\n }\n `,\n ];\n }\n\n constructor() {\n super();\n window.addEventListener(EVENT_WS_MESSAGE, ((e: CustomEvent) => {\n if (e.detail.message_type !== WS_MSG_TYPE_MESSAGE) return;\n this.addMessage(e.detail as unknown as APIMessage);\n }) as EventListener);\n window.addEventListener(EVENT_MESSAGE, ((e: CustomEvent) => {\n this.addMessage(e.detail);\n }) as EventListener);\n }\n\n addMessage(message: APIMessage, unique = false): void {\n if (unique) {\n const matchingMessages = this.messages.filter((m) => m.message == message.message);\n if (matchingMessages.length > 0) {\n return;\n }\n }\n this.messages.push(message);\n this.requestUpdate();\n }\n\n render(): TemplateResult {\n return html`
      \n ${this.messages.map((m) => {\n return html` {\n this.messages = this.messages.filter((v) => v !== m);\n this.requestUpdate();\n }}\n >\n `;\n })}\n
    `;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n \"ak-message-container\": MessageContainer;\n }\n}\n"], "mappings": "uQAAA,IAAAA,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;GCkBA,IAAMC,EAA4C,CAC9C,MAAO,4BACP,QAAS,8BACT,QAAS,sBACT,KAAM,aACV,EAGaC,EAAN,cAAsBC,CAAU,CAAhC,kCAKH,iBAAc,IAKd,WAAW,QAAsB,CAC7B,MAAO,CAACC,EAAQC,EAAUC,EAASC,CAAY,CACnD,CAEA,cAAqB,CACjB,WAAW,IAAM,CACR,KAAK,SACL,KAAK,UACV,KAAK,SAAS,KAAK,OAAO,CAC9B,EAAG,KAAK,WAAW,CACvB,CAEA,QAAyB,CACrB,OAAOC;AAAA;AAAA,yCAE0B,KAAK,SAAS,KAAK,IAAI,KAAK,SAAS,QAC9D,QACM,cACA,EAAE;AAAA;AAAA;AAAA,gCAGQ,KAAK,QAAUP,EAAe,KAAK,QAAQ,KAAK,EAAI,EAAE;AAAA;AAAA,+CAEvC,KAAK,SAAS,OAAO;AAAA,kBAClD,KAAK,SAAS,aAChBO;AAAA,yBACS,KAAK,QAAQ,WAAW;AAAA,uBAC1B;AAAA;AAAA;AAAA;AAAA;AAAA,iCAKU,IAAM,CACN,KAAK,SACL,KAAK,UACV,KAAK,SAAS,KAAK,OAAO,CAC9B,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,cAOrB,CACJ,EApDIC,EAAA,CADCC,EAAS,CAAE,UAAW,EAAM,CAAC,GADrBR,EAET,uBAGAO,EAAA,CADCC,EAAS,CAAE,KAAM,MAAO,CAAC,GAJjBR,EAKT,2BAGAO,EAAA,CADCC,EAAS,CAAE,UAAW,EAAM,CAAC,GAPrBR,EAQT,wBARSA,EAANO,EAAA,CADNE,EAAc,YAAY,GACdT,GCRN,SAASU,EAAYC,EAAqBC,EAAS,GAAa,CACnE,IAAMC,EAAY,SAAS,cAAgC,sBAAsB,EACjF,GAAI,CAACA,EACD,MAAM,IAAIC,EAAmB,kCAAkC,EAE/DH,EAAQ,QAAQ,KAAK,IAAM,KAC3BA,EAAQ,QAAUI,EAAI,OAAO,GAEjCF,EAAU,WAAWF,EAASC,CAAM,EACpCC,EAAU,cAAc,CAC5B,CAGO,IAAMG,EAAN,cAA+BC,CAAU,CAiB5C,aAAc,CACV,MAAM,EAhBV,cAAyB,CAAC,EAiBtB,OAAO,iBAAiBC,EAAoBC,GAA8B,CAClEA,EAAE,OAAO,eAAiBC,GAC9B,KAAK,WAAWD,EAAE,MAA+B,CACrD,CAAmB,EACnB,OAAO,iBAAiBE,EAAiBF,GAA+B,CACpE,KAAK,WAAWA,EAAE,MAAM,CAC5B,CAAmB,CACvB,CAtBA,WAAW,QAAsB,CAC7B,MAAO,CACHG,EACAC,EACAC;AAAA;AAAA;AAAA;AAAA;AAAA,aAMJ,CACJ,CAaA,WAAWb,EAAqBC,EAAS,GAAa,CAC9CA,GACyB,KAAK,SAAS,OAAQa,GAAMA,EAAE,SAAWd,EAAQ,OAAO,EAC5D,OAAS,IAIlC,KAAK,SAAS,KAAKA,CAAO,EAC1B,KAAK,cAAc,EACvB,CAEA,QAAyB,CACrB,OAAOe;AAAA,cACD,KAAK,SAAS,IAAKD,GACVC;AAAA,+BACQD,CAAC;AAAA,gCACCA,GAAkB,CAC3B,KAAK,SAAW,KAAK,SAAS,OAAQE,GAAMA,IAAMF,CAAC,EACnD,KAAK,cAAc,CACvB,CAAC;AAAA;AAAA,8BAGR,CAAC;AAAA,cAEV,CACJ,EAnDIG,EAAA,CADCC,EAAS,CAAE,UAAW,EAAM,CAAC,GADrBb,EAET,wBAFSA,EAANY,EAAA,CADNE,EAAc,sBAAsB,GACxBd", "names": ["alert_group_default", "LEVEL_ICON_MAP", "Message", "AKElement", "patternfly_base_default", "button_default", "alert_default", "alert_group_default", "ke", "__decorateClass", "n", "t", "showMessage", "message", "unique", "container", "SentryIgnoredError", "msg", "MessageContainer", "AKElement", "EVENT_WS_MESSAGE", "e", "WS_MSG_TYPE_MESSAGE", "EVENT_MESSAGE", "patternfly_base_default", "alert_group_default", "i", "m", "ke", "v", "__decorateClass", "n", "t"] }