-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmore-less.js
369 lines (311 loc) · 10.7 KB
/
more-less.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
import '../button/button-subtle.js';
import { css, html, LitElement } from 'lit';
import { getComposedChildren, isComposedAncestor } from '../../helpers/dom.js';
import { classMap } from 'lit/directives/class-map.js';
import { getComposedActiveElement } from '../../helpers/focus.js';
import { getUniqueId } from '../../helpers/uniqueId.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
import ResizeObserver from 'resize-observer-polyfill/dist/ResizeObserver.es.js';
import { styleMap } from 'lit/directives/style-map.js';
const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
const transitionDur = matchMedia('(prefers-reduced-motion: reduce)').matches ? 0 : 400;
/**
* A component used to minimize the display of long content, while providing a way to reveal the full content.
* @slot - Default content placed inside of the component
*/
class MoreLess extends LocalizeCoreElement(LitElement) {
static get properties() {
return {
/**
* Indicates whether element is in "more" state
* @type {boolean}
*/
expanded: { type: Boolean, reflect: true },
/**
* The h-align property of the more-less button
* @type {'text'|''}
*/
hAlign: { type: String, attribute: 'h-align' },
/**
* The maximum height of the content when in "less" state
* @type {string}
*/
height: { type: String },
/**
* Whether the component is active or inactive
* @type {boolean}
*/
inactive: { type: Boolean, reflect: true },
__maxHeight: { state: true },
__transitionAdded: { state: true }
};
}
static get styles() {
return css`
:host {
display: block;
}
.d2l-more-less-content {
overflow: hidden;
}
.d2l-more-less-transition {
transition: max-height ${transitionDur}ms cubic-bezier(0, 0.7, 0.5, 1);
}
:host(:not([expanded]):not([inactive])) .d2l-more-less-content {
-webkit-mask-image: linear-gradient(to top, transparent, #000000 1em);
mask-image: linear-gradient(to top, transparent, #000000 1em);
}
:host([inactive]) .d2l-more-less-toggle {
display: none;
}
@media (prefers-reduced-motion: reduce) {
.d2l-more-less-transition {
transition: none;
}
}
`;
}
constructor() {
super();
this.expanded = false;
this.height = '4em';
this.inactive = false;
this.__transitionAdded = false;
this.__maxHeight = this.height;
this.__baseHeight = 0;
this.__contentId = getUniqueId();
this.__resizeObserver = null;
this.__content = null;
this.__contentSlot = null;
this.__autoExpanded = false;
this.__shift = false;
this.__bound_reactToChanges = null;
this.__bound_reactToMutationChanges = null;
this.__bound_transitionEvents = null;
}
disconnectedCallback() {
super.disconnectedCallback();
if (this.__resizeObserver) {
this.__resizeObserver.disconnect();
this.__resizeObserver = null;
}
if (this.__mutationObserver) {
this.__mutationObserver.disconnect();
this.__mutationObserver = null;
}
this.__content && this.__content.removeEventListener('load', this.__bound_reactToChanges, true);
this.__bound_reactToChanges = null;
this.__bound_reactToMutationChanges = null;
if (this.__contentSlot) {
this.__contentSlot.removeEventListener('slotchange', this.__reactToChanges.bind(this));
this.__contentSlot.removeEventListener('slotchange', this.__startObserving.bind(this));
}
this.__content && this.__content.removeEventListener('focusin', this.__focusIn.bind(this));
this.__content && this.__content.removeEventListener('focusout', this.__focusOut.bind(this));
this.shadowRoot.removeEventListener('transitionstart', this.__bound_transitionEvents);
this.shadowRoot.removeEventListener('transitionend', this.__bound_transitionEvents);
this.shadowRoot.removeEventListener('transitioncancel', this.__bound_transitionEvents);
this.shadowRoot.removeEventListener('transitionrun', this.__bound_transitionEvents);
}
firstUpdated() {
super.firstUpdated();
this.__content = this.shadowRoot.querySelector('.d2l-more-less-content');
this.__contentSlot = this.shadowRoot.querySelector('.d2l-more-less-content slot');
this.__init_setupListeners();
this.__bound_transitionEvents = this.__transitionEvents.bind(this);
this.shadowRoot.addEventListener('transitionstart', this.__bound_transitionEvents);
this.shadowRoot.addEventListener('transitionend', this.__bound_transitionEvents);
this.shadowRoot.addEventListener('transitioncancel', this.__bound_transitionEvents);
this.shadowRoot.addEventListener('transitionrun', this.__bound_transitionEvents);
}
render() {
const contentClasses = {
'd2l-more-less-content': true,
'd2l-more-less-transition': this.__transitionAdded
};
return html`
<div id="${this.__contentId}" class=${classMap(contentClasses)} style=${styleMap({ maxHeight: `${this.__maxHeight}` })}>
<slot></slot>
</div>
<d2l-button-subtle
class="d2l-more-less-toggle"
icon="${this.__computeIcon()}"
aria-controls="${this.__contentId}"
aria-expanded="${this.__computeAriaExpanded()}"
@click="${this.__toggleOnClick}"
text="${this.__computeText()}"
h-align="${ifDefined(this.hAlign)}">
</d2l-button-subtle>
`;
}
__adjustToContent() {
if (this.__baseHeight === 0) {
this.__init_setBaseHeight();
return;
}
const contentHeight = this.__content.scrollHeight;
const currentHeight = this.__content.offsetHeight;
if (contentHeight <= this.__baseHeight) {
if (!this.inactive) {
this.__adjustToContent_makeInactive();
}
return;
}
if (this.expanded && contentHeight !== currentHeight) {
this.__adjustToContent_resize.bind(this, contentHeight)();
return;
}
if (this.inactive) {
this.__adjustToContent_makeActive();
}
}
__adjustToContent_makeActive() {
this.inactive = false;
this.__maxHeight = this.height;
}
__adjustToContent_makeInactive() {
this.inactive = true;
this.expanded = false;
// Include 1px of given room to account for issues with Firefox rounding the content's scroll height
this.__maxHeight = `${this.__content.scrollHeight + 1}px`;
}
__adjustToContent_resize(contentHeight) {
// Include 1px of given room to account for issues with Firefox rounding the content's scroll height
this.__maxHeight = `${contentHeight + 1}px`;
}
__computeAriaExpanded() {
return this.expanded ? 'true' : 'false';
}
__computeIcon() {
return this.expanded ? 'tier1:chevron-up' : 'tier1:chevron-down';
}
__computeText() {
return this.localize(this.expanded ? 'components.more-less.less' : 'components.more-less.more');
}
__expand() {
this.__transitionAdded = true;
this.__maxHeight = `${this.__content.scrollHeight}px`;
this.expanded = true;
}
async __focusIn(e) {
if (this.inactive || this.expanded) {
return;
}
const target = e.composedPath()[0] || e.target;
if (isSafari) {
target.scrollIntoViewIfNeeded?.();
setTimeout(() => this.__content.scrollTo({ top: 0, behavior: 'instant' }), 1);
}
if (this.__content.scrollTop) {
this.__content.scrollTo({ top: 0, behavior: 'instant' });
this.__expand();
this.__autoExpanded = true;
await (transitionDur && new Promise(r => setTimeout(r, transitionDur)));
if (target.getRootNode().activeElement === target) {
target.scrollIntoView({ block: 'center', inline: 'center', behavior: 'instant' });
}
}
}
async __focusOut({ relatedTarget }) {
if (this.inactive
|| !this.__autoExpanded
|| isComposedAncestor(this.__content, relatedTarget)
) {
return;
}
this.__shrink();
this.__autoExpanded = false;
relatedTarget && await new Promise(r => relatedTarget.addEventListener('focus', r, { once: true }));
const target = getComposedActiveElement();
await (transitionDur && new Promise(r => setTimeout(r, transitionDur)));
const activeElement = getComposedActiveElement();
if (target === activeElement) {
target.scrollIntoView({ block: 'center', inline: 'center', behavior: 'instant' });
}
}
__init_measureBaseHeight() {
this.__baseHeight = this.__content.offsetHeight;
this.__adjustToContent();
// react to images and whatnot loading
this.__bound_reactToChanges = this.__bound_reactToChanges || this.__reactToChanges.bind(this);
this.__content.addEventListener('load', this.__bound_reactToChanges, true);
}
__init_setBaseHeight() {
this.__maxHeight = this.height;
requestAnimationFrame(() => {
this.__init_measureBaseHeight();
});
}
__init_setupListeners() {
this.__startObserving();
if (this.__contentSlot) {
this.__contentSlot.addEventListener('slotchange', this.__reactToChanges.bind(this));
this.__contentSlot.addEventListener('slotchange', this.__startObserving.bind(this));
}
this.__content.addEventListener('focusin', this.__focusIn.bind(this));
this.__content.addEventListener('focusout', this.__focusOut.bind(this));
}
__isOwnMutation(mutation) {
return mutation.target === this.__content
&& (mutation.type === 'style' || mutation.type === 'attributes');
}
__reactToChanges() {
this.__transitionAdded = true;
this.__adjustToContent();
}
__reactToMutationChanges(mutations) {
if (mutations
&& Array.isArray(mutations)
&& mutations.every(this.__isOwnMutation.bind(this))
) {
return;
}
this.__reactToChanges();
}
__shrink() {
this.__transitionAdded = true;
this.__maxHeight = this.height;
this.expanded = false;
this.__content.scrollTo({ top: 0, behavior: 'instant' });
}
__startObserving() {
this.__bound_reactToChanges = this.__bound_reactToChanges || this.__reactToChanges.bind(this);
this.__bound_reactToMutationChanges = this.__bound_reactToMutationChanges || this.__reactToMutationChanges.bind(this);
this.__resizeObserver = this.__resizeObserver || new ResizeObserver(this.__bound_reactToChanges);
this.__resizeObserver.disconnect();
this.__mutationObserver = this.__mutationObserver || new MutationObserver(this.__bound_reactToMutationChanges);
this.__mutationObserver.disconnect();
if (this.__contentSlot) {
const children = getComposedChildren(this.__contentSlot);
for (let i = 0; i < children.length; ++i) {
this.__resizeObserver.observe(children[i]);
this.__mutationObserver.observe(children[i], {
childList: true,
subtree: true,
characterData: true,
attributes: true
});
}
}
this.__resizeObserver.observe(this.__content);
this.__mutationObserver.observe(this.__content, {
childList: true,
subtree: true,
characterData: true,
attributes: true
});
}
__toggleOnClick() {
if (this.expanded) {
this.__shrink();
} else {
this.__expand();
}
this.__autoExpanded = false;
}
__transitionEvents(e) {
this.dispatchEvent(new CustomEvent(e.type, { bubbles: true, composed: true, detail: e.detail }));
}
}
customElements.define('d2l-more-less', MoreLess);