-
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
-- Copyright 2026 Shota FUJI
--
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at https://mozilla.org/MPL/2.0/.
--
-- SPDX-License-Identifier: MPL-2.0
module Template.Layout.Container exposing
( Container
, ContainerChildAlignment(..)
, ContainerDirection(..)
, ContainerSizing(..)
, aligned
, build
, columns
, debugOutline
, gapped
, noGrow
, padded
, rows
, sized
, withContentOutline
, withElement
, withOutline
)
import Html.Attributes exposing (align)
import Svg exposing (..)
import Svg.Attributes as Attrs
import Template.Layout.Coordinate exposing (..)
import Template.Layout.Item exposing (Item)
isHorizontallyGrowable : Item msg -> Bool
isHorizontallyGrowable item =
case item.size.width of
AtLeast _ ->
True
_ ->
False
isVerticallyGrowable : Item msg -> Bool
isVerticallyGrowable item =
case item.size.height of
AtLeast _ ->
True
_ ->
False
type ContainerChildAlignment
= Stretch
| Start
| Center
| End
type ContainerSizing
= Intrinsic
| Sized (Request Float) (Request Float)
type alias ContainerRenderingContext =
{ containerOrigin : Point2D
, containerSize : Size
, renderingAreaOrigin : Point2D
, renderingAreaSize : Size
}
type ContainerDirection
= Row
| Column
type alias Container msg =
{ size : ContainerSizing
, gap : Float
, padding : Float
, align : ContainerChildAlignment
, elements : List (ContainerRenderingContext -> Svg msg)
, direction : ContainerDirection
}
rows : Container msg
rows =
{ size = Intrinsic
, gap = 0
, padding = 0
, align = Stretch
, elements = []
, direction = Row
}
columns : Container msg
columns =
{ size = Intrinsic
, gap = 0
, padding = 0
, align = Stretch
, elements = []
, direction = Column
}
sized : Request Float -> Request Float -> Container msg -> Container msg
sized width height props =
{ props | size = Sized width height }
gapped : Float -> Container msg -> Container msg
gapped gap props =
{ props | gap = gap }
padded : Float -> Container msg -> Container msg
padded padding props =
{ props | padding = padding }
aligned : ContainerChildAlignment -> Container msg -> Container msg
aligned align props =
{ props | align = align }
withElement : (ContainerRenderingContext -> Svg msg) -> Container msg -> Container msg
withElement f props =
{ props | elements = f :: props.elements }
type alias Outline =
{ color : String
, width : Float
, radius : Float
}
debugOutline : Outline
debugOutline =
{ color = "#f00"
, width = 0.1
, radius = 0.0
}
withOutline : Outline -> Container msg -> Container msg
withOutline { color, width, radius } props =
{ props
| elements =
(\ctx ->
g
[]
[ rect
[ Attrs.x (String.fromFloat ctx.containerOrigin.x)
, Attrs.y (String.fromFloat ctx.containerOrigin.y)
, Attrs.width (String.fromFloat ctx.containerSize.width)
, Attrs.height (String.fromFloat ctx.containerSize.height)
, Attrs.fill "none"
, Attrs.stroke color
, Attrs.strokeWidth (String.fromFloat width)
, Attrs.rx (String.fromFloat radius)
, Attrs.ry (String.fromFloat radius)
]
[]
]
)
:: props.elements
}
withContentOutline : Outline -> Container msg -> Container msg
withContentOutline { color, width, radius } props =
{ props
| elements =
(\ctx ->
g
[]
[ rect
[ Attrs.x (String.fromFloat ctx.renderingAreaOrigin.x)
, Attrs.y (String.fromFloat ctx.renderingAreaOrigin.y)
, Attrs.width (String.fromFloat ctx.renderingAreaSize.width)
, Attrs.height (String.fromFloat ctx.renderingAreaSize.height)
, Attrs.fill "none"
, Attrs.stroke color
, Attrs.strokeWidth (String.fromFloat width)
, Attrs.rx (String.fromFloat radius)
, Attrs.ry (String.fromFloat radius)
]
[]
]
)
:: props.elements
}
noGrow : Item msg -> Item msg
noGrow item =
{ item
| size =
{ width =
case item.size.width of
AtLeast n ->
Exactly n
Exactly n ->
Exactly n
, height =
case item.size.height of
AtLeast n ->
Exactly n
Exactly n ->
Exactly n
}
}
build : List (Item msg) -> Container msg -> Item msg
build items { size, gap, padding, align, elements, direction } =
let
getCtx : Point2D -> Size -> ContainerRenderingContext
getCtx p s =
{ containerOrigin = p
, containerSize = s
, renderingAreaOrigin =
{ x = p.x + padding
, y = p.y + padding
}
, renderingAreaSize =
{ width = s.width - padding * 2
, height = s.height - padding * 2
}
}
in
case items of
[] ->
{ size = SizeRequest (Exactly 0) (Exactly 0)
, element =
\p s ->
let
ctx =
getCtx p s
in
g [] (List.map (\e -> e ctx) elements)
}
_ ->
let
( innerMinWidth, innerMinHeight ) =
case direction of
Row ->
( items
|> List.map (\item -> minSizeOf item.size |> .width)
|> List.maximum
|> Maybe.withDefault 0.0
, items
|> List.map (\item -> minSizeOf item.size |> .height)
|> List.intersperse gap
|> List.foldl (+) 0.0
)
Column ->
( items
|> List.map (\item -> minSizeOf item.size |> .width)
|> List.intersperse gap
|> List.foldl (+) 0.0
, items
|> List.map (\item -> minSizeOf item.size |> .height)
|> List.maximum
|> Maybe.withDefault 0.0
)
in
{ size =
case size of
Intrinsic ->
case direction of
Row ->
{ width = AtLeast (innerMinWidth + padding * 2)
, height = Exactly (innerMinHeight + padding * 2)
}
Column ->
{ width = Exactly (innerMinWidth + padding * 2)
, height = AtLeast (innerMinHeight + padding * 2)
}
Sized w h ->
{ width =
case w of
Exactly v ->
Exactly v
AtLeast v ->
AtLeast (max v (innerMinWidth + padding * 2))
, height =
case h of
Exactly v ->
Exactly v
AtLeast v ->
AtLeast (max v (innerMinHeight + padding * 2))
}
, element =
\p s ->
let
ctx =
getCtx p s
children =
case direction of
Row ->
let
freeHeight =
max 0 (ctx.renderingAreaSize.height - innerMinHeight)
grow =
freeHeight / (items |> List.filter isVerticallyGrowable |> List.length |> toFloat)
in
items
|> List.foldl
(\item ( yOffset, els ) ->
let
height =
case item.size.height of
Exactly h ->
h
AtLeast h ->
h + grow
width =
case align of
Stretch ->
ctx.renderingAreaSize.width
_ ->
case item.size.width of
Exactly w ->
min w ctx.renderingAreaSize.width
AtLeast _ ->
ctx.renderingAreaSize.width
( y, yAdvance ) =
case els of
[] ->
( yOffset, yOffset + height )
_ ->
( yOffset + gap, yOffset + gap + height )
x =
case align of
Center ->
ctx.renderingAreaOrigin.x + (ctx.renderingAreaSize.width / 2 - width / 2)
End ->
ctx.renderingAreaOrigin.x + (ctx.renderingAreaSize.width - width)
_ ->
ctx.renderingAreaOrigin.x
in
( yAdvance
, item.element (Point2D x y) (Size width height) :: els
)
)
( ctx.renderingAreaOrigin.y, [] )
|> Tuple.second
Column ->
let
freeWidth =
max 0 (ctx.renderingAreaSize.width - innerMinWidth)
grow =
freeWidth / (items |> List.filter isHorizontallyGrowable |> List.length |> toFloat)
in
items
|> List.foldl
(\item ( xOffset, els ) ->
let
width =
case item.size.width of
Exactly w ->
w
AtLeast w ->
w + grow
height =
case align of
Stretch ->
ctx.renderingAreaSize.height
_ ->
case item.size.height of
Exactly h ->
min h ctx.renderingAreaSize.height
AtLeast _ ->
ctx.renderingAreaSize.height
( x, xAdvance ) =
case els of
[] ->
( xOffset, xOffset + width )
_ ->
( xOffset + gap, xOffset + gap + width )
y =
case align of
Center ->
ctx.renderingAreaOrigin.y + (ctx.renderingAreaSize.height / 2 - height / 2)
End ->
ctx.renderingAreaOrigin.y + (ctx.renderingAreaSize.height - height)
_ ->
ctx.renderingAreaOrigin.y
in
( xAdvance
, item.element (Point2D x y) (Size width height) :: els
)
)
( ctx.renderingAreaOrigin.x, [] )
|> Tuple.second
in
g [] (children ++ List.map (\e -> e ctx) elements)
}