-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtile.ts
736 lines (637 loc) · 20.9 KB
/
tile.ts
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
import { LitElement, html, nothing } from 'lit';
import {
property,
query,
queryAssignedElements,
state,
} from 'lit/decorators.js';
import { createRef, ref } from 'lit/directives/ref.js';
import { startViewTransition } from '../../animations/player.js';
import { themes } from '../../theming/theming-decorator.js';
import IgcIconButtonComponent from '../button/icon-button.js';
import {
type TileManagerContext,
tileManagerContext,
} from '../common/context.js';
import { createAsyncContext } from '../common/controllers/async-consumer.js';
import {
type DragCallbackParameters,
addDragController,
} from '../common/controllers/drag.js';
import { addFullscreenController } from '../common/controllers/fullscreen.js';
import { registerComponent } from '../common/definitions/register.js';
import type { Constructor } from '../common/mixins/constructor.js';
import { EventEmitterMixin } from '../common/mixins/event-emitter.js';
import {
asNumber,
createCounter,
findElementFromEventPath,
isEmpty,
partNameMap,
} from '../common/util.js';
import IgcDividerComponent from '../divider/divider.js';
import IgcResizeContainerComponent from '../resize-container/resize-container.js';
import type { ResizeCallbackParams } from '../resize-container/types.js';
import type { TileManagerResizeMode } from '../types.js';
import { createTileDragStack, swapTiles } from './position.js';
import { createTileResizeState } from './resize-state.js';
import { styles as shared } from './themes/shared/tile/tile.common.css.js';
import { styles } from './themes/tile.base.css.js';
import { all } from './themes/tile.js';
import { createTileDragGhost, createTileGhost } from './tile-ghost-util.js';
import type IgcTileManagerComponent from './tile-manager.js';
export type IgcTileChangeStateEventArgs = {
tile: IgcTileComponent;
state: boolean;
};
type AdornerType = 'side' | 'corner' | 'bottom';
export interface IgcTileComponentEventMap {
igcTileFullscreen: CustomEvent<IgcTileChangeStateEventArgs>;
igcTileMaximize: CustomEvent<IgcTileChangeStateEventArgs>;
igcTileDragStart: CustomEvent<IgcTileComponent>;
igcTileDragEnd: CustomEvent<IgcTileComponent>;
igcTileDragCancel: CustomEvent<IgcTileComponent>;
igcTileResizeStart: CustomEvent<IgcTileComponent>;
igcTileResizeEnd: CustomEvent<IgcTileComponent>;
igcTileResizeCancel: CustomEvent<IgcTileComponent>;
}
/**
* The tile component is used within the `igc-tile-manager` as a container
* for displaying various types of information.
*
* @element igc-tile
*
* @fires igcTileFullscreen - Fired when tile the fullscreen state changes.
* @fires igcTileMaximize - Fired when tile the maximize state changes.
* @fires igcTileDragStart - Fired when a drag operation on a tile is about to begin. Cancelable.
* @fires igcTileDragEnd - Fired when a drag operation with a tile is successfully completed.
* @fires igcTileDragCancel - Fired when a tile drag operation is canceled by the user.
* @fires igcTileResizeStart - Fired when a resize operation on a tile is about to begin. Cancelable.
* @fires igcTileResizeEnd - Fired when a resize operation on a tile is successfully completed.
* @fires igcTileResizeCancel - Fired when a resize operation on a tile is canceled by the user.
*
* @slot - Default slot for the tile's content.
* @slot title - Renders the title of the tile header.
* @slot maximize-action - Renders the maximize action element of the tile header.
* @slot fullscreen-action - Renders the fullscreen action element of the tile header.
* @slot actions - Renders items after the default actions in the tile header.
* @slot side-adorner - Renders the side resize handle of the tile.
* @slot corner-adorner - Renders the corner resize handle of the tile.
* @slot bottom-adorner - Renders the bottom resize handle of the tile.
*
* @csspart base - The wrapper for the entire tile content, header and content.
* @csspart header - The container for the tile header, including title and actions.
* @csspart title - The title container of the tile.
* @csspart actions - The actions container of the tile header.
* @csspart content-container - The container wrapping the tile’s main content.
* @csspart trigger-side - The part for the side adorner of the encapsulated resize element in the tile.
* @csspart trigger - The part for the corner adorner of the encapsulated resize element in the tile.
* @csspart trigger-bottom - The part for the bottom adorner of the encapsulated resize element in the tile.
*/
@themes(all)
export default class IgcTileComponent extends EventEmitterMixin<
IgcTileComponentEventMap,
Constructor<LitElement>
>(LitElement) {
public static readonly tagName = 'igc-tile';
public static styles = [styles, shared];
/* blazorSuppress */
public static register() {
registerComponent(
IgcTileComponent,
IgcIconButtonComponent,
IgcDividerComponent,
IgcResizeContainerComponent
);
}
private static readonly increment = createCounter();
private _dragController = addDragController(this, {
skip: this._skipDrag,
matchTarget: this._match,
ghost: this._createDragGhost,
start: this._handleDragStart,
over: this._handleDragOver,
end: this._handleDragEnd,
cancel: this._handleDragCancel,
});
private _fullscreenController = addFullscreenController(this, {
enter: this._emitFullScreenEvent,
exit: this._emitFullScreenEvent,
});
private _colSpan = 1;
private _rowSpan = 1;
private _colStart: number | null = null;
private _rowStart: number | null = null;
private _position = -1;
private _resizeState = createTileResizeState();
private _dragStack = createTileDragStack();
private _previousPointerPosition: { x: number; y: number } | null = null;
private _customAdorners = new Map<string, boolean>(
Object.entries({
side: false,
corner: false,
bottom: false,
})
);
// Tile manager context properties and helpers
/**
* Context consumer callback that sets the updated configuration of the internal drag controller
* based on the passed tile manager properties.
*/
private _setDragConfiguration = ({
instance: { dragMode },
}: TileManagerContext) => {
this._dragController.set({
enabled: dragMode !== 'none',
trigger:
dragMode === 'tile-header' ? () => this._headerRef.value! : undefined,
});
};
private _context = createAsyncContext(
this,
tileManagerContext,
this._setDragConfiguration
);
/** Returns the parent tile manager context. */
private get _tileManagerCtx(): TileManagerContext | undefined {
return this._context.value;
}
private get _tileManager(): IgcTileManagerComponent | undefined {
return this._tileManagerCtx?.instance;
}
/** Returns the tile manager internal CSS grid container. */
private get _cssContainer(): HTMLElement {
return this._tileManagerCtx?.grid.value!;
}
/** Returns the tile manager current resize mode. */
private get _resizeMode(): TileManagerResizeMode {
return this._tileManager?.resizeMode ?? 'none';
}
protected _headerRef = createRef<HTMLElement>();
@queryAssignedElements({ slot: 'title' })
private _titleElements!: HTMLElement[];
@queryAssignedElements({ slot: 'actions' })
private _actionsElements!: HTMLElement[];
@query(IgcResizeContainerComponent.tagName)
protected _resizeContainer?: IgcResizeContainerComponent;
@query('[part~="base"]', true)
public _tileContent!: HTMLElement;
@state()
private _maximized = false;
@state()
private _isDragging = false;
@state()
private _isResizing = false;
/** Whether to render the resize container based on tile and tile manager configuration. */
private get _resizeDisabled(): boolean {
return (
this.disableResize ||
this.maximized ||
this.fullscreen ||
this._resizeMode === 'none'
);
}
/**
* The number of columns the tile will span.
*
* @remarks
* When setting a value that is less than 1, it will be
* coerced to 1.
*
* @attr col-span
* @default 1
*/
@property({ type: Number, attribute: 'col-span' })
public set colSpan(value: number) {
this._colSpan = Math.max(1, asNumber(value));
this.style.setProperty('--ig-col-span', this._colSpan.toString());
}
public get colSpan(): number {
return this._colSpan;
}
/**
* The number of rows the tile will span.
*
* @remarks
* When setting a value that is less than 1, it will be
* coerced to 1.
*
* @attr row-span
* @default 1
*/
@property({ type: Number, attribute: 'row-span' })
public set rowSpan(value: number) {
this._rowSpan = Math.max(1, asNumber(value));
this.style.setProperty('--ig-row-span', this._rowSpan.toString());
}
public get rowSpan(): number {
return this._rowSpan;
}
/**
* The starting column for the tile.
*
* @attr col-start
*/
@property({ type: Number, attribute: 'col-start' })
public set colStart(value: number | null) {
this._colStart = Math.max(0, asNumber(value)) || null;
this.style.setProperty(
'--ig-col-start',
this._colStart ? this._colStart.toString() : null
);
}
public get colStart(): number | null {
return this._colStart;
}
/**
* The starting row for the tile.
*
* @attr row-start
*/
@property({ type: Number, attribute: 'row-start' })
public set rowStart(value: number | null) {
this._rowStart = Math.max(0, asNumber(value)) || null;
this.style.setProperty(
'--ig-row-start',
this._rowStart ? this._rowStart.toString() : null
);
}
public get rowStart(): number | null {
return this._rowStart;
}
/**
* Indicates whether the tile occupies the whole screen.
*
* @property
*/
public get fullscreen(): boolean {
return this._fullscreenController.fullscreen;
}
/**
* Indicates whether the tile occupies all available space within the layout.
*
* @attr maximized
*/
@property({ type: Boolean, reflect: true })
public set maximized(value: boolean) {
this._maximized = value;
if (this._tileManagerCtx) {
this._tileManagerCtx.instance.requestUpdate();
}
}
public get maximized(): boolean {
return this._maximized;
}
/**
* Indicates whether to disable tile resize behavior regardless
* ot its tile manager parent settings.
*
* @attr disable-resize
* @default false
*/
@property({ type: Boolean, reflect: true, attribute: 'disable-resize' })
public disableResize = false;
/**
* Whether to disable the rendering of the tile `fullscreen-action` slot and its
* default fullscreen action button.
*
* @attr disable-fullscreen
* @default false
*/
@property({ type: Boolean, reflect: true, attribute: 'disable-fullscreen' })
public disableFullscreen = false;
/**
* Whether to disable the rendering of the tile `maximize-action` slot and its
* default maximize action button.
*
* @attr disable-maximize
* @default false
*/
@property({ type: Boolean, reflect: true, attribute: 'disable-maximize' })
public disableMaximize = false;
/**
* Gets/sets the tile's visual position in the layout.
* Corresponds to the CSS `order` property.
*
* @attr position
*/
@property({ type: Number })
public set position(value: number) {
this._position = asNumber(value);
this.style.order = this._position.toString();
}
public get position(): number {
return this._position;
}
/** @internal */
public override connectedCallback(): void {
super.connectedCallback();
this.id = this.id || `tile-${IgcTileComponent.increment()}`;
this.style.viewTransitionName =
this.style.viewTransitionName || `tile-transition-${this.id}`;
}
protected override createRenderRoot() {
const root = super.createRenderRoot();
root.addEventListener('slotchange', () => this.requestUpdate());
return root;
}
private _setDragState(state = true) {
this._isDragging = state;
this._tileContent.style.opacity = state ? '0' : '';
this.style.pointerEvents = state ? 'none' : '';
this.part.toggle('dragging', state);
}
private _handleDragStart() {
if (!this._emitTileDragStart()) {
return false;
}
this._setDragState();
this._dragStack.push(this);
return true;
}
private _handleDragOver(parameters: DragCallbackParameters) {
const match = parameters.state.element as IgcTileComponent;
const { clientX, clientY } = parameters.event;
const { left, top, width, height } = match.getBoundingClientRect();
const relativeX = (clientX - left) / width;
const relativeY = (clientY - top) / height;
if (this._previousPointerPosition) {
const deltaX = clientX - this._previousPointerPosition.x;
const deltaY = clientY - this._previousPointerPosition.y;
const movingRight = deltaX > 0;
const movingLeft = deltaX < 0;
const movingDown = deltaY > 0;
const movingUp = deltaY < 0;
const isHorizontalMove = Math.abs(deltaX) > Math.abs(deltaY);
const isVerticalMove = Math.abs(deltaY) > Math.abs(deltaX);
const shouldSwap =
(this.position < match.position &&
isHorizontalMove &&
movingRight &&
relativeX > 0.75) ||
(this.position > match.position &&
isHorizontalMove &&
movingLeft &&
relativeX < 0.25) ||
(this.position < match.position &&
isVerticalMove &&
movingDown &&
relativeY > 0.75) ||
(this.position > match.position &&
isVerticalMove &&
movingUp &&
relativeY < 0.25);
if (shouldSwap) {
this._dragStack.pop();
this._dragStack.push(match);
startViewTransition(() => {
swapTiles(this, match);
});
}
}
this._previousPointerPosition = { x: clientX, y: clientY };
if (this._dragStack.peek() !== match) {
this._dragStack.push(match);
startViewTransition(() => {
swapTiles(this, match);
});
}
}
private _handleDragCancel() {
startViewTransition(() => {
this._dragStack.restore();
this._dragStack.reset();
});
this._dragController.dispose();
this._setDragState(false);
this.emitEvent('igcTileDragCancel', { detail: this });
}
private _handleDragEnd() {
this._setDragState(false);
this._dragStack.reset();
this.emitEvent('igcTileDragEnd', { detail: this });
}
private _skipDrag(event: PointerEvent): boolean {
if (this._maximized || this.fullscreen) {
return true;
}
return Boolean(
findElementFromEventPath(
(e) => e.matches('[part*=trigger]') || e.matches('#tile-actions'),
event
)
);
}
private _match(element: Element): element is IgcTileComponent {
return element !== this && IgcTileComponent.tagName === element.localName;
}
private _createDragGhost(): IgcTileComponent {
return createTileDragGhost(this);
}
private _createResizeGhost = (): HTMLElement => {
return createTileGhost(this);
};
private _setResizeState(state = true) {
this._isResizing = state;
this.style.zIndex = state ? '1' : '';
this.part.toggle('resizing', state);
}
private _handleResizeStart(event: CustomEvent<ResizeCallbackParams>) {
if (!this._emitTileResizeStart()) {
event.preventDefault();
return;
}
this._resizeState.updateState(
event.detail.state.initial,
this,
this._cssContainer
);
this._setResizeState();
}
private _handleResize({
detail: { state },
}: CustomEvent<ResizeCallbackParams>) {
const trigger = state.trigger!;
const isWidthResize = trigger.matches('[part*="side"], [part="trigger"]');
const isHeightResize = trigger.matches(
'[part*="bottom"], [part="trigger"]'
);
if (isWidthResize) {
state.current.width = this._resizeState.calculateSnappedWidth(state);
}
if (isHeightResize) {
state.current.height = this._resizeState.calculateSnappedHeight(state);
}
}
private _handleResizeEnd({
detail: { state },
}: CustomEvent<ResizeCallbackParams>) {
const { colSpan, rowSpan } = this._resizeState.calculateResizedGridPosition(
state.current
);
state.commit = async () => {
await startViewTransition(() => {
this.colSpan = colSpan;
this.rowSpan = rowSpan;
}).transition?.updateCallbackDone;
this._setResizeState(false);
this.emitEvent('igcTileResizeEnd', { detail: this });
};
}
private _handleResizeCancel() {
this._setResizeState(false);
this.emitEvent('igcTileResizeCancel', { detail: this });
}
private _handleFullscreen() {
this._fullscreenController.setState(!this.fullscreen);
}
private _handleMaximize() {
if (!this._emitMaximizedEvent()) {
return;
}
this.maximized = !this.maximized;
}
private _emitFullScreenEvent(state: boolean) {
this.requestUpdate();
return this.emitEvent('igcTileFullscreen', {
detail: { tile: this, state },
cancelable: true,
});
}
private _emitMaximizedEvent() {
return this.emitEvent('igcTileMaximize', {
detail: { tile: this, state: !this.maximized },
cancelable: true,
});
}
private _emitTileDragStart() {
return this.emitEvent('igcTileDragStart', {
detail: this,
cancelable: true,
});
}
private _emitTileResizeStart() {
return this.emitEvent('igcTileResizeStart', {
detail: this,
cancelable: true,
});
}
protected _renderDefaultAction(type: 'maximize' | 'fullscreen') {
const [icon, listener] =
type === 'fullscreen'
? [
this.fullscreen ? 'fullscreen_exit' : 'fullscreen',
this._handleFullscreen,
]
: [
this._maximized ? 'collapse_content' : 'expand_content',
this._handleMaximize,
];
return html`
<igc-icon-button
variant="flat"
collection="default"
exportparts="icon"
name=${icon}
aria-label=${icon}
@click=${listener}
></igc-icon-button>
`;
}
protected _renderHeader() {
const hideHeader =
isEmpty(this._titleElements) &&
isEmpty(this._actionsElements) &&
this.disableMaximize &&
this.disableFullscreen;
const hasMaximizeSlot = !(this.disableMaximize || this.fullscreen);
const hasFullscreenSlot = !this.disableFullscreen;
return html`
<section part="header" ?hidden=${hideHeader} ${ref(this._headerRef)}>
<header part="title">
<slot name="title"></slot>
</header>
<section id="tile-actions" part="actions">
${hasMaximizeSlot
? html`
<slot name="maximize-action">
${this._renderDefaultAction('maximize')}
</slot>
`
: nothing}
${hasFullscreenSlot
? html`
<slot name="fullscreen-action">
${this._renderDefaultAction('fullscreen')}
</slot>
`
: nothing}
<slot name="actions"></slot>
</section>
</section>
<igc-divider></igc-divider>
`;
}
protected _renderContent() {
const parts = partNameMap({
base: true,
draggable: this._tileManager?.dragMode !== 'none',
fullscreen: this.fullscreen,
dragging: this._isDragging,
resizable:
!this.disableResize && this._tileManager?.resizeMode !== 'none',
resizing: this._isResizing,
maximized: this.maximized,
});
return html`
<div part=${parts}>
${this._renderHeader()}
<div part="content-container">
<slot></slot>
</div>
</div>
`;
}
private _renderAdornerSlot(name: AdornerType) {
return html`
<slot
@slotchange=${() => this._customAdorners.set(name, true)}
name="${name}-adorner"
slot="${name}-adorner"
>
</slot>
`;
}
protected override render() {
const isActive = this._resizeMode === 'always';
return this._resizeDisabled
? this._renderContent()
: html`
<igc-resize
part=${partNameMap({
resize: true,
'side-adorner': this._customAdorners.get('side')!,
'corner-adorner': this._customAdorners.get('corner')!,
'bottom-adorner': this._customAdorners.get('bottom')!,
})}
exportparts="trigger-side, trigger, trigger-bottom"
mode="deferred"
?active=${isActive}
.ghostFactory=${this._createResizeGhost}
@igcResizeStart=${this._handleResizeStart}
@igcResize=${this._handleResize}
@igcResizeEnd=${this._handleResizeEnd}
@igcResizeCancel=${this._handleResizeCancel}
>
${this._renderContent()} ${this._renderAdornerSlot('side')}
${this._renderAdornerSlot('corner')}
${this._renderAdornerSlot('bottom')}
</igc-resize>
`;
}
}
declare global {
interface HTMLElementTagNameMap {
'igc-tile': IgcTileComponent;
}
}