Source file track_sizing.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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
open Geometry
open Style
open Tree
type item_batcher = {
axis : abstract_axis;
mutable index_offset : int;
mutable current_span : int;
mutable current_is_flex : bool;
}
type intrinsic_contribution_type =
| Minimum
| Maximum
module Intrinsic_size_measurer = struct
type 'tree t = {
tree : 'tree;
other_axis_tracks : Grid_track.t array;
get_track_size_estimate :
Grid_track.t -> float option -> 'tree -> float option;
axis : abstract_axis;
inner_node_size : float option size;
}
let available_space (type tree) (measurer : tree t) (item : Grid_item.t) :
float option size =
let item_other_axis_size =
let track_range =
Grid_item.track_range_excluding_lines item
(Abstract_axis.other measurer.axis)
in
let start_idx = fst track_range in
let end_idx = snd track_range in
let tracks =
Array.sub measurer.other_axis_tracks start_idx (end_idx - start_idx)
in
Array.fold_left
(fun acc track ->
match acc with
| None -> None
| Some sum -> (
match
measurer.get_track_size_estimate track
(Size.get
(Abstract_axis.other measurer.axis)
measurer.inner_node_size)
measurer.tree
with
| None -> None
| Some size ->
Some
(sum +. size
+. track.Grid_track.content_alignment_adjustment)))
(Some 0.0) tracks
in
let size = Size.none in
match measurer.axis with
| Abstract_axis.Inline -> { size with height = item_other_axis_size }
| Abstract_axis.Block -> { size with width = item_other_axis_size }
let margins_axis_sums_with_baseline_shims (type tree)
(module Tree : LAYOUT_PARTIAL_TREE with type t = tree) (measurer : tree t)
(item : Grid_item.t) : float size =
let calc = Tree.resolve_calc_value measurer.tree in
let inner_node_width = measurer.inner_node_size.width in
let margin_rect =
Rect.
{
left =
Length_percentage_auto.resolve_or_zero item.margin.left (Some 0.0)
calc;
right =
Length_percentage_auto.resolve_or_zero item.margin.right (Some 0.0)
calc;
top =
Length_percentage_auto.resolve_or_zero item.margin.top
inner_node_width calc
+. item.baseline_shim;
bottom =
Length_percentage_auto.resolve_or_zero item.margin.bottom
inner_node_width calc;
}
in
Rect.sum_axes margin_rect
let min_content_contribution (type tree)
(module Tree : LAYOUT_PARTIAL_TREE with type t = tree) (measurer : tree t)
(item : Grid_item.t) : float =
let available_space = available_space measurer item in
let margin_axis_sums =
margins_axis_sums_with_baseline_shims (module Tree) measurer item
in
match Size.get measurer.axis item.min_content_contribution_cache with
| Some cached_value ->
cached_value +. Size.get measurer.axis margin_axis_sums
| None ->
let known_dimensions =
Grid_item.known_dimensions
(module Tree)
item measurer.tree measurer.inner_node_size available_space
in
let layout_output =
Tree.compute_child_layout measurer.tree item.node
(Layout_input.make ~run_mode:Run_mode.Compute_size
~sizing_mode:Sizing_mode.Inherent_size
~axis:
(match measurer.axis with
| Abstract_axis.Inline -> Requested_axis.Horizontal
| Abstract_axis.Block -> Requested_axis.Vertical)
~known_dimensions ~parent_size:measurer.inner_node_size
~available_space:
(Size.map
(fun opt ->
match opt with
| Some size -> Available_space.Definite size
| None -> Available_space.Min_content)
available_space)
~vertical_margins_are_collapsible:Line.both_false)
in
let contribution =
match measurer.axis with
| Abstract_axis.Inline -> (Layout_output.size layout_output).width
| Abstract_axis.Block -> (Layout_output.size layout_output).height
in
item.min_content_contribution_cache <-
Size.set measurer.axis (Some contribution)
item.min_content_contribution_cache;
contribution +. Size.get measurer.axis margin_axis_sums
let max_content_contribution (type tree)
(module Tree : LAYOUT_PARTIAL_TREE with type t = tree) (measurer : tree t)
(item : Grid_item.t) : float =
let available_space = available_space measurer item in
let margin_axis_sums =
margins_axis_sums_with_baseline_shims (module Tree) measurer item
in
match Size.get measurer.axis item.max_content_contribution_cache with
| Some cached_value ->
cached_value +. Size.get measurer.axis margin_axis_sums
| None ->
let known_dimensions =
Grid_item.known_dimensions
(module Tree)
item measurer.tree measurer.inner_node_size available_space
in
let layout_output =
Tree.compute_child_layout measurer.tree item.node
(Layout_input.make ~run_mode:Run_mode.Compute_size
~sizing_mode:Sizing_mode.Inherent_size
~axis:
(match measurer.axis with
| Abstract_axis.Inline -> Requested_axis.Horizontal
| Abstract_axis.Block -> Requested_axis.Vertical)
~known_dimensions ~parent_size:measurer.inner_node_size
~available_space:
(Size.map
(fun opt ->
match opt with
| Some size -> Available_space.Definite size
| None -> Available_space.Max_content)
available_space)
~vertical_margins_are_collapsible:Line.both_false)
in
let contribution =
match measurer.axis with
| Abstract_axis.Inline -> (Layout_output.size layout_output).width
| Abstract_axis.Block -> (Layout_output.size layout_output).height
in
item.max_content_contribution_cache <-
Size.set measurer.axis (Some contribution)
item.max_content_contribution_cache;
contribution +. Size.get measurer.axis margin_axis_sums
let minimum_contribution (type tree)
(module Tree : LAYOUT_PARTIAL_TREE with type t = tree) (measurer : tree t)
(item : Grid_item.t) (axis_tracks : Grid_track.t array) : float =
let calc = Tree.resolve_calc_value measurer.tree in
let known_dimensions = available_space measurer item in
let inner_node_size = measurer.inner_node_size in
let margin_axis_sums =
margins_axis_sums_with_baseline_shims (module Tree) measurer item
in
match Size.get measurer.axis item.minimum_contribution_cache with
| Some cached_value ->
cached_value +. Size.get measurer.axis margin_axis_sums
| None ->
let padding =
Rect.map
(fun lp ->
Length_percentage.resolve_or_zero lp inner_node_size.width calc)
item.padding
in
let border =
Rect.map
(fun lp ->
Length_percentage.resolve_or_zero lp inner_node_size.width calc)
item.border
in
let padding_border_size = Rect.sum_axes (Rect.add padding border) in
let box_sizing_adjustment =
if item.box_sizing = Box_sizing.Content_box then padding_border_size
else Size.zero
in
let maybe_min v_opt limit_opt =
match (v_opt, limit_opt) with
| None, _ -> None
| Some v, None -> Some v
| Some v, Some lim -> Some (min v lim)
in
let size =
( ( ( Dimension.maybe_resolve
(Size.get measurer.axis item.size)
(Size.get measurer.axis inner_node_size)
calc
|> fun s_opt ->
match s_opt with
| Some s -> (
Size.apply_aspect_ratio item.aspect_ratio
(match measurer.axis with
| Abstract_axis.Inline ->
Size.{ width = Some s; height = None }
| Abstract_axis.Block ->
Size.{ width = None; height = Some s })
|> Size.get measurer.axis
|> fun v_opt ->
match v_opt with
| Some v ->
Some (v +. Size.get measurer.axis box_sizing_adjustment)
| None -> None)
| None -> None )
|> fun v_opt ->
match v_opt with
| Some _ -> v_opt
| None -> (
Dimension.maybe_resolve
(Size.get measurer.axis item.min_size)
(Size.get measurer.axis inner_node_size)
calc
|> fun s_opt ->
match s_opt with
| Some s -> (
Size.apply_aspect_ratio item.aspect_ratio
(match measurer.axis with
| Abstract_axis.Inline ->
Size.{ width = Some s; height = None }
| Abstract_axis.Block ->
Size.{ width = None; height = Some s })
|> Size.get measurer.axis
|> fun v_opt ->
match v_opt with
| Some v ->
Some
(v +. Size.get measurer.axis box_sizing_adjustment)
| None -> None)
| None -> None) )
|> fun v_opt ->
match v_opt with
| Some _ -> v_opt
| None ->
let overflow_val =
match measurer.axis with
| Abstract_axis.Inline -> item.overflow.x
| Abstract_axis.Block -> item.overflow.y
in
Dimension.to_option
(Overflow.to_automatic_min_size overflow_val) )
|> fun v_opt ->
match v_opt with
| Some v -> v
| None ->
let start_idx, end_idx =
Grid_item.track_range_excluding_lines item measurer.axis
in
let item_axis_tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
let spans_auto_min_track =
Array.exists
(fun track ->
Grid.Track_sizing_function.Min.is_auto
track.Grid_track.track_sizing_function)
item_axis_tracks
in
let only_span_one_track = Array.length item_axis_tracks = 1 in
let spans_a_flexible_track =
Array.exists
(fun track ->
Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function)
item_axis_tracks
in
let use_content_based_minimum =
spans_auto_min_track
&& (only_span_one_track || not spans_a_flexible_track)
in
if use_content_based_minimum then
let minimum_contribution =
let available_space_for_contribution = known_dimensions in
Grid_item.min_content_contribution_cached item measurer.axis
(module Tree)
measurer.tree available_space_for_contribution
inner_node_size
in
if item.is_compressible_replaced then
let size_cap =
Dimension.maybe_resolve
(Size.get measurer.axis item.size)
(Some 0.0) calc
in
let max_size_cap =
Dimension.maybe_resolve
(Size.get measurer.axis item.max_size)
(Some 0.0) calc
in
maybe_min (Some minimum_contribution) size_cap
|> (fun v -> maybe_min v max_size_cap)
|> Option.value ~default:minimum_contribution
else minimum_contribution
else 0.0
in
let limit =
Grid_item.spanned_fixed_track_limit item measurer.axis axis_tracks
(Size.get measurer.axis inner_node_size)
calc
in
let final_size =
maybe_min (Some size) limit |> Option.value ~default:size
in
item.minimum_contribution_cache <-
Size.set measurer.axis (Some final_size)
item.minimum_contribution_cache;
final_size +. Size.get measurer.axis margin_axis_sums
end
let new_item_batcher (axis : abstract_axis) : item_batcher =
{ axis; index_offset = 0; current_span = 1; current_is_flex = false }
let item_batcher_next (batcher : item_batcher) (items : Grid_item.t array) :
(Grid_item.t array * bool) option =
if batcher.current_is_flex || batcher.index_offset >= Array.length items then
None
else
let item = items.(batcher.index_offset) in
batcher.current_span <- Grid_item.span item batcher.axis;
batcher.current_is_flex <-
Grid_item.crosses_flexible_track item batcher.axis;
let next_index_offset =
if batcher.current_is_flex then Array.length items
else
let rec find_next idx =
if idx >= Array.length items then Array.length items
else
let item = items.(idx) in
if
Grid_item.crosses_flexible_track item batcher.axis
|| Grid_item.span item batcher.axis > batcher.current_span
then idx
else find_next (idx + 1)
in
find_next (batcher.index_offset + 1)
in
let batch =
Array.sub items batcher.index_offset
(next_index_offset - batcher.index_offset)
in
batcher.index_offset <- next_index_offset;
Some (batch, batcher.current_is_flex)
let cmp_by_cross_flex_then_span_then_start (axis : abstract_axis)
(item_a : Grid_item.t) (item_b : Grid_item.t) : int =
match
( Grid_item.crosses_flexible_track item_a axis,
Grid_item.crosses_flexible_track item_b axis )
with
| false, true -> -1
| true, false -> 1
| _ -> (
let placement_a = Grid_item.placement item_a axis in
let placement_b = Grid_item.placement item_b axis in
let span_a = Grid_item.span item_a axis in
let span_b = Grid_item.span item_b axis in
match Int.compare span_a span_b with
| 0 -> Int.compare placement_a.start placement_b.start
| cmp -> cmp)
let compute_alignment_gutter_adjustment (alignment : align_content)
(axis_inner_node_size : float option)
(get_track_size_estimate : Grid_track.t -> float option -> float option)
(tracks : Grid_track.t array) : float =
if Array.length tracks <= 1 then 0.0
else
let outer_gutter_weight =
match alignment with
| Start | Flex_start | End | Flex_end | Center -> 1
| Stretch | Space_between -> 0
| Space_around -> 1
| Space_evenly -> 1
in
let inner_gutter_weight =
match alignment with
| Flex_start | Start | Flex_end | End | Center | Stretch -> 0
| Space_between -> 1
| Space_around -> 2
| Space_evenly -> 1
in
if inner_gutter_weight = 0 then 0.0
else
match axis_inner_node_size with
| None -> 0.0
| Some axis_inner_node_size ->
let track_size_sum_opt =
Array.fold_left
(fun acc track ->
match
( acc,
get_track_size_estimate track (Some axis_inner_node_size) )
with
| Some sum, Some size -> Some (sum +. size)
| _ -> None)
(Some 0.0) tracks
in
let free_space =
match track_size_sum_opt with
| Some track_size_sum ->
max 0.0 (axis_inner_node_size -. track_size_sum)
| None -> 0.0
in
let weighted_track_count =
((Array.length tracks - 3) / 2 * inner_gutter_weight)
+ (2 * outer_gutter_weight)
in
free_space
/. float_of_int weighted_track_count
*. float_of_int inner_gutter_weight
let resolve_item_track_indexes (items : Grid_item.t array)
(column_counts : Style.Grid.track_counts)
(row_counts : Style.Grid.track_counts) : unit =
Array.iter
(fun item ->
let into_track_vec_index line track_counts =
let negative_implicit = track_counts.Style.Grid.negative_implicit in
if line < -negative_implicit then
failwith
"OriginZero grid line cannot be less than the number of negative \
grid lines"
else if line >= 0 then
let explicit_and_pos_implicit =
track_counts.Style.Grid.explicit
+ track_counts.Style.Grid.positive_implicit
in
if line > explicit_and_pos_implicit then
failwith
"OriginZero grid line cannot be more than the number of positive \
grid lines"
else
2 * (negative_implicit + line)
else
2 * (negative_implicit + line)
in
item.Grid_item.column_indexes <-
Line.map
(fun line -> into_track_vec_index line column_counts)
item.Grid_item.column;
item.Grid_item.row_indexes <-
Line.map
(fun line -> into_track_vec_index line row_counts)
item.Grid_item.row)
items
let determine_if_item_crosses_flexible_or_intrinsic_tracks
(items : Grid_item.t array) (columns : Grid_track.t array)
(rows : Grid_track.t array) : unit =
Array.iter
(fun item ->
let col_start_idx, col_end_idx =
Grid_item.track_range_excluding_lines item Abstract_axis.Inline
in
let col_tracks =
Array.sub columns col_start_idx (col_end_idx - col_start_idx)
in
item.crosses_flexible_column <-
Array.exists Grid_track.is_flexible col_tracks;
item.crosses_intrinsic_column <-
Array.exists Grid_track.has_intrinsic_sizing_function col_tracks;
let row_start_idx, row_end_idx =
Grid_item.track_range_excluding_lines item Abstract_axis.Block
in
let row_tracks =
Array.sub rows row_start_idx (row_end_idx - row_start_idx)
in
item.crosses_flexible_row <-
Array.exists Grid_track.is_flexible row_tracks;
item.crosses_intrinsic_row <-
Array.exists Grid_track.has_intrinsic_sizing_function row_tracks)
items
let flush_planned_base_size_increases (tracks : Grid_track.t array) : unit =
Array.iter
(fun track ->
track.Grid_track.base_size <-
track.Grid_track.base_size
+. track.Grid_track.base_size_planned_increase;
track.Grid_track.base_size_planned_increase <- 0.0)
tracks
let flush_planned_growth_limit_increases (tracks : Grid_track.t array)
(set_infinitely_growable : bool) : unit =
Array.iter
(fun track ->
if track.Grid_track.growth_limit_planned_increase > 0.0 then (
track.Grid_track.growth_limit <-
(if track.Grid_track.growth_limit = Float.infinity then
track.Grid_track.base_size
+. track.Grid_track.growth_limit_planned_increase
else
track.Grid_track.growth_limit
+. track.Grid_track.growth_limit_planned_increase);
track.Grid_track.infinitely_growable <- set_infinitely_growable)
else track.Grid_track.infinitely_growable <- false;
track.Grid_track.growth_limit_planned_increase <- 0.0)
tracks
let initialize_track_sizes (type t) (tree : t)
(resolve_calc_value : t -> int -> float -> float)
(axis_tracks : Grid_track.t array) (axis_inner_node_size : float option) :
unit =
Array.iter
(fun track ->
track.Grid_track.base_size <-
(match
Style.Grid.Track_sizing_function.Min.definite_value_with_calc
track.Grid_track.track_sizing_function axis_inner_node_size
(resolve_calc_value tree)
with
| Some value -> value
| None -> 0.0);
track.Grid_track.growth_limit <-
(match
Style.Grid.Track_sizing_function.Max.definite_value_with_calc
track.Grid_track.track_sizing_function axis_inner_node_size
(resolve_calc_value tree)
with
| Some value -> value
| None -> Float.infinity);
if track.Grid_track.growth_limit < track.Grid_track.base_size then
if
Style.Grid.Track_sizing_function.Max.is_fit_content
track.Grid_track.track_sizing_function
then
track.Grid_track.base_size <- track.Grid_track.growth_limit
else track.Grid_track.growth_limit <- track.Grid_track.base_size)
axis_tracks
let resolve_item_baselines (type t)
(module Tree : LAYOUT_PARTIAL_TREE with type t = t) (tree : t)
(axis : abstract_axis) (items : Grid_item.t array)
(inner_node_size : float option size) : unit =
let other_axis = Abstract_axis.other axis in
Array.sort
(fun a b ->
let a_start = (Grid_item.placement a other_axis).start in
let b_start = (Grid_item.placement b other_axis).start in
Int.compare a_start b_start)
items;
let rec process_rows start_idx =
if start_idx >= Array.length items then ()
else
let current_row =
(Grid_item.placement items.(start_idx) other_axis).start
in
let rec find_row_end idx =
if idx >= Array.length items then idx
else if
(Grid_item.placement items.(idx) other_axis).start <> current_row
then idx
else find_row_end (idx + 1)
in
let end_idx = find_row_end start_idx in
let row_items = Array.sub items start_idx (end_idx - start_idx) in
let row_baseline_item_count =
Array.fold_left
(fun count item ->
if item.Grid_item.align_self = Align_items.Baseline then count + 1
else count)
0 row_items
in
if row_baseline_item_count > 1 then (
Array.iter
(fun item ->
let layout_output =
Tree.compute_child_layout tree item.Grid_item.node
(Layout_input.make ~known_dimensions:Size.none
~parent_size:inner_node_size
~available_space:
(Size.map (fun _ -> Available_space.Min_content) Size.none)
~sizing_mode:Sizing_mode.Inherent_size
~run_mode:Run_mode.Perform_layout ~axis:Requested_axis.Both
~vertical_margins_are_collapsible:Line.both_false)
in
let baseline = (Layout_output.first_baselines layout_output).y in
let height = (Layout_output.size layout_output).height in
let calc = Tree.resolve_calc_value tree in
item.Grid_item.baseline <-
Some
(Option.value baseline ~default:height
+. Length_percentage_auto.resolve_or_zero
item.Grid_item.margin.top inner_node_size.width calc))
row_items;
let row_max_baseline =
Array.fold_left
(fun max_baseline item ->
let baseline =
Option.value item.Grid_item.baseline ~default:0.0
in
max max_baseline baseline)
0.0 row_items
in
Array.iter
(fun item ->
item.Grid_item.baseline_shim <-
row_max_baseline
-. Option.value item.Grid_item.baseline ~default:0.0)
row_items);
process_rows end_idx
in
process_rows 0
let distribute_space_up_to_limits (space_to_distribute : float)
(tracks : Grid_track.t array) (track_is_affected : Grid_track.t -> bool)
(track_distribution_proportion : Grid_track.t -> float)
(track_affected_property : Grid_track.t -> float)
(track_limit : Grid_track.t -> float) : float =
let threshold = 0.01 in
let space_to_distribute = ref space_to_distribute in
while !space_to_distribute > threshold do
let track_distribution_proportion_sum =
Array.fold_left
(fun sum track ->
if
track_is_affected track
&& track_affected_property track
+. track.Grid_track.item_incurred_increase
< track_limit track
then sum +. track_distribution_proportion track
else sum)
0.0 tracks
in
if track_distribution_proportion_sum = 0.0 then
space_to_distribute := 0.0
else
let min_increase_limit =
Array.fold_left
(fun min_limit track ->
if
track_is_affected track
&& track_affected_property track
+. track.Grid_track.item_incurred_increase
< track_limit track
then
let limit =
(track_limit track -. track_affected_property track)
/. track_distribution_proportion track
in
if min_limit = Float.infinity then limit else min limit min_limit
else min_limit)
Float.infinity tracks
in
let iteration_item_incurred_increase =
min min_increase_limit
(!space_to_distribute /. track_distribution_proportion_sum)
in
Array.iter
(fun track ->
if track_is_affected track then
let increase =
iteration_item_incurred_increase
*. track_distribution_proportion track
in
if
increase > 0.0
&& track_affected_property track +. increase
<= track_limit track +. threshold
then (
track.Grid_track.item_incurred_increase <-
track.Grid_track.item_incurred_increase +. increase;
space_to_distribute := !space_to_distribute -. increase))
tracks
done;
!space_to_distribute
let distribute_item_space_to_growth_limit (space : float)
(tracks : Grid_track.t array) (track_is_affected : Grid_track.t -> bool)
(axis_inner_node_size : float option) : unit =
if space = 0.0 || not (Array.exists track_is_affected tracks) then ()
else
let track_sizes =
Array.fold_left
(fun sum track ->
if track.Grid_track.growth_limit = Float.infinity then
sum +. track.Grid_track.base_size
else sum +. track.Grid_track.growth_limit)
0.0 tracks
in
let = max 0.0 (space -. track_sizes) in
let number_of_growable_tracks =
Array.fold_left
(fun count track ->
if
track_is_affected track
&& (track.Grid_track.infinitely_growable
|| Grid_track.fit_content_limited_growth_limit track
axis_inner_node_size
= Float.infinity)
then count + 1
else count)
0 tracks
in
if number_of_growable_tracks > 0 then
let item_incurred_increase =
extra_space /. float_of_int number_of_growable_tracks
in
Array.iter
(fun track ->
if
track_is_affected track
&& (track.Grid_track.infinitely_growable
|| Grid_track.fit_content_limited_growth_limit track
axis_inner_node_size
= Float.infinity)
then track.Grid_track.item_incurred_increase <- item_incurred_increase)
tracks
else
distribute_space_up_to_limits extra_space tracks track_is_affected
(fun _ -> 1.0)
(fun track ->
if track.Grid_track.growth_limit = Float.infinity then
track.Grid_track.base_size
else track.Grid_track.growth_limit)
(fun track -> Grid_track.fit_content_limit track axis_inner_node_size)
|> ignore;
Array.iter
(fun track ->
if
track.Grid_track.item_incurred_increase
> track.Grid_track.growth_limit_planned_increase
then
track.Grid_track.growth_limit_planned_increase <-
track.Grid_track.item_incurred_increase;
track.Grid_track.item_incurred_increase <- 0.0)
tracks
let distribute_item_space_to_base_size (is_flex : bool)
(use_flex_factor_for_distribution : bool) (space : float)
(tracks : Grid_track.t array) (track_is_affected : Grid_track.t -> bool)
(track_limit : Grid_track.t -> float)
(intrinsic_contribution_type : intrinsic_contribution_type) : unit =
if space = 0.0 || not (Array.exists track_is_affected tracks) then ()
else
let track_distribution_proportion =
if is_flex && use_flex_factor_for_distribution then fun track ->
Grid_track.flex_factor track
else fun _ -> 1.0
in
let final_track_is_affected =
if is_flex then fun track ->
Grid_track.is_flexible track && track_is_affected track
else track_is_affected
in
let track_sizes =
Array.fold_left
(fun sum track -> sum +. track.Grid_track.base_size)
0.0 tracks
in
let = max 0.0 (space -. track_sizes) in
let threshold = 0.000001 in
let remaining_space =
distribute_space_up_to_limits extra_space tracks final_track_is_affected
track_distribution_proportion
(fun track -> track.Grid_track.base_size)
track_limit
in
(if remaining_space > threshold then
let filter =
match intrinsic_contribution_type with
| Minimum ->
fun track ->
Style.Grid.Track_sizing_function.Max.is_intrinsic
track.Grid_track.track_sizing_function
| Maximum ->
fun track ->
Style.Grid.Track_sizing_function.Min.is_max_content
track.Grid_track.track_sizing_function
|| Style.Grid.Track_sizing_function.Max.is_max_or_fit_content
track.Grid_track.track_sizing_function
in
let has_matching_tracks =
Array.exists
(fun track -> final_track_is_affected track && filter track)
tracks
in
let combined_filter =
if has_matching_tracks then fun track ->
final_track_is_affected track && filter track
else final_track_is_affected
in
distribute_space_up_to_limits remaining_space tracks combined_filter
track_distribution_proportion
(fun track -> track.Grid_track.base_size)
track_limit
|> ignore);
Array.iter
(fun track ->
if
track.Grid_track.item_incurred_increase
> track.Grid_track.base_size_planned_increase
then
track.Grid_track.base_size_planned_increase <-
track.Grid_track.item_incurred_increase;
track.Grid_track.item_incurred_increase <- 0.0)
tracks
let resolve_intrinsic_track_sizes (type t)
(module Tree : LAYOUT_PARTIAL_TREE with type t = t) (tree : t)
(axis : abstract_axis) (axis_tracks : Grid_track.t array)
(other_axis_tracks : Grid_track.t array) (items : Grid_item.t array)
(axis_available_grid_space : Available_space.t)
(inner_node_size : float option size)
(get_track_size_estimate :
Grid_track.t -> float option -> t -> float option) : unit =
Array.sort (cmp_by_cross_flex_then_span_then_start axis) items;
let axis_inner_node_size = Size.get axis inner_node_size in
let flex_factor_sum =
Array.fold_left
(fun sum track -> sum +. Grid_track.flex_factor track)
0.0 axis_tracks
in
let item_sizer =
Intrinsic_size_measurer.
{
tree;
other_axis_tracks;
get_track_size_estimate;
axis;
inner_node_size;
}
in
let batcher = new_item_batcher axis in
let rec process_batches () =
match item_batcher_next batcher items with
| None -> ()
| Some (batch, is_flex) ->
let batch_span = Grid_item.span batch.(0) axis in
if (not is_flex) && batch_span = 1 then (
Array.iter
(fun item ->
let track_index =
(Grid_item.placement_indexes item axis).start + 1
in
let track = axis_tracks.(track_index) in
let new_base_size =
if
Style.Grid.Track_sizing_function.Min.is_min_content
track.Grid_track.track_sizing_function
then
max track.Grid_track.base_size
(Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item)
else if
Style.Grid.Track_sizing_function.Min.uses_percentage
track.Grid_track.track_sizing_function
&& Option.is_none axis_inner_node_size
then
max track.Grid_track.base_size
(Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item)
else if
Style.Grid.Track_sizing_function.Min.is_max_content
track.Grid_track.track_sizing_function
then
max track.Grid_track.base_size
(Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item)
else if
Style.Grid.Track_sizing_function.Min.is_auto
track.Grid_track.track_sizing_function
then
let space =
match axis_available_grid_space with
| (Available_space.Min_content | Available_space.Max_content)
when not
(Overflow.is_container
(Point.get axis item.overflow)) ->
let axis_minimum_size =
Intrinsic_size_measurer.minimum_contribution
(module Tree)
item_sizer item axis_tracks
in
let axis_min_content_size =
Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item
in
let limit =
Style.Grid.Track_sizing_function.Max
.definite_limit_with_calc
track.Grid_track.track_sizing_function
axis_inner_node_size
(Tree.resolve_calc_value tree)
in
let limited_min_content =
match limit with
| Some lim -> min axis_min_content_size lim
| None -> axis_min_content_size
in
max limited_min_content axis_minimum_size
| _ ->
Intrinsic_size_measurer.minimum_contribution
(module Tree)
item_sizer item axis_tracks
in
max track.Grid_track.base_size space
else track.Grid_track.base_size
in
axis_tracks.(track_index).Grid_track.base_size <- new_base_size;
let track = axis_tracks.(track_index) in
if
Style.Grid.Track_sizing_function.Max.is_fit_content
track.Grid_track.track_sizing_function
then (
if not (Overflow.is_container (Point.get axis item.overflow))
then
track.Grid_track.growth_limit_planned_increase <-
max track.Grid_track.growth_limit_planned_increase
(Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item);
let fit_content_limit =
Grid_track.fit_content_limit track axis_inner_node_size
in
let max_content_contribution =
min
(Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item)
fit_content_limit
in
track.Grid_track.growth_limit_planned_increase <-
max track.Grid_track.growth_limit_planned_increase
max_content_contribution)
else if
Style.Grid.Track_sizing_function.Max.is_max_content_alike
track.Grid_track.track_sizing_function
|| Style.Grid.Track_sizing_function.Max.uses_percentage
track.Grid_track.track_sizing_function
&& Option.is_none axis_inner_node_size
then
track.Grid_track.growth_limit_planned_increase <-
max track.Grid_track.growth_limit_planned_increase
(Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item)
else if
Style.Grid.Track_sizing_function.Max.is_intrinsic
track.Grid_track.track_sizing_function
then
track.Grid_track.growth_limit_planned_increase <-
max track.Grid_track.growth_limit_planned_increase
(Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item))
batch;
Array.iter
(fun track ->
if track.Grid_track.growth_limit_planned_increase > 0.0 then
track.Grid_track.growth_limit <-
(if track.Grid_track.growth_limit = Float.infinity then
track.Grid_track.growth_limit_planned_increase
else
max track.Grid_track.growth_limit
track.Grid_track.growth_limit_planned_increase);
track.Grid_track.infinitely_growable <- false;
track.Grid_track.growth_limit_planned_increase <- 0.0;
if track.Grid_track.growth_limit < track.Grid_track.base_size then
if
Style.Grid.Track_sizing_function.Max.is_fit_content
track.Grid_track.track_sizing_function
then track.Grid_track.base_size <- track.Grid_track.growth_limit
else track.Grid_track.growth_limit <- track.Grid_track.base_size)
axis_tracks;
process_batches ())
else
let use_flex_factor_for_distribution =
is_flex && flex_factor_sum <> 0.0
in
Array.iter
(fun item ->
if Grid_item.crosses_intrinsic_track item axis then
let space =
match axis_available_grid_space with
| (Available_space.Min_content | Available_space.Max_content)
when not
(Overflow.is_container
(Point.get axis item.overflow)) ->
let axis_minimum_size =
Intrinsic_size_measurer.minimum_contribution
(module Tree)
item_sizer item axis_tracks
in
let axis_min_content_size =
Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item
in
let calc = Tree.resolve_calc_value tree in
let limit =
Grid_item.spanned_fixed_track_limit item axis
axis_tracks axis_inner_node_size calc
in
let limited_min_content =
match limit with
| Some lim -> min axis_min_content_size lim
| None -> axis_min_content_size
in
max limited_min_content axis_minimum_size
| _ ->
Intrinsic_size_measurer.minimum_contribution
(module Tree)
item_sizer item axis_tracks
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
let has_intrinsic_min_track_sizing_function track =
Style.Grid.Track_sizing_function.Min.is_intrinsic
track.Grid_track.track_sizing_function
in
if Overflow.is_container (Point.get axis item.overflow) then
let fit_content_limit track =
Grid_track.fit_content_limited_growth_limit track
axis_inner_node_size
in
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_intrinsic_min_track_sizing_function fit_content_limit
Minimum
else
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_intrinsic_min_track_sizing_function
(fun track -> track.Grid_track.growth_limit)
Minimum)
batch;
flush_planned_base_size_increases axis_tracks;
Array.iter
(fun item ->
let space =
Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
let has_min_or_max_content_min_track_sizing_function track =
Style.Grid.Track_sizing_function.Min.is_min_or_max_content
track.Grid_track.track_sizing_function
in
if Overflow.is_container (Point.get axis item.overflow) then
let fit_content_limit track =
Grid_track.fit_content_limited_growth_limit track
axis_inner_node_size
in
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_min_or_max_content_min_track_sizing_function
fit_content_limit Minimum
else
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_min_or_max_content_min_track_sizing_function
(fun track -> track.Grid_track.growth_limit)
Minimum)
batch;
flush_planned_base_size_increases axis_tracks;
if
axis_available_grid_space = Available_space.Max_content
|| Available_space.is_definite axis_available_grid_space
then (
let has_auto_min_track_sizing_function track =
Style.Grid.Track_sizing_function.Min.is_auto
track.Grid_track.track_sizing_function
&& not
(Style.Grid.Track_sizing_function.Max.is_min_content
track.Grid_track.track_sizing_function)
in
let has_max_content_min_track_sizing_function track =
Style.Grid.Track_sizing_function.Min.is_max_content
track.Grid_track.track_sizing_function
in
Array.iter
(fun item ->
let axis_max_content_size =
Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item
in
let calc = Tree.resolve_calc_value tree in
let limit =
Grid_item.spanned_fixed_track_limit item axis axis_tracks
axis_inner_node_size calc
in
let space =
match limit with
| Some lim -> min axis_max_content_size lim
| None -> axis_max_content_size
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
if
Array.exists has_max_content_min_track_sizing_function
tracks
then
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_max_content_min_track_sizing_function
(fun _ -> Float.infinity)
Maximum
else
let fit_content_limited_growth_limit track =
Grid_track.fit_content_limited_growth_limit track
axis_inner_node_size
in
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_auto_min_track_sizing_function
fit_content_limited_growth_limit Maximum)
batch;
flush_planned_base_size_increases axis_tracks);
let has_max_content_min_track_sizing_function track =
Style.Grid.Track_sizing_function.Min.is_max_content
track.Grid_track.track_sizing_function
in
Array.iter
(fun item ->
let space =
Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
distribute_item_space_to_base_size is_flex
use_flex_factor_for_distribution space tracks
has_max_content_min_track_sizing_function
(fun track -> track.Grid_track.growth_limit)
Maximum)
batch;
flush_planned_base_size_increases axis_tracks;
Array.iter
(fun track ->
if track.Grid_track.growth_limit < track.Grid_track.base_size then
if
Style.Grid.Track_sizing_function.Max.is_fit_content
track.Grid_track.track_sizing_function
then track.Grid_track.base_size <- track.Grid_track.growth_limit
else track.Grid_track.growth_limit <- track.Grid_track.base_size)
axis_tracks;
if not is_flex then (
Array.iter
(fun item ->
let space =
Intrinsic_size_measurer.min_content_contribution
(module Tree)
item_sizer item
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
distribute_item_space_to_growth_limit space tracks
(fun track ->
Style.Grid.Track_sizing_function.Max.is_intrinsic
track.Grid_track.track_sizing_function)
axis_inner_node_size)
batch;
flush_planned_growth_limit_increases axis_tracks true;
Array.iter
(fun item ->
let space =
Intrinsic_size_measurer.max_content_contribution
(module Tree)
item_sizer item
in
let track_range =
Grid_item.track_range_excluding_lines item axis
in
let start_idx, end_idx = track_range in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
if space > 0.0 then
distribute_item_space_to_growth_limit space tracks
(fun track ->
Style.Grid.Track_sizing_function.Max.is_max_content_alike
track.Grid_track.track_sizing_function
|| Style.Grid.Track_sizing_function.Max.uses_percentage
track.Grid_track.track_sizing_function
&& Option.is_none axis_inner_node_size)
axis_inner_node_size)
batch;
flush_planned_growth_limit_increases axis_tracks false);
process_batches ()
in
process_batches ();
Array.iter
(fun track ->
if track.Grid_track.growth_limit = Float.infinity then
track.Grid_track.growth_limit <- track.Grid_track.base_size)
axis_tracks
let maximise_tracks (axis_tracks : Grid_track.t array)
(axis_inner_node_size : float option)
(axis_available_grid_space : Available_space.t) : unit =
let used_space =
Array.fold_left
(fun sum track -> sum +. track.Grid_track.base_size)
0.0 axis_tracks
in
let free_space =
Available_space.compute_free_space axis_available_grid_space used_space
in
if free_space = Float.infinity then
Array.iter
(fun track -> track.Grid_track.base_size <- track.Grid_track.growth_limit)
axis_tracks
else if free_space > 0.0 then (
distribute_space_up_to_limits free_space axis_tracks
(fun _ -> true)
(fun _ -> 1.0)
(fun track -> track.Grid_track.base_size)
(fun track ->
Grid_track.fit_content_limited_growth_limit track axis_inner_node_size)
|> ignore;
Array.iter
(fun track ->
track.Grid_track.base_size <-
track.Grid_track.base_size +. track.Grid_track.item_incurred_increase;
track.Grid_track.item_incurred_increase <- 0.0)
axis_tracks)
let find_size_of_fr (tracks : Grid_track.t array) (space_to_fill : float) :
float =
if space_to_fill = 0.0 then 0.0
else
let rec find_fr_size hypothetical_fr_size =
let used_space = ref 0.0 in
let naive_flex_factor_sum = ref 0.0 in
Array.iter
(fun track ->
if
Style.Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function
then
let flex_factor =
Style.Grid.Track_sizing_function.Max.fr_value
track.Grid_track.track_sizing_function
in
if flex_factor *. hypothetical_fr_size >= track.Grid_track.base_size
then naive_flex_factor_sum := !naive_flex_factor_sum +. flex_factor
else used_space := !used_space +. track.Grid_track.base_size
else used_space := !used_space +. track.Grid_track.base_size)
tracks;
let leftover_space = space_to_fill -. !used_space in
let flex_factor = max !naive_flex_factor_sum 1.0 in
let new_hypothetical_fr_size = leftover_space /. flex_factor in
let is_valid =
Array.for_all
(fun track ->
if
Style.Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function
then
let flex_factor =
Style.Grid.Track_sizing_function.Max.fr_value
track.Grid_track.track_sizing_function
in
flex_factor *. new_hypothetical_fr_size
>= track.Grid_track.base_size
|| flex_factor *. hypothetical_fr_size
< track.Grid_track.base_size
else true)
tracks
in
if is_valid then new_hypothetical_fr_size
else find_fr_size new_hypothetical_fr_size
in
find_fr_size Float.infinity
let expand_flexible_tracks (type t)
(module Tree : LAYOUT_PARTIAL_TREE with type t = t) (tree : t)
(axis : abstract_axis) (axis_tracks : Grid_track.t array)
(items : Grid_item.t array) (axis_min_size : float option)
(axis_max_size : float option)
(axis_available_space_for_expansion : Available_space.t)
(inner_node_size : float option size) : unit =
let flex_fraction =
match axis_available_space_for_expansion with
| Available_space.Definite available_space ->
let used_space =
Array.fold_left
(fun sum track -> sum +. track.Grid_track.base_size)
0.0 axis_tracks
in
let free_space = available_space -. used_space in
if free_space <= 0.0 then 0.0
else find_size_of_fr axis_tracks available_space
| Available_space.Min_content -> 0.0
| Available_space.Max_content ->
let flex_fraction =
max
(let max_track_factor =
Array.fold_left
(fun curr_max track ->
if
Style.Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function
then
let flex_factor =
Style.Grid.Track_sizing_function.Max.fr_value
track.Grid_track.track_sizing_function
in
let value =
if flex_factor > 1.0 then
track.Grid_track.base_size /. flex_factor
else track.Grid_track.base_size
in
max curr_max value
else curr_max)
0.0 axis_tracks
in
max_track_factor)
(let max_item_factor =
Array.fold_left
(fun curr_max item ->
if Grid_item.crosses_flexible_track item axis then
let start_idx, end_idx =
Grid_item.track_range_excluding_lines item axis
in
let tracks =
Array.sub axis_tracks start_idx (end_idx - start_idx)
in
let max_content_contribution =
Grid_item.max_content_contribution
(module Tree)
item axis tree Size.none inner_node_size
in
let value =
find_size_of_fr tracks max_content_contribution
in
max curr_max value
else curr_max)
0.0 items
in
max_item_factor)
in
let hypothetical_grid_size =
Array.fold_left
(fun sum track ->
if
Style.Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function
then
let track_flex_factor =
Style.Grid.Track_sizing_function.Max.fr_value
track.Grid_track.track_sizing_function
in
sum
+. max track.Grid_track.base_size
(track_flex_factor *. flex_fraction)
else sum +. track.Grid_track.base_size)
0.0 axis_tracks
in
let axis_min_size = Option.value axis_min_size ~default:0.0 in
let axis_max_size =
Option.value axis_max_size ~default:Float.infinity
in
if hypothetical_grid_size < axis_min_size then
find_size_of_fr axis_tracks axis_min_size
else if hypothetical_grid_size > axis_max_size then
find_size_of_fr axis_tracks axis_max_size
else flex_fraction
in
Array.iter
(fun track ->
if
Style.Grid.Track_sizing_function.Max.is_fr
track.Grid_track.track_sizing_function
then
let track_flex_factor =
Style.Grid.Track_sizing_function.Max.fr_value
track.Grid_track.track_sizing_function
in
track.Grid_track.base_size <-
max track.Grid_track.base_size (track_flex_factor *. flex_fraction))
axis_tracks
let stretch_auto_tracks (axis_tracks : Grid_track.t array)
(axis_min_size : float option)
(axis_available_space_for_expansion : Available_space.t) : unit =
let num_auto_tracks =
Array.fold_left
(fun count track ->
if
Style.Grid.Track_sizing_function.Max.is_auto
track.Grid_track.track_sizing_function
then count + 1
else count)
0 axis_tracks
in
if num_auto_tracks > 0 then
let used_space =
Array.fold_left
(fun sum track -> sum +. track.Grid_track.base_size)
0.0 axis_tracks
in
let free_space =
if Available_space.is_definite axis_available_space_for_expansion then
Available_space.compute_free_space axis_available_space_for_expansion
used_space
else
match axis_min_size with Some size -> size -. used_space | None -> 0.0
in
if free_space > 0.0 then
let =
free_space /. float_of_int num_auto_tracks
in
Array.iter
(fun track ->
if
Style.Grid.Track_sizing_function.Max.is_auto
track.Grid_track.track_sizing_function
then
track.Grid_track.base_size <-
track.Grid_track.base_size +. extra_space_per_auto_track)
axis_tracks
let track_sizing_algorithm (type t)
(module Tree : LAYOUT_PARTIAL_TREE with type t = t) (tree : t)
(axis : abstract_axis) (axis_min_size : float option)
(axis_max_size : float option) (axis_alignment : align_content)
(other_axis_alignment : align_content)
(available_grid_space : Available_space.t size)
(inner_node_size : float option size) (axis_tracks : Grid_track.t array)
(other_axis_tracks : Grid_track.t array) (items : Grid_item.t array)
(get_track_size_estimate :
Grid_track.t -> float option -> t -> float option)
(has_baseline_aligned_item : bool) : unit =
let percentage_basis =
match Size.get axis inner_node_size with
| Some value -> Some value
| None -> axis_min_size
in
initialize_track_sizes tree
(fun _ -> Tree.resolve_calc_value tree)
axis_tracks percentage_basis;
if has_baseline_aligned_item then
resolve_item_baselines (module Tree) tree axis items inner_node_size;
if
Array.for_all
(fun track -> track.Grid_track.base_size = track.Grid_track.growth_limit)
axis_tracks
then ()
else
let gutter_alignment_adjustment =
compute_alignment_gutter_adjustment other_axis_alignment
(Size.get (Abstract_axis.other axis) inner_node_size)
(fun track basis -> get_track_size_estimate track basis tree)
other_axis_tracks
in
(if Array.length other_axis_tracks > 3 then
let len = Array.length other_axis_tracks in
let i = ref 2 in
while !i < len do
other_axis_tracks.(!i).Grid_track.content_alignment_adjustment <-
gutter_alignment_adjustment;
i := !i + 2
done);
resolve_intrinsic_track_sizes
(module Tree)
tree axis axis_tracks other_axis_tracks items
(Size.get axis available_grid_space)
inner_node_size get_track_size_estimate;
maximise_tracks axis_tracks
(Size.get axis inner_node_size)
(Size.get axis available_grid_space);
let axis_available_space_for_expansion =
match Size.get axis inner_node_size with
| Some available_space -> Available_space.Definite available_space
| None -> (
match Size.get axis available_grid_space with
| Available_space.Min_content -> Available_space.Min_content
| Available_space.Max_content | Available_space.Definite _ ->
Available_space.Max_content)
in
expand_flexible_tracks
(module Tree)
tree axis axis_tracks items axis_min_size axis_max_size
axis_available_space_for_expansion inner_node_size;
if axis_alignment = Align_content.Stretch then
stretch_auto_tracks axis_tracks axis_min_size
axis_available_space_for_expansion