@@ -10,7 +10,7 @@ exports.create = function (h) {
10
10
var renderer = {
11
11
raw : '' ,
12
12
cns : { } ,
13
- pfx : ' _' ,
13
+ pfx : '_' ,
14
14
cnt : 0
15
15
} ;
16
16
@@ -44,9 +44,10 @@ exports.create = function (h) {
44
44
}
45
45
}
46
46
47
- str = selector + '{' + str + '}' ;
48
-
49
- putRaw ( str ) ;
47
+ if ( str ) {
48
+ str = '.' + selector + '{' + str + '}' ;
49
+ putRaw ( str ) ;
50
+ }
50
51
}
51
52
52
53
renderer . rule = function ( styles , block ) {
@@ -57,27 +58,30 @@ exports.create = function (h) {
57
58
if ( isClient ) {
58
59
if ( process . env . NODE_ENV !== 'production' ) {
59
60
if ( isClient ) {
61
+ /*
60
62
if (document.getElementById('css-' + block)) {
61
63
console.error(
62
64
'ezcss detected class name collision "css-' + block + '". ' +
63
65
'Multiple components use the same class name.'
64
66
);
65
67
}
68
+ */
66
69
}
67
70
}
68
71
69
- if ( this . cns [ block ] ) {
72
+ if ( renderer . cns [ block ] ) {
70
73
if ( process . env . NODE_ENV !== 'production' ) {
71
74
// eslint-disable-next-line
72
- console . log ( 'Hydration cache hit: "' + block + '"' ) ;
75
+ console . info ( 'Hydration cache hit: "' + block + '"' ) ;
73
76
}
74
77
75
78
return ;
76
79
}
77
80
}
78
81
82
+ block = renderer . pfx + block ;
79
83
put ( block , styles ) ;
80
- this . cns [ block ] = 1 ;
84
+ renderer . cns [ block ] = 1 ;
81
85
82
86
return ' ' + block ;
83
87
} ;
@@ -88,14 +92,14 @@ exports.create = function (h) {
88
92
89
93
var Component = function ( props ) {
90
94
if ( ! className ) {
91
- className = this . rule ( styles , block ) ;
95
+ className = renderer . rule ( styles , block ) ;
92
96
}
93
97
94
98
var dynamicClassName = '' ;
95
99
var dynamicStylesElement = null ;
96
100
97
101
if ( dynamicTemplate ) {
98
- dynamicClassName = this . pfx + ( this . cnt ++ ) . toString ( 36 ) ;
102
+ dynamicClassName = renderer . pfx + ( renderer . cnt ++ ) . toString ( 36 ) ;
99
103
100
104
var dynamicStyles = dynamicTemplate ( props ) ;
101
105
var rawCss = stringify ( dynamicStyles , dynamicClassName ) ;
@@ -126,4 +130,6 @@ exports.create = function (h) {
126
130
127
131
return Component ;
128
132
} ;
133
+
134
+ return renderer ;
129
135
} ;
0 commit comments