-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathusage.gts
241 lines (231 loc) · 10.5 KB
/
usage.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
import { fn } from '@ember/helper';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import FreestyleUsage from 'ember-freestyle/components/freestyle/usage';
import {
type CSSVariableInfo,
cssVariable,
} from 'ember-freestyle/decorators/css-variable';
import cssVar from '../../helpers/css-var.ts';
import ResizablePanelGroup from './index.gts';
export default class ResizablePanelUsage extends Component {
@tracked horizontalPanel1DefaultWidthFraction = 0.25;
@tracked horizontalPanel1MinWidthPx = undefined;
@tracked horizontalPanel2DefaultWidthFraction = 0.5;
@tracked horizontalPanel2MinWidthPx = undefined;
@tracked horizontalPanel3DefaultWidthFraction = 0.25;
@tracked horizontalPanel3MinWidthPx = undefined;
@tracked verticalReverseCollapse = true;
@tracked verticalPanel1DefaultHeightFraction = 0.33;
@tracked verticalPanel1MinHeightPx = undefined;
@tracked verticalPanel2DefaultHeightFraction = 0.67;
@tracked verticalPanel2MinHeightPx = undefined;
cssClassName = 'boxel-panel';
@cssVariable declare boxelPanelResizeHandleHeight: CSSVariableInfo;
@cssVariable declare boxelPanelResizeHandleWidth: CSSVariableInfo;
@cssVariable declare boxelPanelResizeHandleBackgroundColor: CSSVariableInfo;
@cssVariable
declare boxelPanelResizeHandleHoverBackgroundColor: CSSVariableInfo;
<template>
<FreestyleUsage @name='Horizontal ResizablePanelGroup'>
<:example>
<ResizablePanelGroup
@orientation='horizontal'
style={{cssVar
boxel-panel-resize-handler-height=this.boxelPanelResizeHandleHeight.value
boxel-panel-resize-handler-background-color=this.boxelPanelResizeHandleBackgroundColor.value
boxel-panel-resize-handler-hover-background-color=this.boxelPanelResizeHandleHoverBackgroundColor.value
}}
as |ResizablePanel ResizeHandle|
>
<ResizablePanel
@defaultLengthFraction={{this.horizontalPanel1DefaultWidthFraction}}
@minLengthPx={{this.horizontalPanel1MinWidthPx}}
>
Panel 1
</ResizablePanel>
<ResizeHandle />
<ResizablePanel
@defaultLengthFraction={{this.horizontalPanel2DefaultWidthFraction}}
@minLengthPx={{this.horizontalPanel2MinWidthPx}}
>
Panel 2
</ResizablePanel>
<ResizeHandle />
<ResizablePanel
@defaultLengthFraction={{this.horizontalPanel3DefaultWidthFraction}}
@minLengthPx={{this.horizontalPanel3MinWidthPx}}
>
Panel 3
</ResizablePanel>
</ResizablePanelGroup>
</:example>
<:api as |Args|>
<Args.Number
@name='defaultWidthFraction - Panel 1'
@description="The default width of the panel is determined by this argument, which operates similarly to the 'width' property in CSS."
@value={{this.horizontalPanel1DefaultWidthFraction}}
@onInput={{fn (mut this.horizontalPanel1DefaultWidthFraction)}}
@required={{true}}
/>
<Args.String
@name='minWidthPx - Panel 1'
@description="The minimum width of the panel is determined by this argument, which operates similarly to the 'min-width' property in CSS. In double-click event, this argumen will be ingored."
@value={{this.horizontalPanel1MinWidthPx}}
@onInput={{fn (mut this.horizontalPanel1MinWidthPx)}}
@required={{false}}
/>
<Args.String
@name='defaultWidthFraction - Panel 2'
@description="The default width of the panel is determined by this argument, which operates similarly to the 'width' property in CSS."
@value={{this.horizontalPanel2DefaultWidthFraction}}
@onInput={{fn (mut this.horizontalPanel2DefaultWidthFraction)}}
@required={{true}}
/>
<Args.String
@name='minWidthPx - Panel 2'
@description="The minimum width of the panel is determined by this argument, which operates similarly to the 'min-width' property in CSS. In double-click event, this argumen will be ingored."
@value={{this.horizontalPanel2MinWidthPx}}
@onInput={{fn (mut this.horizontalPanel2MinWidthPx)}}
@required={{false}}
/>
<Args.String
@name='defaultWidthFraction - Panel 3'
@description="The default width of the panel is determined by this argument, which operates similarly to the 'width' property in CSS."
@value={{this.horizontalPanel3DefaultWidthFraction}}
@onInput={{fn (mut this.horizontalPanel3DefaultWidthFraction)}}
@required={{true}}
/>
<Args.String
@name='minWidthPx - Panel 3'
@description="The minimum width of the panel is determined by this argument, which operates similarly to the 'min-width' property in CSS. In double-click event, this argumen will be ingored."
@value={{this.horizontalPanel3MinWidthPx}}
@onInput={{fn (mut this.horizontalPanel3MinWidthPx)}}
@required={{false}}
/>
</:api>
<:cssVars as |Css|>
<Css.Basic
@name='boxel-panel-resize-handler-height'
@type='dimension'
@defaultValue={{this.boxelPanelResizeHandleHeight.defaults}}
@value={{this.boxelPanelResizeHandleHeight.value}}
@onInput={{this.boxelPanelResizeHandleHeight.update}}
/>
<Css.Basic
@name='boxel-panel-resize-handler-background-color'
@type='color'
@defaultValue={{this.boxelPanelResizeHandleBackgroundColor.defaults}}
@value={{this.boxelPanelResizeHandleBackgroundColor.value}}
@onInput={{this.boxelPanelResizeHandleBackgroundColor.update}}
/>
<Css.Basic
@name='boxel-panel-resize-handler-hover-background-color'
@type='color'
@defaultValue={{this.boxelPanelResizeHandleHoverBackgroundColor.defaults}}
@value={{this.boxelPanelResizeHandleHoverBackgroundColor.value}}
@onInput={{this.boxelPanelResizeHandleHoverBackgroundColor.update}}
/>
</:cssVars>
</FreestyleUsage>
<FreestyleUsage
@name='Two-panel vertical ResizablePanelGroup with reversed collapse'
>
<:description>
@reverseCollapse
</:description>
<:example>
<div class='vertical-container'>
<ResizablePanelGroup
@orientation='vertical'
@reverseCollapse={{this.verticalReverseCollapse}}
style={{cssVar
boxel-panel-resize-handler-width=this.boxelPanelResizeHandleWidth.value
boxel-panel-resize-handler-background-color=this.boxelPanelResizeHandleBackgroundColor.value
boxel-panel-resize-handler-hover-background-color=this.boxelPanelResizeHandleHoverBackgroundColor.value
}}
as |ResizablePanel ResizeHandle|
>
<ResizablePanel
@defaultLengthFraction={{this.verticalPanel1DefaultHeightFraction}}
@minLengthPx={{this.verticalPanel1MinHeightPx}}
>
Panel 1
</ResizablePanel>
<ResizeHandle />
<ResizablePanel
@defaultLengthFraction={{this.verticalPanel2DefaultHeightFraction}}
@minLengthPx={{this.verticalPanel2MinHeightPx}}
>
Panel 2
</ResizablePanel>
</ResizablePanelGroup>
</div>
</:example>
<:api as |Args|>
<Args.Bool
@name='reverseCollapse'
@description='Double-clicking the handle to collapse a panel will default to collapsing outward, this reverses it, which may be preferable in a two-panel setup.'
@value={{this.verticalReverseCollapse}}
@onInput={{fn (mut this.verticalReverseCollapse)}}
/>
<Args.Number
@name='defaultHeightFraction - Panel 1'
@description="The default height of the panel is determined by this argument, which operates similarly to the 'height' property in CSS."
@value={{this.verticalPanel1DefaultHeightFraction}}
@onInput={{fn (mut this.verticalPanel1DefaultHeightFraction)}}
@required={{true}}
/>
<Args.Number
@name='minHeightPx - Panel 1'
@description="The minimum height of the panel is determined by this argument, which operates similarly to the 'min-height' property in CSS. In double-click event, this argumen will be ingored."
@value={{this.verticalPanel1MinHeightPx}}
@onInput={{fn (mut this.verticalPanel1MinHeightPx)}}
@required={{false}}
/>
<Args.Number
@name='defaultHeightFraction - Panel 2'
@description="The default height of the panel is determined by this argument, which operates similarly to the 'height' property in CSS."
@value={{this.verticalPanel2DefaultHeightFraction}}
@onInput={{fn (mut this.verticalPanel2DefaultHeightFraction)}}
@required={{true}}
/>
<Args.Number
@name='minHeightPx - Panel 2'
@description="The minimum height of the panel is determined by this argument, which operates similarly to the 'min-height' property in CSS. In double-click event, this argumen will be ingored."
@value={{this.verticalPanel2MinHeightPx}}
@onInput={{fn (mut this.verticalPanel2MinHeightPx)}}
@required={{false}}
/>
</:api>
<:cssVars as |Css|>
<Css.Basic
@name='boxel-panel-resize-handler-width'
@type='dimension'
@defaultValue={{this.boxelPanelResizeHandleWidth.defaults}}
@value={{this.boxelPanelResizeHandleWidth.value}}
@onInput={{this.boxelPanelResizeHandleWidth.update}}
/>
<Css.Basic
@name='boxel-panel-resize-handler-background-color'
@type='color'
@defaultValue={{this.boxelPanelResizeHandleBackgroundColor.defaults}}
@value={{this.boxelPanelResizeHandleBackgroundColor.value}}
@onInput={{this.boxelPanelResizeHandleBackgroundColor.update}}
/>
<Css.Basic
@name='boxel-panel-resize-handler-hover-background-color'
@type='color'
@defaultValue={{this.boxelPanelResizeHandleHoverBackgroundColor.defaults}}
@value={{this.boxelPanelResizeHandleHoverBackgroundColor.value}}
@onInput={{this.boxelPanelResizeHandleHoverBackgroundColor.update}}
/>
</:cssVars>
</FreestyleUsage>
<style>
.vertical-container {
height: 30rem;
}
</style>
</template>
}