npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

baseui-wc-base-component

v1.0.0-rc2

Published

Re-usable base customElement to avoid repeated bootstrap code, flexible to choose own rendering or use hyperHTML/LitHTML/LighterHTML

Downloads

45

Readme

BaseUICustomElement

npm license

This base component allows you to create a customElement without repeated bootstrapping code. Optionally you can use rendering library of your choice(vdom, preact, etc.) or just vanilla JS. You can also choose from the provided wrapped component with lit-html or hyperHTML to efficiently render/re-render templates to DOM, while keeping the component creation API same.

Note: To keep this package lean, hyperHTML and lit-html are moved out as external dependencies, please make sure to include based on your choice.

V1 re-written with Typescript support and improved developer experience with type definition for attribute values, conversion of all attributes default is no-longer works, you have to define them in a static get attrToProp method see examples below.

Install

npm i baseui-wc-base-component

Since it's an UMD bundle, this can be imported into ES6/CJS/AMD modules in node or in browser environment

Node:

// ES6
import { BaseUICustomElement } from 'baseui-wc-base-component';
// CJS
const { BaseUICustomElement } = require('baseui-wc-base-component');
// AMD
define('module_name', ['baseui-wc-base-component'], function (BaseUICustomElement){});

Browser:

<script src="https://unpkg.com/baseui-wc-base-component/dist/index.js"></script>

Component lifecycle methods:

Name | When it gets called --------------- | -------------------------------------------------------------------------------------------------------------------------------- willConnect() | before the component gets attached to the DOM (use this instead of constructor) onConnect() | on connectedCallback trigger didConnect() | after the component gets attached to the DOM (only once, after first render) willRender() | before render() didRender() | after render() setState() | shallow merge state changes and perform re-render define() | register custom element, helps prevent throwing error when same element is imported into other modules and try to register again

Other DOM helper methods, refer below example:

Name | When it gets called ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- hasAttr(attr, targetEle?) | Returns boolean based on if the attribute exist on the element getAttr(attr, targetEle?) | Returns value of the given attribute on the element setAttr(attr, value, targetEle?) | Sets value to the given attribute on the element removeAttr(attr, targetEle?) | Removes the given attribute on the element addClass(className, targetEle?) | Adds class on the given element removeClass(className, targetEle?) | Removes class on the given element hasClass(className, targetEle?) | Returns boolean based on if the class exist on the element toggleClass(className, targetEle?, force) | Toggles class on the given element find(selector, targetEle?) | Search and return element from the DOM based on the given selector and context element findAll(selector, targetEle?) | Search and return all elements from the DOM based on the given selector and context element on(eventName, targetEle?, callback) | Adds event listener on the given target element and calls the provided callback function when triggered off(eventName, targetEle?, callback) | Removes event listener on the given target element trigger(eventName, targetEle?, eventData) | Emits an event (including custom events) on a given target element, note third param takes an object which will create customEvent with event detail object in it to pass information

Usage

Live preview of below examples from codesandbox

  1. BaseUICustomElement (usage in JS)
  2. BaseUICustomElement (usage in TS)

with BaseCustomElement

Optionally you can use rendering library of your choice or just vanilla JS.

import { BaseUICustomElement } from 'baseui-wc-base-component';

class HeaderTextBase extends BaseUICustomElement {
    static get attrToProp() {
        return {
            text: { type: String, observe: true, require: true }
        };
    }

    willConnect() {
        this.state = { count: 0 };
    }

    didRender() {
        const clickHandlerEle = this.find('[js-click-handler]');
        this.on('click', clickHandlerEle, this);
    }

    onClick() {
        this.setState((prevState) => ({ count: prevState.count + 1 }));
        this.clickCount = this.state.count ? ` -> click count ${this.state.count}` : '';
    }

    render({ text, clickCount = '' }: this) {
        this.innerHTML = `
            <h2 class="header-text__htext">
                <span js-click-handler>${text}</span>
                <span>${clickCount}</span>
            </h2>
        `;
    }
}

HeaderTextBase.define('header-text-base');

Usage in HTML:

<header-text-base text="Rendered with base-custom-element"></header-text-base>

If you want to use in a Typescript project, can be written like below examples with hyper/lit html rendering.

with hyperHTML

import { CustomElement } from 'baseui-wc-base-component/esm/decorators';
import { Component } from 'baseui-wc-base-component/esm/with-hyperHTML';

interface HeaderTextState {
    count: number;
}

@CustomElement('header-text-hyper')
export class HeaderTextHyper extends Component<HeaderTextState> {
    readonly state = {
        count: 0
    };

    static get attrToProp() {
        return {
            text: { type: String, observe: true, require: true }
        };
    }

    onClick() {
        this.setState((prevState) => ({ count: prevState.count + 1 }));
        this.clickCount = this.state.count ? ` -> click count ${this.state.count}` : '';
    }

    render({ domRender, text, clickCount }) {
        return domRender`
            <h2 class="header-text__htext">
                <span onclick="${this}">${text}</span>
                <span>${clickCount}</span>
            </h2>
        `;
    }
}

Usage in HTML:

<header-text-hyper text="Title text component: hyper-html"></header-text-hyper>

with litHTML

import { CustomElement } from 'baseui-wc-base-component/esm/decorators';
import { Component } from 'baseui-wc-base-component/esm/with-litHTML';

interface HeaderTextState {
    count: number;
}

@CustomElement('header-text-lit')
class HeaderTextLit extends Component<HeaderTextState> {
    readonly state = {
        count: 0
    };

    static get attrToProp() {
        return {
            text: { type: String, observe: true, require: true }
        };
    }

    onClick() {
        this.setState((prevState) => ({ count: prevState.count + 1 }));
        this.clickCount = this.state.count ? ` -> click count ${this.state.count}` : '';
    }

    render({ domRender, text, clickCount }) {
        return domRender`
            <h2 class="header-text__htext">
                <span @click="${this}">${text}</span>
                <span>${clickCount}</span>
            </h2>
        `;
    }
}

Usage in HTML:

<header-text-hyper text="Title text component: hyper-html"></header-text-hyper>

Component with external renderers example

Live preview from codesandbox:
Toggle view example (usage in TS)

TODO add more docs