-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathElement.elm
More file actions
1359 lines (1035 loc) · 34.2 KB
/
Element.elm
File metadata and controls
1359 lines (1035 loc) · 34.2 KB
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
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module Element
exposing
( Element
, Attribute
, empty
, text
, bold
, italic
, strike
, underline
, sub
, super
, el
, circle
, spacer
, image
, hairline
, node
, header
, section
, nav
, article
, aside
, canvas
, button
, iframe
, audio
, video
, form
, radio
, checkbox
, label
, labelBelow
, textArea
, inputText
, full
, textLayout
, paragraph
, row
, column
, wrappedRow
, wrappedColumn
, grid
, table
, namedGrid
, area
, named
, span
, spanAll
, link
, when
, whenJust
, within
, above
, below
, onRight
, onLeft
, screen
, render
, root
, embed
, layout
, viewport
, toHtml
, toLayoutCss
, toViewportCss
, embedStylesheet
, Device
, classifyDevice
, responsive
, OnGrid
, NamedOnGrid
, Grid
, NamedGrid
, select
, option
, Option
, html
, break
, map
)
{-|
# Capture Layout in your View
Think of `Elements` as `Html` with layout!
By building your view with `Elements`, you have a single place to go to adjust or add to your layout, which is great because that's usually what you're doing in your view!
## Rendering
@docs layout, viewport
## Basic Elements
@docs Element, Attribute
@docs empty, text, el, html, map, when, whenJust
# Layout
A layout element will explicitly define how it's children are layed out.
Make sure to check out the Style Element specific attributes in `Element.Attributes` as they will help out when doing layout!
## Linear Layouts
@docs row, column, wrappedRow, wrappedColumn
## Text Layout
@docs textLayout, paragraph
## Grid Layout
@docs table, Grid, NamedGrid, grid, namedGrid, OnGrid, NamedOnGrid, area, named, span, spanAll
## Convenience Elements
@docs full, spacer, hairline, link, image, circle, break
## Positioning
It can be useful to position something near another element.
In CSS terms, this positions children using 'position:absolute'. So, to position three boxes below a container, we could do the following:
el MyStyle [ width (px 200), height (px 200) ] empty
|> below
[ el Box [ width (px 40), height (px 40) ] empty
-- below on the right
, el Box [ alignRight, width (px 40), height (px 40) ] empty
-- below and centered
, el Box [ center, width (px 40), height (px 40) ] empty
]
@docs below, above, onRight, onLeft, within, screen
## Responsive
Since this library moves all layout and positioning logic to the view instead of the stylesheet, it doesn't make a ton of sense to support media queries in the stylesheet.
Instead, responsiveness is controlled directly in the view.
Here's how it's done:
1. Set up a subscription to `Window.resizes` from the `Window` package.
2. Use the `Element.classifyDevice` function which will convert `Window.width` and `Window.height` into a `Device` record, which you should store in your model.
3. Use the `Device` record in your view to specify how your page changes with window size.
4. If things get crazy, use the `responsive` function to map one range to another.
Check out the [elm.style website source](https://github.com/mdgriffith/elm.style) for a real example.
@docs Device, classifyDevice, responsive
## Text Markup
These elements are useful for quick text markup.
@docs bold, italic, strike, underline, sub, super
## Semantic Markup
This library made the opinionated choice to make layout a first class concern of your `view` function.
However it's still very useful to have semantic markup in places. The following nodes can be used to annotate your layouts.
So, if we wanted to make a standard element be rendered as a `section` node, we could do the following
-- Regular element
el MyStyle [] (text "Hello World!")
-- Same element annotated as a `section`
section <| el MyStyle [] (text "Hello World!")
@docs node, button, header, section, nav, article, aside, canvas, iframe, audio, video
## Form Elements
Some convient elements for working with forms.
@docs form, checkbox, label, labelBelow, inputText, textArea, radio, select, option, Option
## Advanced Rendering
@docs toHtml, embedStylesheet, toLayoutCss, toViewportCss
### Deprecated
@docs root, embed, render
-}
import Html exposing (Html)
import Html.Attributes
import Element.Internal.Model as Internal exposing (..)
import Element.Internal.Modify as Modify
import Style exposing (Style, StyleSheet)
import Style.Internal.Model as Style exposing (Length)
import Element.Attributes as Attr
import Element.Internal.Render as Render
import Window
{-| You can think of an `Element` as `Html` with built-in layout.
It has one `style` identifier, which you can think of as a CSS class.
It can also have style `variations`, which are covered in the `Style` module.
-}
type alias Element style variation msg =
Internal.Element style variation msg
{-| -}
type alias Attribute variation msg =
Internal.Attribute variation msg
{-| -}
empty : Element style variation msg
empty =
Empty
{-| -}
text : String -> Element style variation msg
text =
Text NoDecoration
{-| -}
bold : String -> Element style variation msg
bold =
Text Bold
{-| -}
italic : String -> Element style variation msg
italic =
Text Italic
{-| -}
strike : String -> Element style variation msg
strike =
Text Strike
{-| -}
underline : String -> Element style variation msg
underline =
Text Underline
{-| -}
sub : String -> Element style variation msg
sub =
Text Sub
{-| -}
super : String -> Element style variation msg
super =
Text Super
{-| The most basic element.
You need to specify a style, a list of attributes, and a single child.
-- an element with the style `MyStyle`, that is aligned left, and has one child.
el MyStyle [ alignLeft ] (text "Hello World!")
`el` can only have one child because in order to have multiple children, we need to specify how the layout would work.
-}
el : style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg
el style attrs child =
Element
{ node = "div"
, style = Just style
, attrs = attrs
, child = child
, absolutelyPositioned = Nothing
}
{-| A simple circle. Provide the radius it should have.
Automatically sets the propery width, height, and corner rounded.
-}
circle : Float -> style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg
circle radius style attrs child =
Element
{ node = "div"
, style = Just style
, attrs =
(Attr
(Html.Attributes.style
[ ( "border-radius", toString radius ++ "px" ) ]
)
:: Width (Style.Px (2 * radius))
:: Height (Style.Px (2 * radius))
:: attrs
)
, child = child
, absolutelyPositioned = Nothing
}
{-| An element for adding additional spacing. The `Float` is the multiple that should be used of the spacing that's being set by the parent.
So, if the parent element is a `column` that set spacing to `5`, and this spacer was a `2`. Then it would be a 10 pixel spacer.
-}
spacer : Float -> Element style variation msg
spacer =
Spacer
{-| A convenience node for images. Accepts an image src as the first argument.
-}
image : String -> style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg
image src style attrs child =
Element
{ node = "img"
, style = Just style
, attrs = (Attr (Html.Attributes.src src) :: attrs)
, child = child
, absolutelyPositioned = Nothing
}
{-| Creates a 1 px tall horizontal line.
If you want a horizontal rule that is something more specific, craft it with `el`!
-}
hairline : style -> Element style variation msg
hairline style =
Element
{ node = "hr"
, style = Just style
, attrs = [ Height (Style.Px 1) ]
, child = empty
, absolutelyPositioned = Nothing
}
{-| Make a line-break.
You probably want to use `paragraph` instead. This is only for adjusting where a sentance should break, not for formating paragraphs.
-}
break : Element style variation msg
break =
Element
{ node = "br"
, style = Nothing
, attrs = []
, child = empty
, absolutelyPositioned = Nothing
}
{-| For when you want to embed `Html`.
If you're using this library, I'd encourage you to try to solve your problem without using this escape hatch.
Usage of this function makes the most sense when you're dealing with `Html` from another module or package.
-}
html : Html msg -> Element style variation msg
html =
Raw
---------------------
--- Semantic Markup
---------------------
{-| -}
node : String -> Element style variation msg -> Element style variation msg
node str =
Modify.setNode str
{-| -}
header : Element style variation msg -> Element style variation msg
header =
Modify.setNode "header"
{-| -}
section : Element style variation msg -> Element style variation msg
section =
Modify.setNode "section"
{-| -}
nav : Element style variation msg -> Element style variation msg
nav =
Modify.setNode "nav"
{-| -}
article : Element style variation msg -> Element style variation msg
article =
Modify.setNode "article"
{-| -}
aside : Element style variation msg -> Element style variation msg
aside =
Modify.setNode "aside"
{-| -}
button : Element style variation msg -> Element style variation msg
button =
Modify.setNode "button"
---------------------
--- Specialized Elements
---------------------
{-| -}
canvas : Element style variation msg -> Element style variation msg
canvas =
Modify.setNode "canvas"
{-| -}
iframe : Element style variation msg -> Element style variation msg
iframe =
Modify.setNode "iframe"
{-| -}
audio : Element style variation msg -> Element style variation msg
audio =
Modify.setNode "audio"
{-| -}
video : Element style variation msg -> Element style variation msg
video =
Modify.setNode "video"
---------------------
--- Form and Input
---------------------
{-| -}
form : Element style variation msg -> Element style variation msg
form =
Modify.setNode "form"
{-| Create a list of labeled radio button.
This implies a column layout.
radio "lunch" None []
[ option "burrito" True (text "A Burrito!")
, option "taco" False (text "A Taco!")
]
-}
radio : String -> style -> List (Attribute variation msg) -> List (Option style variation msg) -> Element style variation msg
radio group style attributes buttons =
let
toChild (Option value on child) =
let
style =
Modify.getStyle child
attrs =
Modify.getAttrs child
( inputEvents, nonInputEventAttrs ) =
List.partition forInputEvents attrs
forInputEvents attr =
case attr of
InputEvent ev ->
True
_ ->
False
rune =
child
|> Modify.setNode "input"
|> Modify.addAttrList
([ Attr.type_ "radio"
, Attr.name group
, Attr.value value
, Attr.checked on
]
++ inputEvents
)
|> Modify.removeContent
|> Modify.removeStyle
literalLabel =
child
|> Modify.getChild
|> Modify.removeAllAttrs
|> Modify.removeStyle
in
Layout
{ node = "layout"
, style = style
, layout = Style.FlexLayout Style.GoRight []
, attrs = nonInputEventAttrs
, children = Normal [ rune, literalLabel ]
, absolutelyPositioned = Nothing
}
in
column style attributes (List.map toChild buttons)
{-| Create an Option. Can only be used with `radio` and `select`.
-}
option : String -> Bool -> Element style variation msg -> Option style variation msg
option =
Option
{-| -}
type Option style variation msg
= Option String Bool (Element style variation msg)
{-| A standard html dropdown set of options.
select "favorite-animal" MySelectionStyle []
[ option "manatee" False (text "Manatees are pretty cool")
, option "pangolin" False (text "But so are pangolins")
, option "bee" True (text "Bees")
]
-}
select : String -> style -> List (Attribute variation msg) -> List (Option style variation msg) -> Element style variation msg
select group style attributes buttons =
let
toChild (Option value on child) =
child
|> Modify.setNode "option"
|> Modify.addAttrList
[ Attr.value value
, Attr.selected on
]
in
Modify.setNode "select" <|
column style (Attr.name group :: attributes) (List.map toChild buttons)
{-| An automatically labeled checkbox.
-}
checkbox : Bool -> style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg
checkbox on style attrs label =
let
( events, notInputEvents ) =
List.partition forInputEvents attrs
forInputEvents attr =
case attr of
InputEvent ev ->
True
_ ->
False
in
Element
{ node = "label"
, style = (Just style)
, attrs = notInputEvents
, child =
(inlineChildren "div"
Nothing
[]
[ Element
{ node = "input"
, style = Nothing
, attrs =
(Attr.type_ "checkbox"
:: Attr.checked on
:: events
)
, child = empty
, absolutelyPositioned = Nothing
}
, label
]
)
, absolutelyPositioned = Nothing
}
{-| For input elements that are not automatically labeled (checkbox, radio), this will attach a label above the element.
label Label [] (text "check this out") <|
inputText Style [] "The Value!"
-}
label : style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg -> Element style variation msg
label elem attrs label input =
let
-- If naked text is provided, then flexbox won't work.
-- In that case we wrap it in a div.
containedLabel =
case label of
Text dec content ->
Element
{ node = "div"
, style = Nothing
, attrs = []
, child = (Text dec content)
, absolutelyPositioned = Nothing
}
l ->
l
in
node "label" <|
column
elem
attrs
[ label
, input
]
{-| Same as `label`, but places the label below the input field.
-}
labelBelow : style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg -> Element style variation msg
labelBelow elem attrs label input =
let
-- If naked text is provided, then flexbox won't work.
-- In that case we wrap it in a div.
containedLabel =
case label of
Text dec content ->
Element
{ node = "div"
, style = Nothing
, attrs = []
, child = (Text dec content)
, absolutelyPositioned = Nothing
}
l ->
l
in
node "label" <|
column
elem
attrs
[ input
, label
]
{-| -}
textArea : style -> List (Attribute variation msg) -> String -> Element style variation msg
textArea elem attrs content =
Element
{ node = "textarea"
, style = Just elem
, attrs = attrs
, child = text content
, absolutelyPositioned = Nothing
}
{-| Text input
label LabelStyle [] (text "check this out") <|
inputText Style [] "The Value!"
-}
inputText : style -> List (Attribute variation msg) -> String -> Element style variation msg
inputText elem attrs content =
Element
{ node = "input"
, style = Just elem
, attrs = (Attr.type_ "text" :: Attr.value content :: attrs)
, child = Empty
, absolutelyPositioned = Nothing
}
{-| A `full` element will ignore the spacing set for it by the parent, and also grow to cover the parent's padding.
This is mostly useful in text layouts.
-}
full : style -> List (Attribute variation msg) -> Element style variation msg -> Element style variation msg
full elem attrs child =
Element
{ node = "div"
, style = Just elem
, attrs = (Expand :: attrs)
, child = child
, absolutelyPositioned = Nothing
}
{-| A text layout.
Children that are aligned left or right will be floated left or right. Everything else if arranged in the standard 'block' layout of css, meaning a column flowing down.
-}
textLayout : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
textLayout style attrs children =
Layout
{ node = "div"
, style = Just style
, layout = Style.TextLayout True
, attrs = attrs
, children = Normal children
, absolutelyPositioned = Nothing
}
{-| Paragraph is actually a layout if you can believe it!
This is the same as a textLayout, except all of the children are set to `display:inline`.
Because all the children are inline, they will not respect and width or height set on them.
-}
paragraph : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
paragraph style attrs children =
-- Paragraph does not have clearfix, which is what the `TextLayout False` is all about
Layout
{ node = "p"
, style = Just style
, layout = Style.TextLayout False
, attrs = attrs
, children = Normal <| List.map (Modify.addAttrToNonText Inline) children
, absolutelyPositioned = Nothing
}
{-| -}
inlineChildren :
String
-> Maybe style
-> List (Attribute variation msg)
-> List (Element style variation msg)
-> Element style variation msg
inlineChildren node style attrs children =
let
( child, others ) =
case children of
[] ->
( empty, Nothing )
child :: others ->
( Modify.addAttrToNonText Inline child, Just <| List.map (Modify.addAttrToNonText Inline) others )
in
Element
{ node = node
, style = style
, attrs = attrs
, child = child
, absolutelyPositioned = others
}
{-| -}
row : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
row style attrs children =
Layout
{ node = "div"
, style = Just style
, layout = Style.FlexLayout Style.GoRight []
, attrs = attrs
, children = Normal children
, absolutelyPositioned = Nothing
}
{-| -}
column : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
column style attrs children =
Layout
{ node = "div"
, style = Just style
, layout = Style.FlexLayout Style.Down []
, attrs = attrs
, children = Normal children
, absolutelyPositioned = Nothing
}
{-| -}
wrappedRow : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
wrappedRow style attrs children =
Layout
{ node = "div"
, style = Just style
, layout = Style.FlexLayout Style.GoRight [ Style.Wrap True ]
, attrs = attrs
, children = Normal children
, absolutelyPositioned = Nothing
}
{-| -}
wrappedColumn : style -> List (Attribute variation msg) -> List (Element style variation msg) -> Element style variation msg
wrappedColumn style attrs children =
Layout
{ node = "div"
, style = Just style
, layout = Style.FlexLayout Style.Down [ Style.Wrap True ]
, attrs = attrs
, children = Normal children
, absolutelyPositioned = Nothing
}
{-| -}
type alias Grid =
{ rows : List Length
, columns : List Length
}
{-| A table is a special grid
-}
table : style -> List (Attribute variation msg) -> List (List (Element style variation msg)) -> Element style variation msg
table style attrs rows =
let
children =
List.concat <|
List.indexedMap
(\row columns ->
List.indexedMap
(\col content ->
area
{ start = ( row, col )
, width = 1
, height = 1
}
content
)
columns
)
rows
in
grid style { columns = [], rows = [] } attrs children
{-| An interface to css grid. Here's a basic example:
grid MyGridStyle
{ columns = [ px 100, px 100, px 100, px 100 ]
, rows =
[ px 100
, px 100
, px 100
, px 100
]
}
[]
[ area
{ start = ( 0, 0 )
, width = 1
, height = 1
}
(el Box [] (text "box"))
, area
{ start = ( 1, 1 )
, width = 1
, height = 2
}
(el Box [] (text "box"))
]
-}
grid : style -> Grid -> List (Attribute variation msg) -> List (OnGrid (Element style variation msg)) -> Element style variation msg
grid style template attrs children =
let
prepare el =
Normal <| List.map (\(OnGrid x) -> x) el
( spacing, notSpacingAttrs ) =
List.partition forSpacing attrs
forSpacing attr =
case attr of
Spacing _ _ ->
True
_ ->
False
gridAttributes =
case List.head <| List.reverse spacing of
Nothing ->
[]
Just (Spacing x y) ->
[ Style.GridGap x y ]
_ ->
[]
in
Layout
{ node = "div"
, style = Just style
, layout = Style.Grid (Style.GridTemplate template) gridAttributes
, attrs = notSpacingAttrs
, children = prepare children
, absolutelyPositioned = Nothing
}
{-| -}
type alias NamedGrid =
{ rows : List ( Length, List Style.NamedGridPosition )
, columns : List Length
}
{-| With a named grid, you can name areas within the grid and use that name to place an element.
Here's an example:
namedGrid MyGridStyle
{ columns = [ px 200, px 200, px 200, fill 1 ]
, rows =
[ px 200 => [ spanAll "header" ]
, px 200 => [ span 3 "content", span 1 "sidebar" ]
, px 200 => [ span 3 "content", span 1 "sidebar" ]
, px 200 => [ spanAll "footer" ]
]
}
[]
[ named "header"
(el Box [] (text "box"))
, named "sidebar"
(el Box [] (text "box"))
]
**note:** this example uses rocket(`=>`) as a synonym for creating a tuple. For more, check out the [rocket update](https://github.com/NoRedInk/rocket-update) package!
-}
namedGrid : style -> NamedGrid -> List (Attribute variation msg) -> List (NamedOnGrid (Element style variation msg)) -> Element style variation msg
namedGrid style template attrs children =
let
prepare el =
Normal <| List.map (\(NamedOnGrid x) -> x) el
( spacing, notSpacingAttrs ) =
List.partition forSpacing attrs
forSpacing attr =
case attr of
Spacing _ _ ->
True
_ ->
False
gridAttributes =
case List.head <| List.reverse spacing of
Nothing ->
[]