-
Notifications
You must be signed in to change notification settings - Fork 0
/
useCard.js
82 lines (71 loc) · 1.88 KB
/
useCard.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const template = document.createElement("template");
template.innerHTML = `
<style>
.user-card {
font-family: 'Arial', sans-serif;
background: #f4f4f4;
width: 500px;
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 10px;
margin-bottom: 15px;
border-bottom: darkorchid 5px solid;
}
.user-card img {
width: 100%;
}
.user-card button {
cursor: pointer;
background: darkorchid;
color: #fff;
border: 0;
border-radius: 5px;
padding: 5px 10px;
}
</style>
<div class="user-card">
<img />
<div>
<h3></h3>
<div class="info">
<p><slot name="email" /></p>
<p><slot name="phone" /></p>
</div>
<button id="toggle-info">Hide Info</button>
</div>
</div>
`;
class UserCard extends HTMLElement {
constructor() {
super();
this.showInfo = true;
this.attachShadow({ mode: "open" });
this.shadowRoot.appendChild(template.content.cloneNode(true));
this.shadowRoot.querySelector("h3").innerText = this.getAttribute("name");
this.shadowRoot.querySelector("img").src = this.getAttribute("avatar");
// this.shadowRoot.querySelector("slot");
}
toggleInfo() {
console.log(`this.showInfo`, this.showInfo);
this.showInfo = !this.showInfo;
const info = this.shadowRoot.querySelector(".info");
const toggleBtn = this.shadowRoot.querySelector("#toggle-info");
if (this.showInfo) {
info.style.display = "block";
toggleBtn.innerText = "Hide Info";
} else {
info.style.display = "none";
toggleBtn.innerText = "Show Info";
}
console.log(`neeche`, this.showInfo);
}
connectedCallback() {
this.shadowRoot
.getElementById("toggle-info")
.addEventListener("click", () => this.toggleInfo());
}
disconnectedCallback() {
this.shadowRoot.querySelector("#toggle-info").removeEventListener();
}
}
window.customElements.define("user-card", UserCard);