Skip to content

Commit 7721f0b

Browse files
committed
feat: implement jsx()
1 parent 3816612 commit 7721f0b

File tree

2 files changed

+53
-3
lines changed

2 files changed

+53
-3
lines changed

lib/hash.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ exports.hash = function(styles) {
1111
hash = (hash * 33) ^ str.charCodeAt(--i);
1212
}
1313

14-
return '_' + (hash >>> 0).toString(36);
14+
return '_' + (hash >>> 0);
1515
};

lib/index.js

+52-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ exports.create = function (h) {
2727
};
2828
}
2929

30-
function put (selector, decls) {
30+
var put = function (selector, decls) {
3131
var selectors = selector.split(',');
3232
var str = '';
3333
var prop, value;
@@ -48,7 +48,21 @@ exports.create = function (h) {
4848
str = '.' + selector + '{' + str + '}';
4949
putRaw(str);
5050
}
51-
}
51+
};
52+
53+
var cache = {};
54+
55+
var fromCache = function (styles) {
56+
if (!styles) return '';
57+
58+
var key = hash(styles);
59+
60+
if (!cache[key]) {
61+
cache[key] = renderer.rule(styles, key);
62+
}
63+
64+
return cache[key];
65+
};
5266

5367
renderer.rule = function(styles, block) {
5468
if (!block) {
@@ -90,6 +104,9 @@ exports.create = function (h) {
90104
var className;
91105
var isElement = typeof fn === 'string';
92106

107+
if (!block && !isElement)
108+
block = fn.displayName || fn.name;
109+
93110
var Component = function(props) {
94111
if (!className) {
95112
className = renderer.rule(styles, block);
@@ -131,5 +148,38 @@ exports.create = function (h) {
131148
return Component;
132149
};
133150

151+
renderer.jsx = function (fn, styles, block) {
152+
var className;
153+
var isElement = typeof fn === 'string';
154+
155+
if (!block && !isElement)
156+
block = fn.displayName || fn.name;
157+
158+
var Component = function (props) {
159+
if (!className) {
160+
className = renderer.rule(styles, block);
161+
}
162+
163+
var copy = props;
164+
165+
if (process.env.NODE_ENV !== 'production') {
166+
copy = Object.assign({}, props);
167+
}
168+
169+
var dynamicClassName = fromCache(props.css);
170+
delete copy.css;
171+
172+
copy.className = (props.className + '') + className + dynamicClassName;
173+
174+
return isElement ? h(fn, copy) : fn(copy);
175+
};
176+
177+
if (block && (process.env.NODE_EVN !== 'production')) {
178+
Component.displayName = 'jsx(' + block + ')';
179+
}
180+
181+
return Component;
182+
};
183+
134184
return renderer;
135185
};

0 commit comments

Comments
 (0)