次の機能を備えた Web コンポーネントを作成しようとしています。
1. ボタンをクリックして<textarea>
要素を追加します。
2. 新しく作成された<textarea>
要素にテキストを追加した後、このテキストは の対応するアイテムに追加されますthis.list
。
3. 別のスクリプトで DOM 要素をdocument.querySelector()
取得し、 からデータを取得できますthis.list
。
これが私がこれまでに持っているものです:
<!DOCTYPE html>
<html>
<body>
<my-element></my-element>
<script type="module">
import { LitElement, html } from "lit-element";
import { repeat } from "lit-html/directives/repeat.js";
class MyElement extends LitElement {
static get properties() {
return {
list: { type: Array },
};
}
constructor() {
super();
this.list = [
{ id: "1", text: "hello" },
{ id: "2", text: "hi" },
{ id: "3", text: "cool" },
];
}
render() {
return html`
${repeat(this.list, item => item.id,
item => html`<textarea>${item.text}</textarea>`
)}
<button @click="${this.addTextbox}">Add Textbox</button>
`;
}
addTextbox(event) {
const id = Math.random();
this.list = [...this.list, { id, text: "" }];
console.log(this.list); // text from new textboxes is not being added to list
}
}
customElements.define("my-element", MyElement);
</script>
<script>
const MyElement = document.querySelector("my-element");
const data = MyElement.properties; // undefined
</script>
</body>
</html>