@@ -34,6 +34,8 @@ module React.Basic.Hooks
34
34
, writeRef
35
35
, useRef
36
36
, UseRef
37
+ , RefNode
38
+ , useRefNode
37
39
, useContext
38
40
, UseContext
39
41
, useEqCache
@@ -64,7 +66,7 @@ import Data.Bifunctor (rmap)
64
66
import Data.Function.Uncurried (Fn2 , mkFn2 , runFn2 )
65
67
import Data.Maybe (Maybe )
66
68
import Data.Newtype (class Newtype )
67
- import Data.Nullable (Nullable , toMaybe )
69
+ import Data.Nullable (Nullable , null , toMaybe )
68
70
import Data.Tuple (Tuple (..))
69
71
import Data.Tuple.Nested (type (/\), (/\))
70
72
import Effect (Effect )
@@ -75,6 +77,7 @@ import React.Basic (JSX, ReactComponent, ReactContext, Ref, consumer, contextCon
75
77
import React.Basic.Hooks.Internal (Hook , HookApply , Pure , Render , bind , discard , coerceHook , unsafeHook , unsafeRenderEffect , type (&))
76
78
import Unsafe.Coerce (unsafeCoerce )
77
79
import Unsafe.Reference (unsafeRefEq )
80
+ import Web.DOM (Node )
78
81
79
82
-- | A simple type alias to clean up component definitions.
80
83
type Component props
@@ -336,6 +339,23 @@ useRef initialValue =
336
339
unsafeHook do
337
340
runEffectFn1 useRef_ initialValue
338
341
342
+ -- | A type alias that allows to refer to a DOM node.
343
+ type RefNode = Ref (Nullable Node )
344
+
345
+ -- | A helper around `useRef` that creates a type to be used to refer to DOM nodes.
346
+ -- | For example:
347
+ -- |
348
+ -- | ```purs
349
+ -- | …
350
+ -- | React.component "label" \_ -> React.do
351
+ -- | labelRef :: RefNode <- React.useRefNode
352
+ -- | pure $ R.label { ref: labelRef
353
+ -- | , children: [R.text "hello"]}
354
+ -- | ```
355
+ -- |
356
+ useRefNode :: Hook (UseRef Node ) RefNode
357
+ useRefNode = unsafeHook $ runEffectFn1 useRef_ null
358
+
339
359
readRef :: forall a . Ref a -> Effect a
340
360
readRef = runEffectFn1 readRef_
341
361
@@ -575,4 +595,4 @@ foreign import useSyncExternalStore3_ :: forall a. EffectFn3
575
595
(EffectFn1 (Effect Unit ) (Effect Unit )) -- subscribe
576
596
(Effect a ) -- getSnapshot
577
597
(Effect a ) -- getServerSnapshot
578
- a
598
+ a
0 commit comments