Skip to content

Commit 3816612

Browse files
committed
feat: make rule() work
1 parent 475264d commit 3816612

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

lib/index.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ exports.create = function (h) {
1010
var renderer = {
1111
raw: '',
1212
cns: {},
13-
pfx: ' _',
13+
pfx: '_',
1414
cnt: 0
1515
};
1616

@@ -44,9 +44,10 @@ exports.create = function (h) {
4444
}
4545
}
4646

47-
str = selector + '{' + str + '}';
48-
49-
putRaw(str);
47+
if (str) {
48+
str = '.' + selector + '{' + str + '}';
49+
putRaw(str);
50+
}
5051
}
5152

5253
renderer.rule = function(styles, block) {
@@ -57,27 +58,30 @@ exports.create = function (h) {
5758
if (isClient) {
5859
if (process.env.NODE_ENV !== 'production') {
5960
if (isClient) {
61+
/*
6062
if (document.getElementById('css-' + block)) {
6163
console.error(
6264
'ezcss detected class name collision "css-' + block + '". ' +
6365
'Multiple components use the same class name.'
6466
);
6567
}
68+
*/
6669
}
6770
}
6871

69-
if (this.cns[block]) {
72+
if (renderer.cns[block]) {
7073
if (process.env.NODE_ENV !== 'production') {
7174
// eslint-disable-next-line
72-
console.log('Hydration cache hit: "' + block + '"');
75+
console.info('Hydration cache hit: "' + block + '"');
7376
}
7477

7578
return;
7679
}
7780
}
7881

82+
block = renderer.pfx + block;
7983
put(block, styles);
80-
this.cns[block] = 1;
84+
renderer.cns[block] = 1;
8185

8286
return ' ' + block;
8387
};
@@ -88,14 +92,14 @@ exports.create = function (h) {
8892

8993
var Component = function(props) {
9094
if (!className) {
91-
className = this.rule(styles, block);
95+
className = renderer.rule(styles, block);
9296
}
9397

9498
var dynamicClassName = '';
9599
var dynamicStylesElement = null;
96100

97101
if (dynamicTemplate) {
98-
dynamicClassName = this.pfx + (this.cnt++).toString(36);
102+
dynamicClassName = renderer.pfx + (renderer.cnt++).toString(36);
99103

100104
var dynamicStyles = dynamicTemplate(props);
101105
var rawCss = stringify(dynamicStyles, dynamicClassName);
@@ -126,4 +130,6 @@ exports.create = function (h) {
126130

127131
return Component;
128132
};
133+
134+
return renderer;
129135
};

0 commit comments

Comments
 (0)