File tree 6 files changed +53
-35
lines changed
6 files changed +53
-35
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ __Tiny [5<sup>th</sup> generation](https://github.com/streamich/freestyler/blob/
34
34
- [ ` keyframes() ` ] ( ./docs/keyframes.md )
35
35
- [ ` unitless ` ] ( ./docs/unitless.md )
36
36
- [ ` !important ` ] ( ./docs/important.md )
37
- - [ ` global ` ] ( ./docs/global.md )
37
+ - [ ` : global` ] ( ./docs/global.md )
38
38
- [ Server-side rendering] ( ./docs/SSR.md )
39
39
40
40
Original file line number Diff line number Diff line change 3
3
exports . addon = function ( renderer ) {
4
4
var cache = { } ;
5
5
6
- renderer . cache = function ( styles ) {
7
- if ( ! styles ) return '' ;
6
+ renderer . cache = function ( css ) {
7
+ if ( ! css ) return '' ;
8
8
9
- var key = renderer . hash ( styles ) ;
9
+ var key = renderer . hash ( css ) ;
10
10
11
11
if ( ! cache [ key ] ) {
12
- cache [ key ] = renderer . rule ( styles , key ) ;
12
+ cache [ key ] = renderer . rule ( css , key ) ;
13
13
}
14
14
15
15
return cache [ key ] ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ exports . addon = function ( renderer , id ) {
4
+ id = id || 'nano-css' ;
5
+
6
+ if ( process . env . NODE_ENV !== 'production' ) {
7
+ require ( './__dev__/warnOnMissingDependencies' ) ( 'hydrate' , renderer , [ 'put' ] ) ;
8
+ }
9
+
10
+ if ( renderer . client ) {
11
+ var hydrated = { } ;
12
+ var stylesheet = document . getElementById ( id ) ;
13
+
14
+ if ( ! stylesheet ) {
15
+ if ( process . env . NODE_ENV !== 'production' ) {
16
+ console . error ( 'Hydration stylesheet with id "' + id + '" was not found.' ) ;
17
+ }
18
+
19
+ return ;
20
+ }
21
+
22
+ var cssRules = stylesheet . cssRules ;
23
+
24
+ for ( var i = 0 ; i < cssRules . length ; i ++ ) {
25
+ var rule = cssRules [ i ] ;
26
+ hydrated [ rule . selectorText ] = 1 ;
27
+ }
28
+
29
+ var put = renderer . put ;
30
+
31
+ renderer . put = function ( selector , css ) {
32
+ if ( selector in hydrated ) {
33
+ if ( process . env . NODE_ENV !== 'production' ) {
34
+ // eslint-disable-next-line
35
+ console . info ( 'Hydrated selector: ' + selector ) ;
36
+ }
37
+
38
+ return ;
39
+ }
40
+
41
+ put ( selector , css ) ;
42
+ } ;
43
+ }
44
+ } ;
Original file line number Diff line number Diff line change @@ -5,35 +5,10 @@ exports.addon = function (renderer) {
5
5
require ( './__dev__/warnOnMissingDependencies' ) ( 'rule' , renderer , [ 'put' ] ) ;
6
6
}
7
7
8
- renderer . rule = function ( styles , block ) {
9
- if ( ! block ) {
10
- block = renderer . hash ( styles ) ;
11
- }
12
-
13
- if ( process . env . NODE_ENV !== 'production' ) {
14
- if ( renderer . client ) {
15
- /*
16
- if (document.getElementById('css-' + block)) {
17
- console.error(
18
- 'ezcss detected class name collision "css-' + block + '". ' +
19
- 'Multiple components use the same class name.'
20
- );
21
- }
22
- */
23
- if ( renderer . cns [ block ] ) {
24
- if ( process . env . NODE_ENV !== 'production' ) {
25
- // eslint-disable-next-line
26
- console . info ( 'Hydration cache hit: "' + block + '"' ) ;
27
- }
28
-
29
- return ;
30
- }
31
- }
32
- }
33
-
8
+ renderer . rule = function ( css , block ) {
9
+ block = block || renderer . hash ( css ) ;
34
10
block = renderer . pfx + block ;
35
- renderer . put ( '.' + block , styles ) ;
36
- renderer . cns [ block ] = 1 ;
11
+ renderer . put ( '.' + block , css ) ;
37
12
38
13
return ' ' + block ;
39
14
} ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ plenty more to chose from. Below is a list of addons shipped with `nano-css`.
22
22
- [ ` keyframes() ` ] ( ./keyframes.md )
23
23
- [ ` unitless ` ] ( ./unitless.md )
24
24
- [ ` !important ` ] ( ./important.md )
25
- - [ ` global ` ] ( ./global.md )
25
+ - [ ` : global` ] ( ./global.md )
26
26
27
27
28
28
## Addon Installation
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ exports.create = function (config) {
16
16
17
17
var renderer = assign ( {
18
18
raw : '' ,
19
- cns : { } ,
20
19
pfx : '_' ,
21
20
client : typeof window === 'object' ,
22
21
assign : assign ,
You can’t perform that action at this time.
0 commit comments