package bonsai
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
A library for building dynamic webapps, using Js_of_ocaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.17.0.tar.gz
sha256=c78c4476ee6b856846e2d0941e5965009d5e1b853e564b2b1bee61202f0b1ebb
doc/src/bonsai.web_ui_tree_layout/bonsai_web_ui_tree_layout.ml.html
Source file bonsai_web_ui_tree_layout.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 101open! Core open! Bonsai_web open Vdom.Node module Style = [%css stylesheet {| .tree, .tree ul, .tree li { list-style: none; margin: 0; padding: 0; position: relative; } .tree { margin: auto; text-align: center; font-size: 18pt; } .tree, .tree ul { display: table; } .tree ul { width: 100%; } .tree li { display: table-cell; padding: .5em 0; vertical-align: top; } .tree li:before { outline: solid 1px #666; content: ""; left: 0; position: absolute; right: 0; top: 0; } .tree li:first-child:before { left: 50%; } .tree li:last-child:before { right: 50%; } .tree code, .tree span { border: solid .1em #666; border-radius: .2em; display: inline-block; margin: 0 .2em .5em; padding: .2em .5em; position: relative; } .tree ul:before, .tree code:before, .tree span:before { outline: solid 1px #666; content: ""; height: .5em; left: 50%; position: absolute; } .tree ul:before { top: -.5em; } .tree code:before, .tree span:before { top: -.55em; } .tree>li { margin-top: 0; } .tree>li:before, .tree>li:after, .tree>li>code:before, .tree>li>span:before { outline: none; } |}] type t = Vdom.Node.t let branch content children = li [ span [ content ]; ul children ] let leaf content = li [ span [ content ] ] let to_vdom t = div [ ul ~attrs:[ Style.tree ] [ t ] ]
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>