Skip to content

Commit 2b806cf

Browse files
committed
New utility function to add or replace a template instance
1 parent 6ed7f75 commit 2b806cf

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@karesztrk/webcomponent-base",
3-
"version": "1.0.8",
3+
"version": "1.0.10",
44
"exports": {
55
".": "./src/index.js"
66
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@karesztrk/webcomponent-base",
33
"repository": "https://github.com/karesztrk/webcomponent-base",
4-
"version": "1.0.9",
4+
"version": "1.0.10",
55
"description": "",
66
"type": "module",
77
"types": "./types/index.d.ts",

src/LightElement.js

+16
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,22 @@ class LightElement extends HTMLElement {
7373
const names = Object.getOwnPropertyNames(o);
7474
return names.includes(/** @type {string} */ (name));
7575
}
76+
77+
/**
78+
* Given a selector, if the target element exists, it will be replace its children with the template instance.
79+
* If the target element doesn't exist, the template will be appended as a new child.
80+
* @param {string} selector
81+
* @param {HTMLElement} template
82+
* @returns {void}
83+
*/
84+
addTemplate(selector, template) {
85+
const target = this.querySelector(selector);
86+
if (target) {
87+
target.replaceChildren(...template.children);
88+
} else {
89+
this.appendChild(template);
90+
}
91+
}
7692
}
7793

7894
export default LightElement;

types/index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ declare module '@karesztrk/webcomponent-base' {
2121
getTemplate(id: string): Node | undefined;
2222

2323
isOwnProperty(name: unknown): boolean;
24+
/**
25+
* Given a selector, if the target element exists, it will be replace its children with the template instance.
26+
* If the target element doesn't exist, the template will be appended as a new child.
27+
* */
28+
addTemplate(selector: string, template: HTMLElement): void;
2429
}
2530
export default ShadowElement;
2631
/**

0 commit comments

Comments
 (0)