mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-22 16:55:23 +01:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import { style, el, elNS, on, S, scope } from '../exports.js';
|
|
const className= style.host(fullNameComponent).css`
|
|
:host form{
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
}
|
|
`;
|
|
export function fullNameComponent(){
|
|
const labels= [ "Name", "Surname" ];
|
|
const name= labels.map(_=> S(""));
|
|
const full_name= S(()=>
|
|
name.map(l=> l()).filter(Boolean).join(" ") || "-");
|
|
scope.host(on.connected(()=> console.log(fullNameComponent)));
|
|
scope.host(on.disconnected(()=> console.log(fullNameComponent)))
|
|
|
|
const elSVG= elNS("http://www.w3.org/2000/svg");
|
|
return el("div", { className }).append(
|
|
el("h2", "Simple form:"),
|
|
el("form", { onsubmit: ev=> ev.preventDefault() }).append(
|
|
...name.map((v, i)=>
|
|
el("label", labels[i]).append(
|
|
el("input", { type: "text", name: labels[i], value: v() }, on("change", ev=> v(ev.target.value)))
|
|
))
|
|
),
|
|
el("p").append(
|
|
el("strong", "Full name"),
|
|
": ",
|
|
el("#text", full_name)
|
|
),
|
|
elSVG("svg", { viewBox: "0 0 240 80", style: { height: "80px", display: "block" } }).append(
|
|
//elSVG("style", { })
|
|
elSVG("text", { x: 20, y: 35, textContent: "Text" })
|
|
)
|
|
);
|
|
}
|