| ... |
... |
@@ -9,17 +9,18 @@ |
| 9 |
9 |
this.attachShadow({ mode: 'open'}); |
| 10 |
10 |
} |
| 11 |
11 |
|
| 12 |
|
- createTemplate(htmlString) { |
|
12 |
+ get template() { |
| 13 |
13 |
const template = document.createElement('template'); |
| 14 |
14 |
template.innerHTML = ` |
| 15 |
15 |
<style> |
| 16 |
16 |
${this.styles} |
| 17 |
17 |
</style> |
| 18 |
|
- ${htmlString} |
|
18 |
+ ${this.html} |
| 19 |
19 |
`; |
| 20 |
20 |
return template; |
| 21 |
21 |
} |
| 22 |
22 |
|
|
23 |
+ |
| 23 |
23 |
get styles() { |
| 24 |
24 |
return ``; |
| 25 |
25 |
} |
| ... |
... |
@@ -58,6 +58,13 @@ |
| 58 |
58 |
}); |
| 59 |
59 |
} |
| 60 |
60 |
|
|
62 |
+ get styles() { |
|
63 |
+ return ` |
|
64 |
+ input[type="text"] { |
|
65 |
+ border: 1px solid red; |
|
66 |
+ } |
|
67 |
+ ` |
|
68 |
+ } |
| 61 |
61 |
|
| 62 |
62 |
handleSearch = () => { |
| 63 |
63 |
const value = this.$('input[type="text"]').value; |
| ... |
... |
@@ -67,8 +67,8 @@ |
| 67 |
67 |
} |
| 68 |
68 |
|
| 69 |
69 |
|
| 70 |
|
- get searchInputTemplate() { |
| 71 |
|
- return this.createTemplate(` |
|
78 |
+ get html() { |
|
79 |
+ return ` |
| 72 |
72 |
<div> |
| 73 |
73 |
<input type="text"><button id="search">Search</button> |
| 74 |
74 |
<div id="results"></div> |
| ... |
... |
@@ -75,7 +75,7 @@ |
| 75 |
75 |
<button id="prev">prev</button> |
| 76 |
76 |
<button id="next">next</button> |
| 77 |
77 |
</div> |
| 78 |
|
- `); |
|
86 |
+ `; |
| 79 |
79 |
} |
| 80 |
80 |
|
| 81 |
81 |
renderResults = (results) => { |
| ... |
... |
@@ -92,7 +92,7 @@ |
| 92 |
92 |
} |
| 93 |
93 |
|
| 94 |
94 |
render() { |
| 95 |
|
- this.shadowRoot.appendChild(this.searchInputTemplate.content.cloneNode(true)); |
|
103 |
+ this.shadowRoot.appendChild(this.template.content.cloneNode(true)); |
| 96 |
96 |
} |
| 97 |
97 |
} |
| 98 |
98 |
); |
| ... |
... |
@@ -111,19 +111,26 @@ |
| 111 |
111 |
return this.getAttribute('data-href'); |
| 112 |
112 |
} |
| 113 |
113 |
|
| 114 |
|
- get resultTemplate() { |
| 115 |
|
- return this.createTemplate(` |
|
122 |
+ get styles() { |
|
123 |
+ return ` |
|
124 |
+ a { |
|
125 |
+ color: var(--color-brand-primary); |
|
126 |
+ } |
|
127 |
+ `; |
|
128 |
+ } |
|
129 |
+ get html() { |
|
130 |
+ return ` |
| 116 |
116 |
<div> |
| 117 |
117 |
<a href=${this.hrefAttr}>${this.titleAttr}</a> |
| 118 |
118 |
<div> |
| 119 |
119 |
<slot></slot> |
| 120 |
120 |
</div> |
| 121 |
|
- </div> |
| 122 |
|
- `); |
|
136 |
+ </div> ` |
| 123 |
123 |
} |
|
138 |
+ |
| 124 |
124 |
connectedCallback() { |
| 125 |
125 |
this.attachShadow({ mode: 'open' }); |
| 126 |
|
- this.shadowRoot.appendChild(this.resultTemplate.content.cloneNode(true)); |
|
141 |
+ this.shadowRoot.appendChild(this.template.content.cloneNode(true)); |
| 127 |
127 |
} |
| 128 |
128 |
} |
| 129 |
129 |
); |