Skip to content

Commit 9243ea6

Browse files
committed
Remove unsafeComponent and expose componentWithChildren
1 parent b99fc56 commit 9243ea6

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

src/React/Basic/Hooks.js

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
var React = require("react");
44

5+
exports.reactChildrenToArray = function(children) {
6+
return React.Children.toArray(children);
7+
};
8+
59
exports.memo_ = React.memo;
610

711
exports.useState_ = function(tuple, initialState) {

src/React/Basic/Hooks.purs

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module React.Basic.Hooks
22
( component
3-
, unsafeComponent
3+
, componentWithChildren
4+
, ReactChildren
45
, memo
56
, UseState
67
, useState
@@ -52,7 +53,8 @@ import Unsafe.Reference (unsafeRefEq)
5253
-- | Creating components is effectful because React uses the function
5354
-- | instance as the component's "identity" or "type". Components should
5455
-- | 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.
5658
component ::
5759
forall hooks props.
5860
Lacks "children" props =>
@@ -63,7 +65,18 @@ component ::
6365
Effect (ReactComponent { | props })
6466
component = unsafeComponent
6567

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+
6780
unsafeComponent ::
6881
forall hooks props.
6982
Lacks "key" props =>
@@ -89,6 +102,13 @@ unsafeDiscardRenderEffects = unsafeCoerce
89102
unsafeReactFunctionComponent :: forall props. EffectFn1 props JSX -> ReactComponent props
90103
unsafeReactFunctionComponent = unsafeCoerce
91104

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+
92112
memo ::
93113
forall props.
94114
Effect (ReactComponent props) ->

0 commit comments

Comments
 (0)