about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2025-04-23 20:19:52 +0200
committerbptato <nincsnevem662@gmail.com>2025-04-23 20:19:52 +0200
commit2e9d7ad7bdfc979c20af694e46cd3c75c3a8ebe4 (patch)
tree4a579c9c525f6dd65bc00dff5dd4c5306cd691ad
parent656092f399d36c13a551b4a2474c8aded3388b1a (diff)
downloadchawan-2e9d7ad7bdfc979c20af694e46cd3c75c3a8ebe4.tar.gz
layout: simplify resolveBounds
Not entirely sure what the px check for the mi[dtHorizontal].send
assingment was for; tests still pass after removing it.
-rw-r--r--src/css/layout.nim50
1 files changed, 19 insertions, 31 deletions
diff --git a/src/css/layout.nim b/src/css/layout.nim
index de6e5720..cc1365e3 100644
--- a/src/css/layout.nim
+++ b/src/css/layout.nim
@@ -279,42 +279,29 @@ const DefaultBounds = Bounds(
   mi: [DefaultSpan, DefaultSpan]
 )
 
+const SizeMap = [dtHorizontal: cptWidth, dtVertical: cptHeight]
+const MinSizeMap = [dtHorizontal: cptMinWidth, dtVertical: cptMinHeight]
+const MaxSizeMap = [dtHorizontal: cptMaxWidth, dtVertical: cptMaxHeight]
+
 func resolveBounds(lctx: LayoutContext; space: AvailableSpace; padding: Size;
     computed: CSSValues; flexItem = false): Bounds =
   var res = DefaultBounds
-  block:
-    let sc = space.w
-    let padding = padding[dtHorizontal]
-    if computed{"max-width"}.canpx(sc):
-      let px = computed{"max-width"}.spx(sc, computed, padding)
-      res.a[dtHorizontal].send = px
-      if computed{"max-width"}.u == clPx:
-        res.mi[dtHorizontal].send = px
-    if computed{"min-width"}.canpx(sc):
-      let px = computed{"min-width"}.spx(sc, computed, padding)
-      res.a[dtHorizontal].start = px
-      if computed{"min-width"}.u == clPx:
-        res.mi[dtHorizontal].start = px
+  for dim in DimensionType:
+    let sc = space[dim]
+    let padding = padding[dim]
+    if computed.getLength(MaxSizeMap[dim]).canpx(sc):
+      let px = computed.getLength(MaxSizeMap[dim]).spx(sc, computed, padding)
+      res.a[dim].send = px
+      res.mi[dim].send = px
+    if computed.getLength(MinSizeMap[dim]).canpx(sc):
+      let px = computed.getLength(MinSizeMap[dim]).spx(sc, computed, padding)
+      res.a[dim].start = px
+      if computed.getLength(MinSizeMap[dim]).u == clPx:
+        res.mi[dim].start = px
         if flexItem: # for flex items, min-width overrides the intrinsic size.
-          res.mi[dtHorizontal].send = px
-  block:
-    let sc = space.h
-    let padding = padding[dtVertical]
-    if computed{"max-height"}.canpx(sc):
-      let px = computed{"max-height"}.spx(sc, computed, padding)
-      res.a[dtVertical].send = px
-      res.mi[dtVertical].send = px
-    if computed{"min-height"}.canpx(sc):
-      let px = computed{"min-height"}.spx(sc, computed, padding)
-      res.a[dtVertical].start = px
-      if computed{"min-height"}.u == clPx:
-        res.mi[dtVertical].start = px
-        if flexItem:
-          res.mi[dtVertical].send = px
+          res.mi[dim].send = px
   return res
 
-const SizeMap = [dtHorizontal: cptWidth, dtVertical: cptHeight]
-
 proc resolveAbsoluteWidth(sizes: var ResolvedSizes; size: Size;
     positioned: RelativeRect; computed: CSSValues; lctx: LayoutContext) =
   let paddingSum = sizes.padding[dtHorizontal].sum()
@@ -1152,7 +1139,8 @@ proc finishLine(fstate: var FlowState; istate: var InlineState; wrap: bool;
     # add line to fstate
     let y = fstate.offset.y
     if clear != ClearNone:
-      fstate.lbstate.size.h.clearFloats(fstate.bctx, fstate.bfcOffset.y + y, clear)
+      fstate.lbstate.size.h.clearFloats(fstate.bctx, fstate.bfcOffset.y + y,
+        clear)
     # * set first baseline if this is the first line box
     # * always set last baseline (so the baseline of the last line box remains)
     fstate.box.state.baseline = y + fstate.lbstate.baseline
'>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