Git Product home page Git Product logo

crtelt's Introduction

crtElt

Utility to create DOM Element

Install

npm install crtelt
# or
yarn add crtelt

Import with script tag

<script src="node_modules/crtelt/dist/index.min.js"></script>
<!-- or -->
<script src="https://cdn.jsdelivr.net/npm/crtelt@latest/dist/index.min.js"></script>

Import as module

import crtElt from "crtelt";

Usage

crtElt(nodeName, attributes, children);

nodeName:

Name of the tag. Use fragment to create document fragment.

attributes:

Attributes to set.

events:

Object of events.

Pass event listener or array of event listener and options.
Check examples for details.

dataset:

Object of dataset.

style:

Object of styles.
You can use CSS variables too.

class:

String of element's class names.
You can use both className and class to set class names.

And all the other attributes of the element

children:

You can pass string, document fragment, element, undefined, null.
It'll be appended if it's truthy.

Examples

Creating an element

const Element = crtElt(
    "div",
    { className: "element" },
    crtElt("span", { className: "element__child" }, "foo"),
    crtElt("span", { className: "element__child" }, "bar")
);

Adding event listeners

function Textarea() {
    return crtElt("textarea", {
        className: "textarea",
        placeholder: "Type some text",
        ariaLabel: "Type some text",
        rows: 2,
        events: {
            change({ target }) {
                if (!(target instanceof HTMLTextAreaElement)) {
                    return;
                }

                console.log(target.value);
            },
            click: [
                () => {
                    console.log("You clicked it");
                },
                { once: true },
            ],
        },
    });
}

Adding styles

const Element = crtElt(
    "div",
    {
        className: "element",
        style: {
            width: `${Math.log(window.innerWidth)}px`,
            "--color": `${getRandomHexColor()}`,
        },
    },
    crtElt("span", { className: "element__child" }, "foo"),
    crtElt("span", { className: "element__child" }, "bar")
);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.