-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserCard.js
80 lines (73 loc) · 1.94 KB
/
userCard.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
class UserCardOne extends HTMLElement {
constructor() {
super();
this.innerHTML = `some text && ${this.getAttribute("name")}`;
}
}
window.customElements.define("user-card-one", UserCardOne);
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='mobile' /></p>
</div>
<button id='toggle-info'>Toggle Info</button>
</div>
</div>
`;
class UserCardTwo 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");
}
toggleInfo() {
this.showInfo = !this.showInfo;
const info = this.shadowRoot.querySelector(".info");
const btn = this.shadowRoot.querySelector("#toggle-info");
if (this.showInfo) {
info.style.display = "block";
btn.innerText = "Hide Info";
} else {
info.style.display = "none";
btn.innerText = "Show Info";
}
}
connectedCallback() {
this.shadowRoot
.querySelector("#toggle-info")
.addEventListener("click", () => this.toggleInfo());
}
disconnectedCallback() {
this.shadowRoot.querySelector("#toggle-info").removeEventListener("click");
}
}
window.customElements.define("user-card-two", UserCardTwo);