Skip to content

Commit cc2f089

Browse files
committed
refactor(playground): use native custom component
1 parent cee27ec commit cc2f089

File tree

2 files changed

+43
-53
lines changed

2 files changed

+43
-53
lines changed

playground/index.html

Lines changed: 2 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -73,59 +73,8 @@ <h1 class="text-5xl font-bold text-transparent bg-clip-text bg-gradient-to-r fro
7373
</header>
7474

7575
<main class="flex flex-col gap-10 mt-10">
76-
<div class="p-5 bg-white shadow-2xl rounded-xl">
77-
<h3 class="font-bold">Default</h3>
78-
79-
<div class="p-4 mt-5 rounded-lg bg-gray-50">
80-
<div class="w-full overflow-auto max-h-48">
81-
82-
<div class="space-y-10">
83-
<p>
84-
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
85-
Lorem Ipsum has been the industry's standard dummy text ever since the
86-
1500s, when an unknown printer took a galley of type and scrambled it to
87-
make a type specimen book. It has survived not only five centuries, but
88-
also the leap into electronic typesetting, remaining essentially
89-
unchanged.
90-
</p>
91-
92-
<p class="inline-block w-screen h-screen">
93-
It was popularised in the 1960s with the release of Letraset sheets
94-
containing Lorem Ipsum passages, and more recently with desktop publishing
95-
software like Aldus PageMaker including versions of Lorem Ipsum.
96-
</p>
97-
</div>
98-
99-
</div>
100-
</div>
101-
</div>
102-
103-
<div class="p-5 bg-white shadow-2xl rounded-xl">
104-
<h3 class="font-bold">scrollbar-hide</h3>
105-
106-
<div class="p-4 mt-5 rounded-lg bg-gray-50">
107-
<div class="w-full overflow-auto max-h-48 scrollbar-hide">
108-
109-
<div class="space-y-10">
110-
<p>
111-
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
112-
Lorem Ipsum has been the industry's standard dummy text ever since the
113-
1500s, when an unknown printer took a galley of type and scrambled it to
114-
make a type specimen book. It has survived not only five centuries, but
115-
also the leap into electronic typesetting, remaining essentially
116-
unchanged.
117-
</p>
118-
119-
<p class="inline-block w-screen h-screen">
120-
It was popularised in the 1960s with the release of Letraset sheets
121-
containing Lorem Ipsum passages, and more recently with desktop publishing
122-
software like Aldus PageMaker including versions of Lorem Ipsum.
123-
</p>
124-
</div>
125-
126-
</div>
127-
</div>
128-
</div>
76+
<lorem-block title="Default"></lorem-block>
77+
<lorem-block title="scrollbar-hide" scroll-hide></lorem-block>
12978
</main>
13079

13180

playground/src/main.ts

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,42 @@
11
import './style.css'
2+
3+
class LoremBlock extends HTMLElement {
4+
constructor() {
5+
super()
6+
}
7+
8+
connectedCallback() {
9+
this.innerHTML = /*html*/ `
10+
<div class="p-5 bg-white shadow-2xl rounded-xl">
11+
<h3 class="font-bold">${this.title}</h3>
12+
13+
<div class="p-4 mt-5 rounded-lg bg-gray-50">
14+
<div class="w-full overflow-auto max-h-48 ${
15+
this.hasAttribute('scroll-hide') ? 'scrollbar-hide' : ''
16+
}">
17+
18+
<div class="space-y-10">
19+
<p>
20+
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
21+
Lorem Ipsum has been the industry's standard dummy text ever since the
22+
1500s, when an unknown printer took a galley of type and scrambled it to
23+
make a type specimen book. It has survived not only five centuries, but
24+
also the leap into electronic typesetting, remaining essentially
25+
unchanged.
26+
</p>
27+
28+
<p class="inline-block w-screen h-screen">
29+
It was popularised in the 1960s with the release of Letraset sheets
30+
containing Lorem Ipsum passages, and more recently with desktop publishing
31+
software like Aldus PageMaker including versions of Lorem Ipsum.
32+
</p>
33+
</div>
34+
35+
</div>
36+
</div>
37+
</div>
38+
`
39+
}
40+
}
41+
42+
customElements.define('lorem-block', LoremBlock)

0 commit comments

Comments
 (0)