@cldn/components - v4.1.0
    Preparing search index...

    Class ElementComponent<T>Abstract

    An Element component

    Type Parameters

    • T extends Element

      Component element type

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    node: T

    This component's node

    Methods

    • Run a function in the context of this component

      Parameters

      • fn: (this: this, component: this) => any

        Provides this component as the first argument and this.

      Returns this

    • Get element property

      Type Parameters

      • K extends string | number | symbol

      Parameters

      • name: K

        property name

      Returns T[K]

    • Check if component has class

      Parameters

      • ...classes: string[]

      Returns boolean

      true if component has all the specified classes

    • Append HTML.

      Any components (provided as ${...} inside the HTML string literal) remain fully functional and are appended (not just as HTML).

      Parameters

      • strings: TemplateStringsArray
      • ...components: any[]

      Returns this

      component.html`<div>${new Component("button")
      .text("Click me")
      .on("click", () => console.log("clicked"))
      }</div>`
      // Event listeners etc. are preserved.
      // Note the lack of parentheses.
    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      Returns ElementComponent<T>

    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      • options: AddEventListenerOptions

        An object that specifies characteristics about the event listener. See options on MDN

      Returns ElementComponent<T>

    • Add event listener

      Type Parameters

      • K extends keyof ElementEventMap

      Parameters

      • type: K

        A case-sensitive string representing the event type to listen for.

      • listener: (ev: ElementEventMap[K], component: this) => any

        The function that is called when an event of the specified type occurs.

      • useCapture: boolean

      Returns ElementComponent<T>

    • Replace classes

      Parameters

      • oldClasses: string | string[]

        If all of these classes are present, they will be removed.

      • newClasses: string | string[]

        The classes to add if all oldClasses are present

      Returns ElementComponent<T>