AlchemyCMS/alchemy_cms

View on GitHub
app/javascript/alchemy_admin/components/growl.js

Summary

Maintainability
A
0 mins
Test Coverage
import { growl } from "alchemy_admin/growler"

class Growl extends HTMLElement {
  connectedCallback() {
    growl(this.message, this.getAttribute("type") || "notice")
  }

  get message() {
    return this.getAttribute("message") || this.innerHTML
  }
}

customElements.define("alchemy-growl", Growl)