-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.gts
659 lines (593 loc) · 20.5 KB
/
index.gts
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
import { registerDestructor } from '@ember/destroyable';
import { action } from '@ember/object';
import { next } from '@ember/runloop';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import type { WithBoundArgs } from '@glint/template';
import { nodeFor } from 'ember-ref-bucket';
import didResizeModifier from 'ember-resize-modifier/modifiers/did-resize';
import { TrackedMap } from 'tracked-built-ins';
import type { PanelContext } from './panel.gts';
import ResizablePanel from './panel.gts';
import ResizeHandle from './resize-handler.gts';
export { default as ResizablePanel } from './panel.gts';
export { default as ResizeHandle } from './resize-handler.gts';
function sumArray(array: number[]) {
return array.reduce((partialSum, a) => partialSum + a, 0);
}
const resizablePanelElIdPrefix = 'resizable-panel';
const ResizeHandleElIdPrefix = 'resize-handler';
interface Signature {
Args: {
onListPanelContextChange?: (listPanelContext: PanelContext[]) => void;
orientation: 'horizontal' | 'vertical';
reverseCollapse?: boolean;
};
Blocks: {
default: [
WithBoundArgs<
typeof ResizablePanel,
| 'isLastPanel'
| 'orientation'
| 'panelContext'
| 'panelGroupComponent'
| 'registerPanel'
| 'unregisterPanel'
| 'resizablePanelElId'
>,
WithBoundArgs<
typeof ResizeHandle,
| 'hideHandle'
| 'isLastPanel'
| 'onResizeHandleMouseDown'
| 'onResizeHandleDblClick'
| 'orientation'
| 'panelContext'
| 'panelGroupComponent'
| 'registerResizeHandle'
| 'unRegisterResizeHandle'
| 'resizeHandleElId'
| 'reverseHandlerArrow'
>,
];
};
Element: HTMLDivElement;
}
export default class ResizablePanelGroup extends Component<Signature> {
<template>
<div
class='boxel-panel-group {{@orientation}}'
{{didResizeModifier this.onContainerResize}}
...attributes
>
{{#if this.panelGroupElement}}
{{yield
(component
ResizablePanel
orientation=@orientation
registerPanel=this.registerPanel
unregisterPanel=this.unregisterPanel
panelContext=this.panelContext
isLastPanel=this.isLastPanel
panelGroupComponent=this
resizablePanelElId=this.panelElId
)
(component
ResizeHandle
orientation=@orientation
registerResizeHandle=this.registerResizeHandle
unRegisterResizeHandle=this.unRegisterResizeHandle
panelContext=this.panelContext
isLastPanel=this.isLastPanel
onResizeHandleMouseDown=this.onResizeHandleMouseDown
onResizeHandleDblClick=this.onResizeHandleDblClick
reverseHandlerArrow=@reverseCollapse
hideHandle=this.hideHandles
panelGroupComponent=this
resizeHandleElId=this.ResizeHandleElId
)
}}
{{/if}}
</div>
<style>
.boxel-panel-group {
display: flex;
flex-shrink: 0;
height: 100%;
}
.horizontal {
flex-direction: row;
}
.vertical {
flex-direction: column;
}
</style>
</template>
constructor(args: any, owner: any) {
super(args, owner);
document.addEventListener('mouseup', this.onResizeHandleMouseUp);
document.addEventListener('mousemove', this.onResizeHandleMouseMove);
registerDestructor(this, () => {
document.removeEventListener('mouseup', this.onResizeHandleMouseUp);
document.removeEventListener('mousedown', this.onResizeHandleMouseMove);
});
}
@tracked private panelGroupElement: HTMLDivElement | undefined;
private get isHorizontal() {
return this.args.orientation === 'horizontal';
}
private get clientPositionProperty() {
return this.isHorizontal ? 'clientX' : 'clientY';
}
private get clientLengthProperty() {
return this.isHorizontal ? 'clientWidth' : 'clientHeight';
}
private get offsetLengthProperty() {
return this.isHorizontal ? 'offsetWidth' : 'offsetHeight';
}
private get perpendicularLengthProperty() {
return this.isHorizontal ? 'clientHeight' : 'clientWidth';
}
private get panelGroupLengthPx() {
return this.panelGroupElement?.[this.offsetLengthProperty];
}
private get panelGroupLengthWithoutResizeHandlePx() {
let ResizeHandleSelector = `${ResizeHandleElIdPrefix}-${this.args.orientation}-0`;
let ResizeHandleEl = this.getHtmlElement(ResizeHandleSelector);
let resizeHandleContainer = (ResizeHandleEl as HTMLElement)?.parentElement;
let ResizeHandleLength = resizeHandleContainer
? resizeHandleContainer[this.offsetLengthProperty]
: 0;
let panelGroupElement = this.panelGroupElement;
if (panelGroupElement === undefined) {
console.warn('Expected panelGroupElement to be defined');
return undefined;
}
let totalResizeHandle = Array.from(panelGroupElement.children).filter(
(node) => {
return (
node.nodeType === 1 &&
node.children[0] &&
node.children[0].id.includes(
`${ResizeHandleElIdPrefix}-${this.args.orientation}`,
)
);
},
).length;
let totalResizeHandleLength = ResizeHandleLength * totalResizeHandle;
let panelGroupLengthPx = this.panelGroupLengthPx;
if (panelGroupLengthPx === undefined) {
console.warn('Expected panelGroupLengthPx to be defined');
return undefined;
}
return panelGroupLengthPx - totalResizeHandleLength;
}
@tracked hideHandles = false;
@tracked totalResizeHandle = 0;
minimumLengthToShowHandles = 30;
resizablePanelIdCache = new WeakMap<ResizablePanel, number>();
listPanelContext = new TrackedMap<number, PanelContext>();
currentResizeHandle: {
id: string;
initialPosition: number;
nextPanelEl?: HTMLElement | null;
prevPanelEl?: HTMLElement | null;
} | null = null;
panelRatios: number[] = [];
@action
registerPanel(context: {
collapsible: boolean | undefined;
defaultLengthFraction: number | undefined;
lengthPx: number | undefined;
minLengthPx: number | undefined;
}) {
let id = Number(this.listPanelContext.size);
if (context.lengthPx === undefined) {
if (
this.panelGroupLengthPx === undefined ||
context.defaultLengthFraction === undefined
) {
context.lengthPx = -1;
} else {
context.lengthPx =
context.defaultLengthFraction * this.panelGroupLengthPx;
}
}
this.listPanelContext.set(id, {
id,
defaultLengthFraction: context.defaultLengthFraction,
lengthPx: context.lengthPx,
initialMinLengthPx: context.minLengthPx,
minLengthPx: context.minLengthPx,
collapsible:
context.collapsible == undefined ? true : context.collapsible,
});
this.calculatePanelRatio();
return id;
}
@action
unregisterPanel(id: number) {
this.listPanelContext.delete(id);
this.calculatePanelRatio();
this.onContainerResize();
}
calculatePanelRatio() {
let panelLengths = Array.from(this.listPanelContext.values()).map(
(panelContext) => panelContext.lengthPx,
);
this.panelRatios = [];
for (let index = 0; index < panelLengths.length; index++) {
let panelLength = panelLengths[index];
if (panelLength == undefined) {
break;
}
this.panelRatios[index] = panelLength / sumArray(panelLengths);
}
}
@action
panelContext(panelId: number) {
return this.listPanelContext.get(panelId);
}
@action
isLastPanel(panelId: number) {
return panelId === this.listPanelContext.size - 1;
}
@action
registerResizeHandle() {
let id = Number(this.totalResizeHandle);
this.totalResizeHandle++;
return id;
}
@action
unRegisterResizeHandle() {
this.totalResizeHandle--;
}
@action
onResizeHandleMouseDown(event: MouseEvent) {
let buttonId = (event.target as HTMLElement).id;
if (this.currentResizeHandle || !buttonId) {
return;
}
let { prevPanelEl, nextPanelEl } = this.findPanelsByResizeHandle(buttonId);
if (!prevPanelEl || !nextPanelEl) {
console.warn('Expected prevPanelEl and nextPanelEl are required');
return undefined;
}
this.currentResizeHandle = {
id: buttonId,
initialPosition: event[this.clientPositionProperty],
prevPanelEl: prevPanelEl,
nextPanelEl: nextPanelEl,
};
}
@action
onResizeHandleMouseUp(_event: MouseEvent) {
this.currentResizeHandle = null;
}
@action
onResizeHandleMouseMove(event: MouseEvent) {
if (
!this.currentResizeHandle ||
!this.currentResizeHandle.prevPanelEl ||
!this.currentResizeHandle.nextPanelEl
) {
return;
}
let delta =
event[this.clientPositionProperty] -
this.currentResizeHandle.initialPosition;
if (delta === 0) {
return;
}
let newPrevPanelElLength =
this.currentResizeHandle.prevPanelEl[this.clientLengthProperty] + delta;
let newNextPanelElLength =
this.currentResizeHandle.nextPanelEl[this.clientLengthProperty] - delta;
let prevPanelElId = this.panelId(this.currentResizeHandle.prevPanelEl?.id);
let nextPanelElId = this.panelId(this.currentResizeHandle.nextPanelEl?.id);
let prevPanelElContext = this.listPanelContext.get(Number(prevPanelElId));
let nextPanelElContext = this.listPanelContext.get(Number(nextPanelElId));
if (!prevPanelElContext || !nextPanelElContext) {
console.warn(
'Expected prevPanelElContext && nextPanelElContext to be defined',
);
return;
}
if (newPrevPanelElLength < 0 && newNextPanelElLength > 0) {
newNextPanelElLength = newNextPanelElLength + newPrevPanelElLength;
newPrevPanelElLength = 0;
} else if (newPrevPanelElLength > 0 && newNextPanelElLength < 0) {
newPrevPanelElLength = newPrevPanelElLength + newNextPanelElLength;
newNextPanelElLength = 0;
} else if (
prevPanelElContext.initialMinLengthPx &&
newPrevPanelElLength < prevPanelElContext.initialMinLengthPx &&
newPrevPanelElLength > prevPanelElContext.lengthPx
) {
newNextPanelElLength =
newNextPanelElLength -
(prevPanelElContext.initialMinLengthPx - newPrevPanelElLength);
newPrevPanelElLength = prevPanelElContext.initialMinLengthPx;
} else if (
nextPanelElContext.initialMinLengthPx &&
newNextPanelElLength < nextPanelElContext.initialMinLengthPx &&
newNextPanelElLength > nextPanelElContext.lengthPx
) {
newPrevPanelElLength =
newPrevPanelElLength +
(nextPanelElContext.initialMinLengthPx - newNextPanelElLength);
newNextPanelElLength = nextPanelElContext.initialMinLengthPx;
} else if (
prevPanelElContext.initialMinLengthPx &&
newPrevPanelElLength < prevPanelElContext.initialMinLengthPx &&
newPrevPanelElLength < prevPanelElContext.lengthPx
) {
newNextPanelElLength = newNextPanelElLength + newPrevPanelElLength;
newPrevPanelElLength = 0;
} else if (
nextPanelElContext.initialMinLengthPx &&
newNextPanelElLength < nextPanelElContext.initialMinLengthPx &&
newNextPanelElLength < nextPanelElContext.lengthPx
) {
newPrevPanelElLength = newPrevPanelElLength + newNextPanelElLength;
newNextPanelElLength = 0;
}
this.setSiblingPanelContexts(
prevPanelElId,
nextPanelElId,
newPrevPanelElLength,
newNextPanelElLength,
(prevPanelElContext.initialMinLengthPx &&
newPrevPanelElLength >= prevPanelElContext.initialMinLengthPx) ||
!prevPanelElContext.collapsible
? prevPanelElContext.initialMinLengthPx
: 0,
(nextPanelElContext.initialMinLengthPx &&
newNextPanelElLength >= nextPanelElContext.initialMinLengthPx) ||
!nextPanelElContext.collapsible
? nextPanelElContext.initialMinLengthPx
: 0,
);
this.currentResizeHandle.initialPosition =
event[this.clientPositionProperty];
this.calculatePanelRatio();
}
// This event only applies to the first and last resize handler.
// When triggered, it will close either the first or last panel.
// In this scenario, the minimum length of the panel will be disregarded.
@action
onResizeHandleDblClick(event: MouseEvent) {
let buttonId = (event.target as HTMLElement).id;
let isFirstButton = buttonId.includes('0');
let isLastButton = buttonId.includes(
String(this.listPanelContext.size - 2),
);
let panelGroupLengthPx = this.panelGroupLengthWithoutResizeHandlePx;
if (panelGroupLengthPx === undefined) {
console.warn('Expected panelGroupLengthPx to be defined');
return undefined;
}
let { prevPanelEl: prevPanelEl, nextPanelEl: nextPanelEl } =
this.findPanelsByResizeHandle(buttonId);
if (!prevPanelEl || !nextPanelEl) {
console.warn('Expected prevPanelEl and nextPanelEl are required');
return undefined;
}
let prevPanelElContext = this.listPanelContext.get(
this.panelId(prevPanelEl.id),
);
let nextPanelElContext = this.listPanelContext.get(
this.panelId(nextPanelEl.id),
);
if (!prevPanelElContext || !nextPanelElContext) {
console.warn(
'Expected prevPanelElContext && nextPanelElContext to be defined',
);
return undefined;
}
let prevPanelElLength = prevPanelElContext.lengthPx;
let nextPanelElLength = nextPanelElContext.lengthPx;
if (
isFirstButton &&
prevPanelElLength > 0 &&
!this.args.reverseCollapse &&
prevPanelElContext.collapsible
) {
this.setSiblingPanelContexts(
this.panelId(prevPanelEl.id),
this.panelId(nextPanelEl.id),
0,
prevPanelElLength + nextPanelElLength,
0,
nextPanelElContext.initialMinLengthPx,
);
} else if (isFirstButton && prevPanelElLength <= 0) {
this.setSiblingPanelContexts(
this.panelId(prevPanelEl.id),
this.panelId(nextPanelEl.id),
prevPanelElContext.defaultLengthFraction
? panelGroupLengthPx * prevPanelElContext.defaultLengthFraction
: prevPanelElContext.lengthPx,
prevPanelElContext.defaultLengthFraction
? nextPanelElLength -
panelGroupLengthPx * prevPanelElContext.defaultLengthFraction
: panelGroupLengthPx - nextPanelElLength,
prevPanelElContext.initialMinLengthPx,
nextPanelElContext.initialMinLengthPx,
);
} else if (
isLastButton &&
nextPanelElLength > 0 &&
nextPanelElContext.collapsible
) {
this.setSiblingPanelContexts(
this.panelId(prevPanelEl.id),
this.panelId(nextPanelEl.id),
prevPanelElLength + nextPanelElLength,
0,
prevPanelElContext.initialMinLengthPx,
0,
);
} else if (isLastButton && nextPanelElLength <= 0) {
this.setSiblingPanelContexts(
this.panelId(prevPanelEl.id),
this.panelId(nextPanelEl.id),
nextPanelElContext.defaultLengthFraction
? prevPanelElLength -
panelGroupLengthPx * nextPanelElContext.defaultLengthFraction
: panelGroupLengthPx - prevPanelElLength,
nextPanelElContext.defaultLengthFraction
? panelGroupLengthPx * nextPanelElContext.defaultLengthFraction
: nextPanelElContext.lengthPx,
prevPanelElContext.initialMinLengthPx,
nextPanelElContext.initialMinLengthPx,
);
}
this.calculatePanelRatio();
}
@action
setSiblingPanelContexts(
prevPanelElId: number,
nextPanelElId: number,
newPrevPanelElLength: number,
newNextPanelElLength: number,
newPrevPanelElMinLength?: number,
newNextPanelElMinLength?: number,
) {
let leftPanelContext = this.listPanelContext.get(prevPanelElId);
if (leftPanelContext) {
this.listPanelContext.set(prevPanelElId, {
...leftPanelContext,
lengthPx: newPrevPanelElLength,
minLengthPx: newPrevPanelElMinLength,
});
}
let rightPanelContext = this.listPanelContext.get(nextPanelElId);
if (rightPanelContext) {
this.listPanelContext.set(nextPanelElId, {
...rightPanelContext,
lengthPx: newNextPanelElLength,
minLengthPx: newNextPanelElMinLength,
});
}
this.args.onListPanelContextChange?.(
Array.from(this.listPanelContext, ([_name, value]) => value),
);
}
@action
onContainerResize(entry?: ResizeObserverEntry, _observer?: ResizeObserver) {
if (!this.panelGroupElement) {
if (entry) {
this.panelGroupElement = entry.target as HTMLDivElement;
next(this, this.onContainerResize, entry, _observer);
}
return;
}
this.hideHandles =
this.panelGroupElement[this.perpendicularLengthProperty] <
this.minimumLengthToShowHandles;
let panelLengths: number[] = Array.from(this.listPanelContext.values()).map(
(panelContext) => panelContext.lengthPx,
);
let newContainerSize = this.panelGroupLengthWithoutResizeHandlePx;
if (newContainerSize == undefined) {
console.warn('Expected newContainerSize to be defined');
return;
}
let remainingContainerSize = newContainerSize;
let calculateLengthsOfPanelWithMinLegth = () => {
let panelContexts = Array.from(this.listPanelContext)
.map((panelContextTuple) => panelContextTuple[1])
.filter((panelContext) => panelContext.initialMinLengthPx);
panelContexts.forEach((panelContext) => {
let panelRatio = this.panelRatios[panelContext.id];
if (!panelRatio || !newContainerSize) {
console.warn(
'Expected panelRatio and newContainerSize to be defined',
);
return;
}
let proportionalSize = panelRatio * newContainerSize;
let actualSize = Math.round(
panelContext?.initialMinLengthPx
? Math.max(proportionalSize, panelContext.initialMinLengthPx)
: proportionalSize,
);
panelLengths[panelContext.id] = actualSize;
remainingContainerSize = remainingContainerSize - actualSize;
});
};
calculateLengthsOfPanelWithMinLegth();
let calculateLengthsOfPanelWithoutMinLength = () => {
let panelContexts = Array.from(this.listPanelContext)
.map((panelContextTuple) => panelContextTuple[1])
.filter((panelContext) => !panelContext.initialMinLengthPx);
let panelContextIds = panelContexts.map(
(panelContext) => panelContext.id,
);
let newPanelRatios = this.panelRatios.filter((_panelRatio, index) =>
panelContextIds.includes(index),
);
let totalNewPanelRatio = newPanelRatios.reduce(
(prevValue, currentValue) => prevValue + currentValue,
0,
);
newPanelRatios = newPanelRatios.map(
(panelRatio) => panelRatio / totalNewPanelRatio,
);
panelContexts.forEach((panelContext, index) => {
let panelRatio = newPanelRatios[index];
if (!panelRatio) {
console.warn('Expected panelRatio to be defined');
return;
}
let proportionalSize = panelRatio * remainingContainerSize;
let actualSize = Math.round(proportionalSize);
panelLengths[panelContext.id] = actualSize;
});
};
calculateLengthsOfPanelWithoutMinLength();
for (let index = 0; index <= this.listPanelContext.size; index++) {
let panelContext = this.listPanelContext.get(index);
if (panelContext) {
this.listPanelContext.set(index, {
...panelContext,
lengthPx: panelLengths[index] || 0,
});
}
}
}
private findPanelsByResizeHandle(ResizeHandleId: string) {
let idArr = ResizeHandleId.split('-');
let ResizeHandleIdNumber = Number(idArr[idArr.length - 1]);
if (ResizeHandleIdNumber == undefined) {
return {
prevPanelEl: undefined,
nextPanelEl: undefined,
};
}
let prevPanelEl = this.getHtmlElement(this.panelElId(ResizeHandleIdNumber));
let nextPanelEl = this.getHtmlElement(
this.panelElId(ResizeHandleIdNumber + 1),
);
return {
prevPanelEl,
nextPanelEl,
};
}
private getHtmlElement(id: string): HTMLElement {
return nodeFor(this, id);
}
@action
private panelElId(id: number | undefined): string {
return `${resizablePanelElIdPrefix}-${this.args.orientation}-${id}`;
}
private panelId(elId: string): number {
let idArr = elId.split('-');
return Number(idArr[idArr.length - 1]);
}
@action
private ResizeHandleElId(id: number | undefined): string {
return `${ResizeHandleElIdPrefix}-${this.args.orientation}-${id}`;
}
}