-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgrid-container.js
123 lines (105 loc) · 3 KB
/
grid-container.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
class GridElement extends HTMLElement {
setMediaQueries(attrName, val) {
let mediaQueryStyleNode = this.shadowRoot.querySelector(`#mq-${attrName}`);
if (mediaQueryStyleNode) {
mediaQueryStyleNode.innerHTML = '';
} else {
mediaQueryStyleNode = document.createElement('style');
mediaQueryStyleNode.id = `mq-${attrName}`;
const slot = this.shadowRoot.querySelector('slot');
this.shadowRoot.insertBefore(mediaQueryStyleNode, slot);
}
val = val.split(';');
for (const valElem of val) {
if (valElem.includes('@')) {
const valElemSplit = valElem.split('@');
const propertyVal = valElemSplit[0];
const query = valElemSplit[1];
let propertyName = `grid-${attrName}`;
if (attrName === 'grid') {
propertyName = 'grid';
}
if (attrName === 'gutter') {
propertyName = 'grid-gap';
}
if (attrName === 'areas') {
propertyName = 'grid-template-areas';
}
mediaQueryStyleNode.innerHTML += `@media ${query} {
:host([${attrName}]) {
${propertyName}: ${propertyVal};
}
}`;
} else {
this.style.setProperty(`--${attrName}`, valElem);
}
}
}
}
class GridContainer extends GridElement {
constructor() {
super();
const shadowRoot = this.attachShadow({ mode: 'open' });
shadowRoot.innerHTML = `<style>
:host {
display: grid;
grid-auto-rows: 1fr;
grid-auto-columns: 1fr;
}
:host([grid]) {
grid: var(--grid);
}
:host([areas]) {
grid-template-areas: var(--areas);
}
:host([gutter]) {
grid-gap: var(--gutter, 10px);
}
</style>
<slot></slot>`;
}
static get observedAttributes() {
return ['gutter', 'areas', 'grid'];
}
attributeChangedCallback(name, oldVal, newVal) {
// removes last semicolon
newVal = newVal.replace(/;([\s]+)?$/, '');
if (newVal.includes(';')) {
this.setMediaQueries(name, newVal);
} else {
this.style.setProperty(`--${name}`, newVal);
}
}
}
customElements.define('grid-container', GridContainer);
class GridItem extends GridElement {
constructor() {
super();
const shadowRoot = this.attachShadow({ mode: 'open' });
shadowRoot.innerHTML = `<style>
:host([area]) {
grid-area: var(--area);
}
:host([row]) {
grid-row: var(--row);
}
:host([column]) {
grid-column: var(--column);
}
</style>
<slot></slot>`;
}
static get observedAttributes() {
return ['area', 'row', 'column'];
}
attributeChangedCallback(name, oldVal, newVal) {
// removes last semicolon
newVal = newVal.replace(/;([\s]+)?$/, '');
if (newVal.includes(';')) {
this.setMediaQueries(name, newVal);
} else {
this.style.setProperty(`--${name}`, newVal);
}
}
}
customElements.define('grid-item', GridItem);