PureScript Halogen 中的滚动动作
Scroll action in PureScript Halogen
我正在使用 purescript-halogen,我想在捕获到子组件的消息时滚动到 div 的底部。
但是,Halogen 中似乎没有滚动动作控件。
那么,我怎样才能
Scroll to bottom of div?
我认为一个解决方案是在捕获到事件时从 Main 调用其他进程,而不是 Halogen。
我不确定这个解决方案是否不错。
设置滚动位置只是通过使用正常的 DOM 功能,以渲染节点为目标。
为此,您需要在 HTML DSL 中添加一个 ref
属性 到您要滚动的节点:
-- Define this in the same module as / in the `where` for a component
containerRef ∷ H.RefLabel
containerRef = H.RefLabel "container"
-- Use it with the `ref` property like so:
render =
HH.div
[ HP.ref containerRef ]
[ someContent ]
然后在组件的 eval
中,您可以使用 getHTMLElementRef
获取实际创建的 DOM 元素,然后更新滚动位置:
eval (ScrollToBottom next) = do
ref ← H.getHTMLElementRef containerRef
for_ ref \el → H.liftEff do
scrollHeight ← DOM.scrollHeight el
offsetHeight ← DOM.offsetHeight el
let maxScroll ← scrollHeight - offsetHeight
DOM.setScrollTop maxScroll el
pure next
这里的代码片段是从一些 real world code 做类似事情的代码片段修改而来的,所以应该这样做!
基本上与 相同的答案,但我很难找到不同的导入:
import Halogen as H
import Halogen.HTML as HH
import Data.Foldable (for_)
import DOM.HTML.Types (htmlElementToElement)
import DOM.Node.Element (scrollHeight, setScrollTop)
import DOM.HTML.HTMLElement (offsetHeight)
...
-- Define this in the same module as / in the `where` for a component
containerRef ∷ H.RefLabel
containerRef = H.RefLabel "container"
-- Use it with the `ref` property like so:
render =
HH.div
[ HP.ref containerRef ]
[ someContent ]
...
eval (ScrollToBottom next) = do
ref <- H.getHTMLElementRef containerRef
for_ ref $ \el -> H.liftEff $ do
let hel = htmlElementToElement el
sh <- scrollHeight hel
oh <- offsetHeight el
let maxScroll = sh - oh
setScrollTop maxScroll hel
pure next
我正在使用 purescript-halogen,我想在捕获到子组件的消息时滚动到 div 的底部。 但是,Halogen 中似乎没有滚动动作控件。 那么,我怎样才能 Scroll to bottom of div?
我认为一个解决方案是在捕获到事件时从 Main 调用其他进程,而不是 Halogen。 我不确定这个解决方案是否不错。
设置滚动位置只是通过使用正常的 DOM 功能,以渲染节点为目标。
为此,您需要在 HTML DSL 中添加一个 ref
属性 到您要滚动的节点:
-- Define this in the same module as / in the `where` for a component
containerRef ∷ H.RefLabel
containerRef = H.RefLabel "container"
-- Use it with the `ref` property like so:
render =
HH.div
[ HP.ref containerRef ]
[ someContent ]
然后在组件的 eval
中,您可以使用 getHTMLElementRef
获取实际创建的 DOM 元素,然后更新滚动位置:
eval (ScrollToBottom next) = do
ref ← H.getHTMLElementRef containerRef
for_ ref \el → H.liftEff do
scrollHeight ← DOM.scrollHeight el
offsetHeight ← DOM.offsetHeight el
let maxScroll ← scrollHeight - offsetHeight
DOM.setScrollTop maxScroll el
pure next
这里的代码片段是从一些 real world code 做类似事情的代码片段修改而来的,所以应该这样做!
基本上与
import Halogen as H
import Halogen.HTML as HH
import Data.Foldable (for_)
import DOM.HTML.Types (htmlElementToElement)
import DOM.Node.Element (scrollHeight, setScrollTop)
import DOM.HTML.HTMLElement (offsetHeight)
...
-- Define this in the same module as / in the `where` for a component
containerRef ∷ H.RefLabel
containerRef = H.RefLabel "container"
-- Use it with the `ref` property like so:
render =
HH.div
[ HP.ref containerRef ]
[ someContent ]
...
eval (ScrollToBottom next) = do
ref <- H.getHTMLElementRef containerRef
for_ ref $ \el -> H.liftEff $ do
let hel = htmlElementToElement el
sh <- scrollHeight hel
oh <- offsetHeight el
let maxScroll = sh - oh
setScrollTop maxScroll hel
pure next