@@ -27,7 +27,7 @@ exports.create = function (h) {
27
27
} ;
28
28
}
29
29
30
- function put ( selector , decls ) {
30
+ var put = function ( selector , decls ) {
31
31
var selectors = selector . split ( ',' ) ;
32
32
var str = '' ;
33
33
var prop , value ;
@@ -48,7 +48,21 @@ exports.create = function (h) {
48
48
str = '.' + selector + '{' + str + '}' ;
49
49
putRaw ( str ) ;
50
50
}
51
- }
51
+ } ;
52
+
53
+ var cache = { } ;
54
+
55
+ var fromCache = function ( styles ) {
56
+ if ( ! styles ) return '' ;
57
+
58
+ var key = hash ( styles ) ;
59
+
60
+ if ( ! cache [ key ] ) {
61
+ cache [ key ] = renderer . rule ( styles , key ) ;
62
+ }
63
+
64
+ return cache [ key ] ;
65
+ } ;
52
66
53
67
renderer . rule = function ( styles , block ) {
54
68
if ( ! block ) {
@@ -90,6 +104,9 @@ exports.create = function (h) {
90
104
var className ;
91
105
var isElement = typeof fn === 'string' ;
92
106
107
+ if ( ! block && ! isElement )
108
+ block = fn . displayName || fn . name ;
109
+
93
110
var Component = function ( props ) {
94
111
if ( ! className ) {
95
112
className = renderer . rule ( styles , block ) ;
@@ -131,5 +148,38 @@ exports.create = function (h) {
131
148
return Component ;
132
149
} ;
133
150
151
+ renderer . jsx = function ( fn , styles , block ) {
152
+ var className ;
153
+ var isElement = typeof fn === 'string' ;
154
+
155
+ if ( ! block && ! isElement )
156
+ block = fn . displayName || fn . name ;
157
+
158
+ var Component = function ( props ) {
159
+ if ( ! className ) {
160
+ className = renderer . rule ( styles , block ) ;
161
+ }
162
+
163
+ var copy = props ;
164
+
165
+ if ( process . env . NODE_ENV !== 'production' ) {
166
+ copy = Object . assign ( { } , props ) ;
167
+ }
168
+
169
+ var dynamicClassName = fromCache ( props . css ) ;
170
+ delete copy . css ;
171
+
172
+ copy . className = ( props . className + '' ) + className + dynamicClassName ;
173
+
174
+ return isElement ? h ( fn , copy ) : fn ( copy ) ;
175
+ } ;
176
+
177
+ if ( block && ( process . env . NODE_EVN !== 'production' ) ) {
178
+ Component . displayName = 'jsx(' + block + ')' ;
179
+ }
180
+
181
+ return Component ;
182
+ } ;
183
+
134
184
return renderer ;
135
185
} ;
0 commit comments