1
- /* global exports */
2
- "use strict" ;
3
-
4
- var React = require ( "react" ) ;
1
+ import React from "react" ;
5
2
6
3
function createClass ( baseClass ) {
7
4
function bindProperty ( instance , prop , value ) {
8
5
switch ( prop ) {
9
- case ' state' :
10
- case ' render' :
11
- case ' componentDidMount' :
12
- case ' componentWillUnmount' :
6
+ case " state" :
7
+ case " render" :
8
+ case " componentDidMount" :
9
+ case " componentWillUnmount" :
13
10
instance [ prop ] = value ;
14
11
break ;
15
12
16
- case ' componentDidCatch' :
17
- case ' componentWillUpdate' :
18
- case ' shouldComponentUpdate' :
19
- case ' getSnapshotBeforeUpdate' :
13
+ case " componentDidCatch" :
14
+ case " componentWillUpdate" :
15
+ case " shouldComponentUpdate" :
16
+ case " getSnapshotBeforeUpdate" :
20
17
instance [ prop ] = function ( a , b ) { return value ( a ) ( b ) ( ) ; } ;
21
18
break ;
22
19
23
- case ' componentDidUpdate' :
20
+ case " componentDidUpdate" :
24
21
instance [ prop ] = function ( a , b , c ) { return value ( a ) ( b ) ( c ) ( ) ; } ;
25
22
break ;
26
23
27
- case ' unsafeComponentWillMount' :
28
- instance [ ' UNSAFE_componentWillMount' ] = value ;
24
+ case " unsafeComponentWillMount" :
25
+ instance [ " UNSAFE_componentWillMount" ] = value ;
29
26
break ;
30
27
31
- case ' unsafeComponentWillReceiveProps' :
32
- instance [ ' UNSAFE_componentWillReceiveProps' ] = function ( a ) { return value ( a ) ( ) ; } ;
28
+ case " unsafeComponentWillReceiveProps" :
29
+ instance [ " UNSAFE_componentWillReceiveProps" ] = function ( a ) { return value ( a ) ( ) ; } ;
33
30
break ;
34
31
35
- case ' unsafeComponentWillUpdate' :
36
- instance [ ' UNSAFE_componentWillUpdate' ] = function ( a , b ) { return value ( a ) ( b ) ( ) ; } ;
32
+ case " unsafeComponentWillUpdate" :
33
+ instance [ " UNSAFE_componentWillUpdate" ] = function ( a , b ) { return value ( a ) ( b ) ( ) ; } ;
37
34
break ;
38
35
39
36
default :
40
- throw new Error ( ' [purescript-react] Not a component property: ' + prop ) ;
37
+ throw new Error ( " [purescript-react] Not a component property: " + prop ) ;
41
38
}
42
39
}
43
40
@@ -46,6 +43,7 @@ function createClass(baseClass) {
46
43
var Constructor = function ( props ) {
47
44
baseClass . call ( this , props ) ;
48
45
var spec = ctrFn ( this ) ( ) ;
46
+ // eslint-disable-next-line guard-for-in
49
47
for ( var k in spec ) {
50
48
bindProperty ( this , k , spec [ k ] ) ;
51
49
}
@@ -60,6 +58,10 @@ function createClass(baseClass) {
60
58
} ;
61
59
}
62
60
61
+ var componentImpl = createClass ( React . Component ) ;
62
+ export { componentImpl } ;
63
+
64
+ // eslint-disable-next-line no-unused-vars
63
65
function createClassWithDerivedState ( classCtr ) {
64
66
return function ( displayName ) {
65
67
return function ( getDerivedStateFromProps ) {
@@ -72,28 +74,22 @@ function createClassWithDerivedState(classCtr) {
72
74
} ;
73
75
}
74
76
75
- var componentImpl = createClass ( React . Component ) ;
76
- exports . componentImpl = componentImpl ;
77
- exports . componentWithDerivedStateImpl = createClassWithDerivedState ( componentImpl ) ;
77
+ export const componentWithDerivedStateImpl = createClassWithDerivedState ( componentImpl ) ;
78
78
79
79
var pureComponentImpl = createClass ( React . PureComponent ) ;
80
- exports . pureComponentImpl = pureComponentImpl ;
81
- exports . pureComponentWithDerivedStateImpl = createClassWithDerivedState ( pureComponentImpl ) ;
82
-
83
- exports . statelessComponent = function ( x ) { return x ; } ;
84
-
85
- exports . fragment = React . Fragment ;
80
+ export { pureComponentImpl } ;
81
+ export const pureComponentWithDerivedStateImpl = createClassWithDerivedState ( pureComponentImpl ) ;
82
+ export function statelessComponent ( x ) { return x ; }
83
+ export const fragment = React . Fragment ;
86
84
87
85
function getProps ( this_ ) {
88
86
return function ( ) {
89
87
return this_ . props ;
90
88
} ;
91
89
}
92
- exports . getProps = getProps ;
93
-
94
- exports . childrenToArray = React . Children . toArray ;
95
-
96
- exports . childrenCount = React . Children . count ;
90
+ export { getProps } ;
91
+ export const childrenToArray = React . Children . toArray ;
92
+ export const childrenCount = React . Children . count ;
97
93
98
94
function setStateImpl ( this_ ) {
99
95
return function ( state ) {
@@ -102,7 +98,7 @@ function setStateImpl(this_) {
102
98
} ;
103
99
} ;
104
100
}
105
- exports . setStateImpl = setStateImpl ;
101
+ export { setStateImpl } ;
106
102
107
103
function setStateWithCallbackImpl ( this_ ) {
108
104
return function ( state ) {
@@ -113,17 +109,17 @@ function setStateWithCallbackImpl(this_) {
113
109
} ;
114
110
} ;
115
111
}
116
- exports . setStateWithCallbackImpl = setStateWithCallbackImpl ;
112
+ export { setStateWithCallbackImpl } ;
117
113
118
114
function getState ( this_ ) {
119
115
return function ( ) {
120
116
if ( ! this_ . state ) {
121
- throw new Error ( ' [purescript-react] Cannot get state within constructor' ) ;
117
+ throw new Error ( " [purescript-react] Cannot get state within constructor" ) ;
122
118
}
123
119
return this_ . state ;
124
120
} ;
125
121
}
126
- exports . getState = getState ;
122
+ export { getState } ;
127
123
128
124
function forceUpdateWithCallback ( this_ ) {
129
125
return function ( cb ) {
@@ -132,7 +128,7 @@ function forceUpdateWithCallback(this_) {
132
128
} ;
133
129
} ;
134
130
}
135
- exports . forceUpdateWithCallback = forceUpdateWithCallback ;
131
+ export { forceUpdateWithCallback } ;
136
132
137
133
function createElement ( class_ ) {
138
134
return function ( props ) {
@@ -141,25 +137,25 @@ function createElement(class_) {
141
137
} ;
142
138
} ;
143
139
}
144
- exports . createElementImpl = createElement ;
145
- exports . createElementTagName = createElement ;
140
+ export { createElement as createElementImpl } ;
141
+ export { createElement as createElementTagName } ;
146
142
147
143
function createLeafElement ( class_ ) {
148
144
return function ( props ) {
149
145
return React . createElement ( class_ , props ) ;
150
146
} ;
151
147
}
152
- exports . createLeafElementImpl = createLeafElement ;
148
+ export { createLeafElement as createLeafElementImpl } ;
153
149
154
150
function createElementDynamic ( class_ ) {
155
151
return function ( props ) {
156
152
return function ( children ) {
157
153
return React . createElement ( class_ , props , children ) ;
158
154
} ;
159
155
} ;
160
- } ;
161
- exports . createElementDynamicImpl = createElementDynamic ;
162
- exports . createElementTagNameDynamic = createElementDynamic ;
156
+ }
157
+ export { createElementDynamic as createElementDynamicImpl } ;
158
+ export { createElementDynamic as createElementTagNameDynamic } ;
163
159
164
160
function createContext ( defaultValue ) {
165
161
var context = React . createContext ( defaultValue ) ;
@@ -168,4 +164,4 @@ function createContext(defaultValue) {
168
164
provider : context . Provider
169
165
} ;
170
166
}
171
- exports . createContext = createContext ;
167
+ export { createContext } ;
0 commit comments