1.2.2 • Published 18 days ago

@enhance/custom-element-mixin v1.2.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
18 days ago

custom-element-mixin

Custom Element mixin that enables the reuse of single file components

Install

npm i @enhance/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)
1.2.2

18 days ago

1.2.1

6 months ago

1.2.0

7 months ago

1.1.1

7 months ago

1.1.1-beta.0

7 months ago

1.1.0

8 months ago

1.0.0

9 months ago

1.0.1

9 months ago