webcomponent
TypeScript icon, indicating that this package has built-in type declarations

1.2.2 • Public • Published

webcomponent

Build Status

Sauce Test Status

Lightweight utilities for constructing Web Components

Installation

Install via npm, for packaging with a bundler such as Webpack or Browserify:

npm install --save webcomponent

If your target environment does not have native support for Web Components, you should include a separate polyfill such as webcomponents.js.

Usage

Register web components by extending the WebComponent class instead of HTMLElement:

import WebComponent from 'webcomponent';
class MyWidget extends WebComponent {
  connectedCallback() {
    // ...
  }
 
  get myprop() {
    // ...
  }
  // etc
}
customElements.define('my-widget', MyWidget);

WebComponent is a thin wrapper around HTMLElement which

Built-in helper methods

getJSONAttribute(attrName [, errorHandler])

Parse an attribute which has been serialized as JSON, e.g.,

<my-widget data-magic-numbers="[1,2,3]">
this.getJSONAttribute('data-magic-numbers') // [1, 2, 3]

If no errorHandler is passed, JSON-parsing errors will result in null being returned.

getNumberAttribute(attrName)

Parse a numeric attribute, e.g.,

<my-widget-list num-widgets="15">
this.getNumberAttribute('num-widgets') // 15

Non-numeric values will return null.

isAttributeEnabled(attrName)

Check whether a boolean-like attribute is 'enabled', taking into account usages such as:

<my-widget awesome="true">     <!-- enabled -->
<my-widget awesome>            <!-- enabled -->
<my-widget awesome="awesome">  <!-- enabled -->
<my-widget awesome="false">    <!-- disabled -->
<my-widget>                    <!-- disabled -->

Development

Install dependencies: npm install

Run local demo:

Running tests

Browser tests run with Selenium through web-component-tester.

Run with locally installed browsers

npm test

Tunnel to Sauce Labs

npm run build-test && npm run test-browser-sauce

Set credentials with environment variables SAUCE_USERNAME and SAUCE_ACCESS_KEY. The default browser/OS matrix is defined in wct.conf.json.

License

MIT

Package Sidebar

Install

npm i webcomponent

Weekly Downloads

304

Version

1.2.2

License

MIT

Unpacked Size

23.8 kB

Total Files

13

Last publish

Collaborators

  • mp_jthong
  • mixpanel-dev
  • tdumitrescu
  • zihe.jia