Skip to content

Commit 46de4fd

Browse files
committed
feat: implement basic ref() interface
1 parent d8b6a1e commit 46de4fd

File tree

2 files changed

+57
-3
lines changed

2 files changed

+57
-3
lines changed

.storybook/ref.stories.js

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {createElement as h} from 'react';
1+
import {createElement as h, Component} from 'react';
22
import {storiesOf} from '@storybook/react';
33
const {action} = require('@storybook/addon-actions');
44
const {linkTo} = require('@storybook/addon-links');
@@ -11,7 +11,32 @@ addonRef(nano);
1111

1212
const css = nano.createRef();
1313

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+
1436
storiesOf('Addons/ref', module)
1537
.add('Default', () =>
1638
h('div', css({'&': {color: 'red'}, '&:hover': {color: 'blue'}}), 'Hello world')
1739
)
40+
.add('ref()', () =>
41+
h(RefExample)
42+
)

addon/ref.js

+31-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
var addonPipe = require('./pipe').addon;
44

5+
// eslint-disable-next-line no-undef
6+
var sNano = typeof Symbol === 'object' ? Symbol('nano-css') : '@@nano-css';
7+
58
exports.addon = function (renderer) {
69
if (!renderer.pipe) {
710
addonPipe(renderer);
@@ -14,15 +17,13 @@ exports.addon = function (renderer) {
1417
renderer.createRef = function () {
1518
var pipe = renderer.pipe();
1619
var el = null;
17-
1820
var ref = function (element) {
1921
if (el) el = element;
2022
else {
2123
el = null;
2224
pipe.remove();
2325
}
2426
};
25-
2627
var obj = {ref: ref};
2728

2829
obj[pipe.attr] = '';
@@ -32,4 +33,32 @@ exports.addon = function (renderer) {
3233
return obj;
3334
};
3435
};
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+
};
3564
};

0 commit comments

Comments
 (0)