query-assigned-element-content
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

queryAssignedElementContent

A class accessor decorator that converts a class property into a getter which lets you query the content of elements assigned to a <slot>. Use it to simplify the selection of slot content in your web component.

The decorator supports the latest (stage: 3) TC39 proposal - which is not yet implemented by browser vendors. However with TypeScript 5 we can use those already.

Some notes:

  • using both experimentalDecorators and stage 3 decorators in the same file is not possible. In the same project for separate files this could work, but that needs some work and several tsconfig files.
  • Some libraries do not yet support the latest decorator proposal
  • Even if it is not an experimentalDecorators (😅) decorator, it is experimental and therefore to be used with that in mind

Feel free to contribute and giving feedback

Usage

Let's just say we are developing a web component which takes in content using the slot-attribute:

<deco-element>
  <ul slot="list">
    <li>Tethys</li> 
    <li>Mimas</li>
  </ul>
</deco-element>

The assigned element in this example is a <ul> which contains some <li> elements. We want to select those list items from within the component and toggle a class when clicked. That could look like this:

import { queryAssignedElementContent } from './query-assigned-element-content.js';

class DecoElement extends HTMLElement {
  @queryAssignedElementContent({ selector: 'li', slot: 'list' })
  private accessor _listElements!: Array<HTMLLIElement>;

  constructor() {
    super();
    this.attachShadow({ mode: 'open' });
    this.shadowRoot!.innerHTML = `<slot name="list"></slot>`;
   
    this._listElements.forEach(listElement =>
      listElement.addEventListener('click', e => {
        (e.target as HTMLLIElement).classList.toggle('active');
      })
    );
  }
}

customElements.define('deco-element', DecoElement);

Motivation

I use the Lit library fairly frequently and developed a component a while ago. It highlights links in a table of contents when their corresponding headings appear in your device's viewport. These links come pre-rendered on my personal website from an SSG and must be added using a slot (see my post about it).

Using Lit's @queryAssignedElements1 decorator that could look like this (simplified):

@customElement('toc-observer')
export class TocObserver extends LitElement {
  // ...

  @queryAssignedElements({slot: 'toc'})
  private _tocList?: Array<HTMLUListElement>;

  private get _tocListItems(): HTMLAnchorElement[] | null {
    return this._tocList?.length
      ? [...this._tocList[0].querySelectorAll<HTMLAnchorElement>('[href^="#"]')]
      : null;
  }
}

With my decorator this would become:

@customElement('toc-observer')
export class TocObserver extends LitElement {
  // ...

  @queryAssignedElementContent({
    selector: '[href^="#"]',
    slot: 'toc',
  })
  private accessor _tocListItems!: Array<HTMLLIElement>;
}

Currently it's not supported by Lit to use both types of decorators but it's something that is being worked on. My motivation was mainly to simplify my own use case and to familiarize myself with a technical specification about a topic for which has not been written much about it yet.

Installation

npm i query-assigned-element-content

Development

Install project dependencies

npm i

Run the next two commands in parallel:

# Build with TS:
npm run build:watch
# Start a webserver:
npm run wds:serve

Inspiration & other useful resources

  1. https://lit.dev/docs/api/decorators/#queryAssignedElements

Package Sidebar

Install

npm i query-assigned-element-content

Weekly Downloads

0

Version

0.0.2

License

ISC

Unpacked Size

11.4 kB

Total Files

5

Last publish

Collaborators

  • tonyspegel