-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpanel.gts
165 lines (149 loc) · 4.6 KB
/
panel.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
import { registerDestructor } from '@ember/destroyable';
import { action } from '@ember/object';
import { scheduleOnce } from '@ember/runloop';
import { htmlSafe } from '@ember/template';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { modifier } from 'ember-modifier';
import createRef from 'ember-ref-bucket/modifiers/create-ref';
import cssVars from '../../helpers/css-var.ts';
import { eq } from '../../helpers/truth-helpers.ts';
import type ResizablePanelGroup from './index.gts';
export type PanelContext = {
collapsible: boolean;
defaultLengthFraction?: number;
id: number;
initialMinLengthPx?: number;
lengthPx: number;
minLengthPx?: number;
};
interface Signature {
Args: {
collapsible?: boolean; //default true
defaultLengthFraction: number;
isHidden?: boolean; //default false
isLastPanel: (panelId: number) => boolean;
lengthPx?: number;
minLengthPx?: number;
orientation: 'horizontal' | 'vertical';
panelContext: (panelId: number) => PanelContext | undefined;
panelGroupComponent: ResizablePanelGroup;
registerPanel: (context: {
collapsible: boolean | undefined;
defaultLengthFraction: number | undefined;
lengthPx: number | undefined;
minLengthPx: number | undefined;
}) => number;
resizablePanelElId: (id: number | undefined) => string;
unregisterPanel: (id: number) => void;
};
Blocks: {
default: [];
};
Element: HTMLDivElement;
}
let managePanelRegistration = modifier(
(_element, [panel, isHidden]: [Panel, boolean | undefined]) => {
if (isHidden) {
scheduleOnce('afterRender', panel, panel.unregisterPanel);
} else {
scheduleOnce('afterRender', panel, panel.registerPanel);
}
},
);
export default class Panel extends Component<Signature> {
<template>
<div
id={{(@resizablePanelElId this.id)}}
class='boxel-panel {{@orientation}}'
style={{if
(eq @orientation 'horizontal')
(cssVars
boxel-panel-width=this.lengthCssValue
boxel-panel-min-width=this.minLengthCssValue
)
(cssVars
boxel-panel-height=this.lengthCssValue
boxel-panel-min-height=this.minLengthCssValue
)
}}
{{createRef (@resizablePanelElId this.id) bucket=@panelGroupComponent}}
{{managePanelRegistration this @isHidden}}
...attributes
>
{{yield}}
</div>
<style>
.boxel-panel {
--resizable-panel-length: '300px;';
}
.boxel-panel.horizontal {
--boxel-panel-width: var(--resizable-panel-length);
--boxel-panel-min-width: 'none';
width: var(--boxel-panel-width);
min-width: var(--boxel-panel-min-width);
}
.boxel-panel.vertical {
--boxel-panel-height: var(--resizable-panel-length);
--boxel-panel-min-height: 'none';
height: var(--boxel-panel-height);
min-height: var(--boxel-panel-min-height);
}
</style>
</template>
@tracked id: number | undefined;
constructor(owner: any, args: any) {
super(owner, args);
registerDestructor(this, this.unregisterPanel);
}
@action
registerPanel() {
if (this.id == undefined) {
this.id = this.args.registerPanel({
lengthPx: this.args.lengthPx,
defaultLengthFraction: this.args.defaultLengthFraction,
minLengthPx: this.args.minLengthPx,
collapsible: this.args.collapsible,
});
}
}
@action
unregisterPanel() {
if (this.id) {
this.args.unregisterPanel(this.id);
this.id = undefined;
}
}
get panelContext() {
if (this.id == undefined) {
return {
lengthPx: undefined,
defaultLengthFraction: this.args.defaultLengthFraction,
minLengthPx: undefined,
};
}
return this.args.panelContext(this.id);
}
get minLengthCssValue() {
if (this.args.isHidden) {
return htmlSafe('0px');
} else if (this.panelContext?.minLengthPx !== undefined) {
return htmlSafe(`${this.panelContext.minLengthPx}px`);
} else if (this.args.minLengthPx !== undefined) {
return htmlSafe(`${this.args.minLengthPx}px`);
}
return undefined;
}
get lengthCssValue() {
let lengthPx = this.panelContext?.lengthPx;
let defaultLengthFraction = this.panelContext?.defaultLengthFraction;
if (this.args.isHidden) {
return htmlSafe('0px');
} else if (lengthPx === -1 && defaultLengthFraction) {
return htmlSafe(`${defaultLengthFraction * 100}%`);
} else if (lengthPx !== -1 && lengthPx !== undefined) {
return htmlSafe(`${lengthPx}px`);
}
return undefined;
}
}