@enhance-labs/custom-element-mixin

1.1.1-beta.8 • Public • Published

custom-element-mixin

Custom Element mixin that enables the reuse of single file components

Install

npm i @enhance-labs/custom-element-mixin

Usage

/pages/index.html

<my-element heading="one"></my-element>
<script type="module" src="/_public/browser/index.mjs"></script>

/elements/my-header.mjs

function MyHeader({ html, state  }) {
  const { attrs={} } = state
  const { heading='default' } = attrs
  return html`
    <style>
      :host {
        color: red;
      }
    </style>
    <h1>${heading}</h1>
  `
}

/browser/index.mjs

import MyHeaderElement from './elements/my-header.mjs'
import BaseElement from '@enhance/base-element'
import TemplateMixin from '@enhance/template-mixin'
import CustomElementMixin from '@enhance/custom-element-mixin'

class MyHeader extends CustomElementMixin(TemplateMixin(BaseElement)) {
  constructor() {
    super()
    this.header = this.querySelector('h1')
  }

  render(args) {
    return MyHeaderElement(args)
  }

  static get observedAttributes() {
    return [ 'heading' ]
  }

  headingChanged(value) {
    this.header.textContent = value
  }
}
customElements.define('my-header', MyHeader)

Readme

Keywords

none

Package Sidebar

Install

npm i @enhance-labs/custom-element-mixin

Weekly Downloads

0

Version

1.1.1-beta.8

License

Apache-2.0

Unpacked Size

34.7 kB

Total Files

8

Last publish

Collaborators

  • macdonst