-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoverLayout.js
153 lines (124 loc) · 3.92 KB
/
CoverLayout.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
customElements.define(
'cover-layout',
class extends HTMLElement {
constructor() {
super()
this.attachShadow({ mode: 'open' })
}
render() {
// prettier-ignore
this.shadowRoot.innerHTML = `
<style>
:host {
display: flex;
flex-direction: column;
min-block-size: ${this.minHeight};
min-height: ${this.minHeight};
padding: ${this.noPad ? '0' : this.space };
}
::slotted(:firstChild) {
margin-block-start: 0;
}
::slotted(:lastChild) {
margin-block-end: 0;
}
::slotted(:nth-Child(2)) {
margin-block: auto;
}
</style>
<slot></slot>
`
// console.log('cover:', this.shadowRoot.innerHTML)
// console.log('children:', this.childElementCount)
}
connectedCallback() {
this.render()
}
attributeChangedCallback() {
this.render()
}
static get observedAttributes() {
return ['centered', 'space', 'minHeight', 'noPad']
}
get centered() {
return this.getAttribute('centered') || 'h1'
}
set centered(val) {
return this.setAttribute('centered', val)
}
get space() {
return this.getAttribute('space') || 'var(--s1)'
}
set space(val) {
return this.setAttribute('space', val)
}
get minHeight() {
return this.getAttribute('minHeight') || '100vh'
}
set minHeight(val) {
return this.setAttribute('minHeight', val)
}
get noPad() {
return this.hasAttribute('noPad')
}
set noPad(val) {
if (val) {
return this.setAttribute('noPad', '')
} else {
return this.removeAttribute('noPad')
}
}
}
)
/*
::slotted(*) {
margin-block: ${this.space};
}
cover-l {
display: flex;
flex-direction: column;
min-block-size: 100vh;
padding: var(--s1);
}
styleEl.innerHTML = `
[data-i="${this.i}"] {
min-height: ${this.minHeight};
padding: ${!this.noPad ? this.space : '0'};
}
[data-i="${this.i}"] > * {
margin-block: ${this.space};
}
[data-i="${this.i}"] > :first-child:not(${this.centered}) {
margin-block-start: 0;
}
[data-i="${this.i}"] > :last-child:not(${this.centered}) {
margin-block-end: 0;
}
[data-i="${this.i}"] > ${this.centered} {
margin-block: auto;
}
`
<style>
:host {
display: flex;
flex-direction: column;
min-block-size: 100vh;
min-height: ${this.minHeight};
padding: ${!this.noPad ? this.space : '0'};
}
::slotted(*) {
margin-block: ${this.space};
}
::slotted(:firstChild:not(${this.centered}) ) {
margin-block-start: 0;
}
::slotted(:lastChild:not(${this.centered}) ) {
margin-block-end: 0;
}
::slotted((${this.centered}) ) {
margin-block-end: auto;
}
</style>
<slot></slot>
`
*/