-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathset-deck.js
57 lines (50 loc) · 1.18 KB
/
set-deck.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
import { html, render } from 'lit-html';
import './set-card';
import { generateDeck } from './helpers';
class SetDeck extends HTMLElement {
set cards(value) {
this._cards = value;
this.update();
}
get cards() {
return this._cards;
}
constructor() {
super();
this.attachShadow({ mode: 'open' });
this.cards = generateDeck();
}
connectedCallback() {
this.update();
}
update() {
render(this.renderShadowDom(), this.shadowRoot);
}
renderShadowDom() {
return html`
<style>
:host {
background: #158ef5;
color: #fff;
width: 130px;
height: 200px;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: #eeeeee 2px 3px 6px 1px;
display: flex;
align-content: center;
flex-direction: column;
justify-content: space-evenly;
padding: 30px 15px;
box-sizing: border-box;
margin: 20px;
text-align: center;
font-size: 30px;
cursor: pointer;
}
</style>
<strong>${this.cards.length}</strong>
`;
}
}
window.customElements.define('set-deck', SetDeck);