1
1
module React.Basic.Hooks
2
2
( component
3
- , unsafeComponent
3
+ , componentWithChildren
4
+ , ReactChildren
4
5
, memo
5
6
, UseState
6
7
, useState
@@ -52,7 +53,8 @@ import Unsafe.Reference (unsafeRefEq)
52
53
-- | Creating components is effectful because React uses the function
53
54
-- | instance as the component's "identity" or "type". Components should
54
55
-- | be created during a bootstrap phase and not within component
55
- -- | lifecycles or render functions.
56
+ -- | lifecycles or render functions. See `componentWithChildren` if
57
+ -- | you need to use the `children` prop.
56
58
component ::
57
59
forall hooks props .
58
60
Lacks " children" props =>
@@ -63,7 +65,18 @@ component ::
63
65
Effect (ReactComponent { | props } )
64
66
component = unsafeComponent
65
67
66
- -- | Identical to `component`, but allows the unsafe use of the `children` prop.
68
+ -- | Create a React component given a display name and render function.
69
+ -- | This is the same as `component` but allows the use of the `children`
70
+ -- | prop.
71
+ componentWithChildren ::
72
+ forall hooks props children .
73
+ Lacks " key" props =>
74
+ Lacks " ref" props =>
75
+ String ->
76
+ ({ children :: ReactChildren children | props } -> Render Unit hooks JSX ) ->
77
+ Effect (ReactComponent { children :: ReactChildren children | props } )
78
+ componentWithChildren = unsafeComponent
79
+
67
80
unsafeComponent ::
68
81
forall hooks props .
69
82
Lacks " key" props =>
@@ -89,6 +102,13 @@ unsafeDiscardRenderEffects = unsafeCoerce
89
102
unsafeReactFunctionComponent :: forall props . EffectFn1 props JSX -> ReactComponent props
90
103
unsafeReactFunctionComponent = unsafeCoerce
91
104
105
+ data ReactChildren a
106
+
107
+ foreign import reactChildrenToArray :: forall a . ReactChildren a -> Array a
108
+
109
+ reactChildrenFromArray :: forall a . Array a -> ReactChildren a
110
+ reactChildrenFromArray = unsafeCoerce
111
+
92
112
memo ::
93
113
forall props .
94
114
Effect (ReactComponent props ) ->
0 commit comments