Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sashafirsov/light-dom-element


https://github.com/sashafirsov/light-dom-element

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# light-dom-element project is frozen
in favor of [@epa-wg/custom-element](https://github.com/EPA-WG/custom-element) which is compatible with `light-dom-element` by functionality and API.

`light-dom-element` is still can be used as lighter version. If you look to minimal JS with same native functionality in shadowDOM,
use [shadow-dom-element](https://github.com/sashafirsov/shadow-dom-element) Fully functional template with declarative events handling in light DOM is handled by `@epa-wg/custom-element`

# light-dom-element

is covering the typical UI tasks:
populate html slots into template using Light DOM ( acting as
[Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM)
but without CSS insulation ).
Slots content and template could be local in the page or pointed via URL.

[![git](https://cdnjs.cloudflare.com/ajax/libs/octicons/8.5.0/svg/mark-github.svg) GitHub](https://github.com/sashafirsov/light-dom-element)
| Demo: [light-dom-element](https://unpkg.com/[email protected]/index.html)
| [tests project](https://github.com/sashafirsov/light-dom-element-test)

[![NPM version][npm-image]][npm-url]
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/light-dom-element)
[![coverage][coverage-image]][coverage-url]

```html

heading 😌

```

## Where to use
`light-dom-element` is simplest web component to render HTML `template` and `slot`.

It is meant for displaying the static content in the page or available during page load via URL.

You do not need a [static site generator](https://www.cloudflare.com/learning/performance/static-site-generator/)
as most of "components" could be expressed via template in own file.
[There is a live sample](https://unpkg.com/[email protected]/demo/ananke/content/en/index.html)
of `shadow-dom-element` based templates for Ananke site generator.
While it is not a good example of shadow dom css styling,
it gives enough for templates embedding and use of such for building the static web site. You could play with this
responsive template in [Sandbox][sandbox-url].

[File the issue](https://github.com/sashafirsov/light-dom-element/issues)
if need a site sample based on html templates or have your own to be shared.

# Use
## install
npm i -P light-dom-element
## or use from CDN
```js

```
The size of [light-dom-element.js](https://unpkg.com/[email protected]/light-dom-element.js)
is 1.6Kb, [compiled](https://unpkg.com/[email protected]/dist/src/light-dom-element.js) to 1Kb.

## API
fetch implemented via [fetch() api](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), can be overridden with
any type.

* `promise` resolved when template and slots loaded and rendered
* `slotsInit()` initiates template and slots reading and rendering, returns `Promise`
* `fetch( url )` override to load and process URL before returning a HTML string with data within slots.
Handy to use the JSON or XML as data source. Note, there is no error handling, you have to cover that case by template
and error slots. For that you could find [slotted-element](https://github.com/sashafirsov/slotted-element) handy as it
is designed for loading life cycle.
* `applyTemplate( templateNode )` applies template to slots in sub-dom of this element.

### Attributes
all attributes reflected as component properties
* `tag` tag name of declarative custom element
* `srcset` id of container with slots
* `src` url for html with slots
* `for` id for html template
* `code` url for html template

#### From slot to attribute
`` is a special case of `slot` use within template: it would set the `abc` attribute of
parent node to value taken either from `href`, `src`, or innerText of passed element with given name.
It is needed to pass the attribute via slots. For example, link or image URL. It could be used to pass attribute to internal
`shadow-dom-element` as within
[summary-with-image template](https://github.com/sashafirsov/shadow-dom-element/blob/324d7de33464368c312e0bc6a9d8becc9b4dabf3/demo/ananke/content/en/index.html#L42)
for image URL.

* `slot attribute=abc` defines attribute which would be populated from slot `href`, `src`, or `innerText`
* `slot for=in-shadow-id` for slot with `attribute` defines the element where attribute would be applied. When omitted,
the attribute of container element where slot is located in template would be set:
```html


source from slot




```

# test and demo
reside in separate repository https://github.com/sashafirsov/ligh-dom-element-test to avoid unnecessary dependency in
source repo and npm.

Minimal functionality local demo is available in [demo/](demo/index.html) which could be run by
```bash
npm start
```

# Typescript
`import LightDomElement from 'light-dom-element'` code has [typings](light-dom-element.d.ts) along with JSDoc enabled.

# dependencies
`shadow-dom-element`, `css-chain`

[npm-image]: https://img.shields.io/npm/v/light-dom-element.svg
[npm-url]: https://npmjs.org/package/light-dom-element
[coverage-image]: https://unpkg.com/[email protected]/coverage/coverage.svg
[coverage-url]: https://unpkg.com/[email protected]/coverage/lcov-report/index.html
[sandbox-url]: https://stackblitz.com/github/sashafirsov/light-dom-element