Source file explicit_grid.ml
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
open Geometry
open Style
open Style.Grid
type auto_repeat_strategy =
| Max_repetitions_that_do_not_overflow
(** If the grid container has a definite size or max size in the relevant
axis:
- then the number of repetitions is the largest possible positive
integer that does not cause the grid to overflow the content box of
its grid container. *)
| Min_repetitions_that_do_overflow
(** Otherwise, if the grid container has a definite min size in the
relevant axis:
- then the number of repetitions is the smallest possible positive
integer that fulfills that minimum requirement *)
let track_definite_value sizing_function parent_size =
let max_size =
Track_sizing_function.Max.definite_value sizing_function parent_size
in
let min_size =
Track_sizing_function.Min.definite_value sizing_function parent_size
in
match (max_size, min_size) with
| Some max_val, Some min_val -> Some (max max_val min_val)
| Some max_val, None -> Some max_val
| None, Some min_val -> Some min_val
| None, None -> None
let compute_explicit_grid_size_in_axis ~style ~auto_fit_container_size
~auto_fit_strategy ~resolve_calc_value ~axis =
let template =
match axis with
| Absolute_axis.Horizontal -> Style.grid_template_columns style
| Absolute_axis.Vertical -> Style.grid_template_rows style
in
let track_count = List.length template in
if track_count = 0 then (0, 0)
else
let template_has_repetitions_with_zero_tracks =
List.exists
(function
| Template_component.Single _ -> false
| Template_component.Repeat rep -> Repetition.track_count rep = 0)
template
in
if template_has_repetitions_with_zero_tracks then (0, 0)
else
let non_auto_repeating_track_count =
List.fold_left
(fun acc track_def ->
match track_def with
| Template_component.Single _ -> acc + 1
| Template_component.Repeat rep -> (
match Repetition.count rep with
| Repetition_count.Count count ->
acc + (count * Repetition.track_count rep)
| Repetition_count.Auto_fit | Repetition_count.Auto_fill -> acc))
0 template
in
let auto_repetition_count =
List.fold_left
(fun acc track_def ->
match track_def with
| Template_component.Repeat rep -> (
match Repetition.count rep with
| Repetition_count.Auto_fit | Repetition_count.Auto_fill ->
acc + 1
| _ -> acc)
| _ -> acc)
0 template
in
let all_track_defs_have_fixed_component =
List.for_all
(function
| Template_component.Single sizing_function ->
Track_sizing_function.has_fixed_component sizing_function
| Template_component.Repeat rep ->
List.for_all Track_sizing_function.has_fixed_component
(Repetition.tracks rep))
template
in
let template_is_valid =
auto_repetition_count = 0
|| (auto_repetition_count = 1 && all_track_defs_have_fixed_component)
in
if not template_is_valid then (0, 0)
else if auto_repetition_count = 0 then
(0, non_auto_repeating_track_count)
else
let repetition_definition =
List.find_map
(function
| Template_component.Single _ -> None
| Template_component.Repeat rep -> (
match Repetition.count rep with
| Repetition_count.Count _ -> None
| Repetition_count.Auto_fit | Repetition_count.Auto_fill ->
Some rep))
template
|> Option.get
in
let repetition_tracks = Repetition.tracks repetition_definition in
let repetition_track_count = List.length repetition_tracks in
let num_repetitions =
match auto_fit_container_size with
| None -> 1
| Some inner_container_size -> (
let parent_size = Some inner_container_size in
let non_repeating_track_used_space =
List.fold_left
(fun acc track_def ->
match track_def with
| Template_component.Single sizing_function ->
let value =
track_definite_value sizing_function parent_size
in
acc +. Option.value value ~default:0.0
| Template_component.Repeat rep -> (
match Repetition.count rep with
| Repetition_count.Count count ->
let sum =
List.fold_left
(fun acc sizing_function ->
let value =
track_definite_value sizing_function
parent_size
in
acc +. Option.value value ~default:0.0)
0.0 (Repetition.tracks rep)
in
acc +. (sum *. float_of_int count)
| Repetition_count.Auto_fit | Repetition_count.Auto_fill
->
acc))
0.0 template
in
let gap_size =
let gap = Style.gap style in
Size.get_absolute axis gap |> fun lp ->
Length_percentage.resolve_or_zero lp parent_size
resolve_calc_value
in
let per_repetition_track_used_space =
List.fold_left
(fun acc sizing_function ->
let value =
track_definite_value sizing_function parent_size
in
acc +. Option.value value ~default:0.0)
0.0 repetition_tracks
in
let first_repetition_and_non_repeating_tracks_used_space =
non_repeating_track_used_space
+. per_repetition_track_used_space
+. float_of_int
(max 0
(non_auto_repeating_track_count + repetition_track_count
- 1))
*. gap_size
in
if
first_repetition_and_non_repeating_tracks_used_space
> inner_container_size
then 1
else
let per_repetition_gap_used_space =
float_of_int repetition_track_count *. gap_size
in
let per_repetition_used_space =
per_repetition_track_used_space
+. per_repetition_gap_used_space
in
let num_repetition_that_fit =
(inner_container_size
-. first_repetition_and_non_repeating_tracks_used_space)
/. per_repetition_used_space
in
match auto_fit_strategy with
| Max_repetitions_that_do_not_overflow ->
int_of_float (floor num_repetition_that_fit) + 1
| Min_repetitions_that_do_overflow ->
int_of_float (ceil num_repetition_that_fit) + 1)
in
let grid_template_track_count =
non_auto_repeating_track_count
+ (repetition_track_count * num_repetitions)
in
(num_repetitions, grid_template_track_count)
let create_implicit_tracks tracks count
(auto_tracks : Track_sizing_function.t array)
(gap : Style.length_percentage) =
let auto_len = Array.length auto_tracks in
if auto_len = 0 then invalid_arg "create_implicit_tracks: empty auto_tracks";
for i = 0 to count - 1 do
let track_def = auto_tracks.(i mod auto_len) in
let track =
Track_sizing_function.make
~min:(Track_sizing_function.min_sizing_function track_def)
~max:(Track_sizing_function.max_sizing_function track_def)
|> Grid_track.create
in
tracks := !tracks @ [ track ];
tracks := !tracks @ [ Grid_track.gutter gap ]
done
let initialize_grid_tracks ~tracks ~counts ~style ~axis ~track_has_items =
let track_template, auto_tracks, gap =
match axis with
| Absolute_axis.Horizontal ->
( Style.grid_template_columns style,
Style.grid_auto_columns style,
(Style.gap style).width )
| Absolute_axis.Vertical ->
( Style.grid_template_rows style,
Style.grid_auto_rows style,
(Style.gap style).height )
in
tracks := [];
let initial_gutter = Grid_track.gutter gap in
tracks := [ initial_gutter ];
let auto_track_count = List.length auto_tracks in
if Grid_track_counts.negative_implicit counts > 0 then (
if auto_track_count = 0 then
create_implicit_tracks tracks
(Grid_track_counts.negative_implicit counts)
(Array.make
(Grid_track_counts.negative_implicit counts)
Track_sizing_function.auto)
gap
else
let total = Grid_track_counts.negative_implicit counts in
let offset = auto_track_count - (total mod auto_track_count) in
let auto_array = Array.of_list auto_tracks in
let filled = Array.make total Track_sizing_function.auto in
for i = 0 to total - 1 do
let src = (offset + i) mod auto_track_count in
filled.(i) <- auto_array.(src)
done;
create_implicit_tracks tracks total filled gap);
let current_track_index = ref (Grid_track_counts.negative_implicit counts) in
if Grid_track_counts.explicit counts > 0 then
if track_template <> [] then
List.iter
(function
| Template_component.Single sizing_function ->
let track =
Track_sizing_function.make
~min:
(Track_sizing_function.min_sizing_function sizing_function)
~max:
(Track_sizing_function.max_sizing_function sizing_function)
|> Grid_track.create
in
tracks := !tracks @ [ track ];
tracks := !tracks @ [ Grid_track.gutter gap ];
incr current_track_index
| Template_component.Repeat rep -> (
match Repetition.count rep with
| Repetition_count.Count count ->
let track_list = Repetition.tracks rep in
let track_array = Array.of_list track_list in
let track_len = Array.length track_array in
let total = Repetition.track_count rep * count in
for i = 0 to total - 1 do
let sizing_function = track_array.(i mod track_len) in
let track =
Track_sizing_function.make
~min:
(Track_sizing_function.min_sizing_function
sizing_function)
~max:
(Track_sizing_function.max_sizing_function
sizing_function)
|> Grid_track.create
in
tracks := !tracks @ [ track ];
tracks := !tracks @ [ Grid_track.gutter gap ];
incr current_track_index
done
| Repetition_count.Auto_fit | Repetition_count.Auto_fill ->
let auto_repeated_track_count =
Grid_track_counts.explicit counts
- (List.length track_template - 1)
in
let track_list = Repetition.tracks rep in
let track_array = Array.of_list track_list in
let track_len = Array.length track_array in
for i = 0 to auto_repeated_track_count - 1 do
let track_def = track_array.(i mod track_len) in
let track =
Track_sizing_function.make
~min:
(Track_sizing_function.min_sizing_function track_def)
~max:
(Track_sizing_function.max_sizing_function track_def)
|> Grid_track.create
in
let gutter = Grid_track.gutter gap in
let track, gutter =
if
Repetition.count rep = Repetition_count.Auto_fit
&& not (track_has_items !current_track_index)
then
(Grid_track.collapse track, Grid_track.collapse gutter)
else (track, gutter)
in
tracks := !tracks @ [ track ];
tracks := !tracks @ [ gutter ];
incr current_track_index
done))
track_template;
let grid_area_tracks =
Grid_track_counts.negative_implicit counts
+ Grid_track_counts.explicit counts
- !current_track_index
in
let () =
let total = Grid_track_counts.positive_implicit counts + grid_area_tracks in
if total > 0 then (
if auto_track_count = 0 then
create_implicit_tracks tracks total
(Array.make total Track_sizing_function.auto)
gap
else
let auto_array = Array.of_list auto_tracks in
let auto_len = Array.length auto_array in
let filled = Array.make total Track_sizing_function.auto in
for i = 0 to total - 1 do
filled.(i) <- auto_array.(i mod auto_len)
done;
create_implicit_tracks tracks total filled gap)
in
match !tracks with
| [] -> ()
| first :: rest -> (
tracks := Grid_track.collapse first :: rest;
match List.rev !tracks with
| [] -> ()
| last :: rest_rev ->
tracks := List.rev (Grid_track.collapse last :: rest_rev))