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

js-component-framework

v3.2.0

Published

A framework for configuring a JavaScript component and attaching it to a DOM element or collection of DOM elements, simplifying organization of DOM interactions on your website.

Downloads

2,076

Readme

JS Component Framework

A zero-dependency framework for configuring a JavaScript component and attaching it to a DOM element or collection of DOM elements, simplifying organization of DOM interactions on your website.

Components can be ES6 classes or simple functions, and their child nodes are collected automatically based on the component configuration and passed to the component, which reduces or removes the need to write DOM queries for each component.

Version 3.0.0 contains breaking changes. See v2 documentation for backward compatibility.

Coming from a previous version? Find full upgrade documentation in the Wiki.

Getting Started

Install js-component-framework from NPM.

npm install js-component-framework

Creating a Component

Component elements are denoted by a data-component attribute, the value of which is used to match the component to its element(s).

<header data-component="site-header">...</header>

The Configuration Object

name: (Required if root isn't defined) - The component name. This must match the component root element's data-component attribute value.

root: (Optional) - The selector for the component root. Must be a valid CSS selector string used by querySelector(). Will be ignored if name is defined.

component: (Required) - A component can be created as an ES6 class or a function. This property accepts the exported class or function to be initialized for the component.

querySelector: (Optional) - An object mapping of name: selector pairs matching a single child element of the component. Each selector is passed to querySelector() and the result is passed to as component's children property. For example, if you provide { title: '.site-title' }, the element will be accessible in your component as children.title.

querySelectorAll: (Optional) - Same as querySelector, but each selector is passed to querySelectorAll() and returned as an array of elements for each selector.

options: (Optional) - An arbitrary value, typically an object, used by the component. This could be a configuration for another JS library, values used for calculating styles, etc. This is passed to the wrapped function as the options property.

load: (Optional) - Default is a DOMContentLoaded handler.

  • false - prevents execution and instructs componentProvider to return the provider function
  • true - Adds the provider function call in place so it is executed as soon as the parent script is parsed and loaded.
  • array - [HTMLElement, event] - Adds the provider function as a callback for event on HTMLElement (e.g., [window, 'load']).
  • handler - A function that accepts a callback and contains the logic to call it.

Component Properties

Components receive an object of component properties as their only argument. These are based on the config and are included automatically by the framework.

element: the data-component element to which the component is attached

children: the component’s child elements as described in config.querySelector and config.querySelectorAll

options: the config.options value, if any

Functional Components

Functional components receive the object of component properties as their only parameter.

function myComponent({ element, children, options }) { ... }

Classical Components

For classical components, the object of component properties is passed as the constructor's only parameter.

class MyComponent {
  constructor({ element, children, options }) { ... }
}

Loading Components

Due to the nature of the component framework, components must be prepared for loading prior to initialization. By default, the function that performs this preparation will also load the component.

componentProvider

componentProvider creates a provider function that contains all the properties and DOM querying logic necessary for all instances of the component to be initialized.

The component will automatically be initialized according to the config.load value. If config.load is false, the provider function is returned.

Parameters

config (Required) A component config object.

import { componentProvider } from 'js-component-framework';

function productDetails({ element, children, options }) { ... }

const productDetailsConfig = {
  name: 'product-details',
  component: productDetails,
  // load: boolean | array | function
  querySelectorAll: {
    toggles: '.product-details__toggle',
  },
};

// The component is executed at 'DOMContentLoaded' due to the absense of a `config.load` value.
componentProvider(productDetailsConfig);

componentLoader

componentLoader is used by componentProvider to load components. It is exported individually for cases where one doesn't want componentProvider to load the provider function automatically.

Parameters

providerFunction: (Required) A function returned from componentProvider.

load: (Optional) A valid config.load value. Default is a domContentLoaded callback.

// my-component/my-component.js

const wrappedComponent = componentProvider(config); // config.load === false
export default wrappedComponent;
// my-component/index.js

import { componentLoader } from 'js-component-framework';
import wrappedComponent from './my-component';

// This is a contrived example; in a real-world component this same outcome can 
// be accomplished simply by setting the config load value to `[window, 'load']`
componentLoader(wrappedComponent, [window, 'load']);