Skip to content

Commit e125650

Browse files
committedNov 8, 2024
Add helpers and documentation for referring DOM elements
Fixes: purescript-react#77
1 parent be0133c commit e125650

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
 

‎spago.dhall

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ You can edit this file as you like.
2929
, "type-equality"
3030
, "unsafe-coerce"
3131
, "unsafe-reference"
32+
, "web-dom"
3233
, "web-html"
3334
]
3435
, packages = ./packages.dhall

‎src/React/Basic/Hooks.purs

+22-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ module React.Basic.Hooks
3434
, writeRef
3535
, useRef
3636
, UseRef
37+
, RefNode
38+
, useRefNode
3739
, useContext
3840
, UseContext
3941
, useEqCache
@@ -64,7 +66,7 @@ import Data.Bifunctor (rmap)
6466
import Data.Function.Uncurried (Fn2, mkFn2, runFn2)
6567
import Data.Maybe (Maybe)
6668
import Data.Newtype (class Newtype)
67-
import Data.Nullable (Nullable, toMaybe)
69+
import Data.Nullable (Nullable, null, toMaybe)
6870
import Data.Tuple (Tuple(..))
6971
import Data.Tuple.Nested (type (/\), (/\))
7072
import Effect (Effect)
@@ -75,6 +77,7 @@ import React.Basic (JSX, ReactComponent, ReactContext, Ref, consumer, contextCon
7577
import React.Basic.Hooks.Internal (Hook, HookApply, Pure, Render, bind, discard, coerceHook, unsafeHook, unsafeRenderEffect, type (&))
7678
import Unsafe.Coerce (unsafeCoerce)
7779
import Unsafe.Reference (unsafeRefEq)
80+
import Web.DOM (Node)
7881

7982
--| A simple type alias to clean up component definitions.
8083
type Component props
@@ -336,6 +339,23 @@ useRef initialValue =
336339
unsafeHook do
337340
runEffectFn1 useRef_ initialValue
338341

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+
339359
readRef :: forall a. Ref a -> Effect a
340360
readRef = runEffectFn1 readRef_
341361

@@ -575,4 +595,4 @@ foreign import useSyncExternalStore3_ :: forall a. EffectFn3
575595
(EffectFn1 (Effect Unit) (Effect Unit)) -- subscribe
576596
(Effect a) -- getSnapshot
577597
(Effect a) -- getServerSnapshot
578-
a
598+
a

0 commit comments

Comments
 (0)
Please sign in to comment.