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

dom-element-factory

v1.5.3

Published

Lightweight tool that creates DOM elements

Downloads

467

Readme

DOM Elements factory

Utility to create DOM elements and fragments easily.

Sample usage:

import {a, b, br, div} from "dom-element-factory"

const subDOM = div({classList: {foo: true, bar: false}},
    div(null, [
        a({href: 'google.com', click: e => e.preventDefault()}, 'Click me'),
        br(),
        b({style: {backgroundColor: 'silver'}}, 'Bold text')
    ])
)

document.body.appendChild(subDOM)

/** This code creates such elements under BODY:
 * <div class="foo">
 *     <div>
 *         <a href="google.com">Click me</a>
 *         <br>
 *         <b style="background-color: silver;">Bold text</b>
 *     </div>
 * </div>
 * 
 * width click event listener on the link
*/

How to run

Installation

npm install dom-element-factory

Usage in a browsers

To run the code from above directly in browser, you'll need to change import statement to this:

import {a, b, br, div} from "./node_modules/dom-element-factory"

Usage under Node.js

To use this utility under Node.js, you should mark your code as module. You can add to package.json according line:

{
  "type": "module"
}

To run code sample from above, change import to this code:

import * as DOMElementFactory from "dom-element-factory"
const {a, b, br, div} = DOMElementFactory

Usage in browsers in-place

You can add script tag and import factory like this:

<script type="module">
    import createElement from 'https://unpkg.com/dom-element-factory'
    document.body.appendChild(
        createElement('span', null, 'Here we are!')
    )
</script>

API

Create Elements

The main function is the createElement(tagName, attributes, children) with three optional arguments.

Has shortcut tag().

Sample usage

Empty DIV:

createElement()
// Creates <div></div>

Empty SPAN:

createElement('span')
// <span></span>

Empty DIV with ID attribute:

createElement('div', {id: 'test'})
// <div id="test"></div>

Element DIV with text content:

createElement('div', null, 'Inner text')
// Creates <div>Inner text</div>

Element DIV with children and CLASS attribute:

createElement('div',
    {classList: ['some', {'class': false, 'name': true}]},
    [
        createElement('div', {'class': 'some classes'}, 'First child'),
        'Text node',
        createElement('footer', null, 'Last child')
    ]
)
/**
 * Creates according structure:
 * <div class="some name">
 *     <div class="some classes">First child</div>
 *     Text node
 *     <footer>Last child</footer>
 * </div>
 */

tagName

String, default value 'DIV'

Defines the tag, that will be created.

attributes

Object, default value {}

This object should contain attributes that will be assigned to created element.

There are some edge-cases:

class

Set value string as class attribute.

Has shortcut _ to use instead of key 'class'.

createElement('div', {'class': 'demo'})
createElement('div', {_: 'demo'})
// returns the same: <div class="demo"></div>
classList

The more flexible way to assign classes. Can be string, array, object or function.

If function passed, it will be called and the result will be used. The string value will be separated by spaces and acted as classList. In case of array, all non-falsie values will be used as classList. The object will be filtered by non-falsie values and keys that left will be used as classList.

style

Sets the inline styling.

Can be string like 'font-size: 2em' or object like {fontSize: '2em'}

data

Sets the data-attributes.

The attribute passed as {data: {id: 'test'}} will be assigned as data-id="test" attribute to generated element.

event listeners

All attributes that has function as value will be considered as event listeners and will be added to element as callbacks to according events.

let flag = 0
const subDOM = createElement('div', {click: () => flag++})
subDOM.click() // same as user click on element
// flag == 1

children

Array, String, Function or Element, default value []

The list of element's children.

If String or Element passed, they will be acted as single element of array of children.

If element of array is Function, it will be called abd the result of it will be used as child.

Additional notes

If attributes passed as String, it will be considered as a className.

If attributes passed as Element, it will be considered as a first child.

Create Fragments

You can create element with empty (but not undefined) tag name and receive DOM fragment.

const fragment = createElement(null, null, [
    createElement('span', null, 'SPAN element'),
    'Text node'
])

document.body.appendChild(fragment)

/**
 * This code generates under the BODY element and text nodes:
 * <span>SPAN element</span>
 * Text node
 */

To simplify usage, fragment also contains innerHTML getter that returns fragment's content.

console.log(fragment.innerHTML)
/**
 * Output:
 * <span>SPAN element</span>Text node
 */

As tag name can be any falsie value except undefined.

There are two shortcuts prepared to create fragments: createFragment(children[]) and the same fragment(children[])

Setting the innerHTML

It is possible to set the innerHTML of newly creating element with innerHTML helper function.

This function just converting the html string into DOM elements via proxy fragment.

createElement('div', null, innerHTML('<span>Here is html</span>'))
/**
 * Output:
 * <div>
 *     <span>Here is html</span>
 * </div>
 */

Add styles to the page

It is quite easy to add a styling to the page using the style tag:

createElement('style', null, 'pre {color: navy; background-color: lightgray}')
/**
 * Output:
 * <style>pre {color: navy; background-color: lightgray}</style>
 */

But you can also create the same element using css helper and pass there an object with selectors and CSS declarations:

const styles = {
    pre: {
        color: 'navy',
        backgroundColor: 'lightgray'
    }
}

css(styles)
/**
 * Output:
 * <style>pre {color: navy; background-color: lightgray}</style>
 */

Tags

All HTML5 tags shortcuts are prepared in the tags.js file.

You can build the DOM using tag functions like div() instead of createElement('div'). These shortcuts were used in the examples above.

There is one additional shortcut: text(textContent). This function creates document fragment with text node inside it. You can use it like this:

span(text('Inner text'))
// <span>Inner text</span>