File tree 2 files changed +57
-3
lines changed
2 files changed +57
-3
lines changed Original file line number Diff line number Diff line change 1
- import { createElement as h } from 'react' ;
1
+ import { createElement as h , Component } from 'react' ;
2
2
import { storiesOf } from '@storybook/react' ;
3
3
const { action} = require ( '@storybook/addon-actions' ) ;
4
4
const { linkTo} = require ( '@storybook/addon-links' ) ;
@@ -11,7 +11,32 @@ addonRef(nano);
11
11
12
12
const css = nano . createRef ( ) ;
13
13
14
+ class RefExample extends Component {
15
+ constructor ( props ) {
16
+ super ( props ) ;
17
+ this . state = {
18
+ color : 'red' ,
19
+ } ;
20
+ }
21
+
22
+ render ( ) {
23
+ var data = nano . ref ( { '&' : { color : this . state . color } , '&:hover' : { color : 'blue' } } ) ;
24
+
25
+ return h ( 'div' , { } ,
26
+ h ( 'div' , data , 'Hello world' ) ,
27
+
28
+ h ( 'br' ) ,
29
+
30
+ h ( 'button' , { onClick : ( ) => this . setState ( { color : 'red' } ) } , 'red' ) ,
31
+ h ( 'button' , { onClick : ( ) => this . setState ( { color : 'blue' } ) } , 'blue' ) ,
32
+ ) ;
33
+ }
34
+ }
35
+
14
36
storiesOf ( 'Addons/ref' , module )
15
37
. add ( 'Default' , ( ) =>
16
38
h ( 'div' , css ( { '&' : { color : 'red' } , '&:hover' : { color : 'blue' } } ) , 'Hello world' )
17
39
)
40
+ . add ( 'ref()' , ( ) =>
41
+ h ( RefExample )
42
+ )
Original file line number Diff line number Diff line change 2
2
3
3
var addonPipe = require ( './pipe' ) . addon ;
4
4
5
+ // eslint-disable-next-line no-undef
6
+ var sNano = typeof Symbol === 'object' ? Symbol ( 'nano-css' ) : '@@nano-css' ;
7
+
5
8
exports . addon = function ( renderer ) {
6
9
if ( ! renderer . pipe ) {
7
10
addonPipe ( renderer ) ;
@@ -14,15 +17,13 @@ exports.addon = function (renderer) {
14
17
renderer . createRef = function ( ) {
15
18
var pipe = renderer . pipe ( ) ;
16
19
var el = null ;
17
-
18
20
var ref = function ( element ) {
19
21
if ( el ) el = element ;
20
22
else {
21
23
el = null ;
22
24
pipe . remove ( ) ;
23
25
}
24
26
} ;
25
-
26
27
var obj = { ref : ref } ;
27
28
28
29
obj [ pipe . attr ] = '' ;
@@ -32,4 +33,32 @@ exports.addon = function (renderer) {
32
33
return obj ;
33
34
} ;
34
35
} ;
36
+
37
+ renderer . ref = function ( css , originalRef ) {
38
+ if ( process . env . NODE_ENV !== 'production' ) {
39
+ if ( originalRef && typeof originalRef !== 'function' ) {
40
+ console . error (
41
+ 'nano-css "ref" function expects argument to be a ref function, "' + ( typeof originalRef ) + '" provided.'
42
+ ) ;
43
+ }
44
+ }
45
+
46
+ var obj = {
47
+ ref : function ( el ) {
48
+ if ( originalRef ) originalRef ( el ) ;
49
+ if ( ! el ) return ;
50
+
51
+ var pipe = el [ sNano ] ;
52
+
53
+ if ( ! pipe ) {
54
+ el [ sNano ] = pipe = renderer . pipe ( ) ;
55
+ el . setAttribute ( pipe . attr , '' ) ;
56
+ }
57
+
58
+ pipe . css ( css ) ;
59
+ }
60
+ } ;
61
+
62
+ return obj ;
63
+ } ;
35
64
} ;
You can’t perform that action at this time.
0 commit comments