-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
42 lines (35 loc) · 1.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
'use strict';
var React = require('react');
var stylematic = require('stylematic');
module.exports = function createElementStylematic(element, props) {
// if no style prop, do nothing
if (!props || !props.style) {
return React.createElement.apply(null, arguments);
}
var result = stylematic(props.style);
var args = Array(arguments.length);
args[0] = element;
args[1] = newProps(props, result.passthrough, result.className)
var numChildrenArgs = arguments.length - 2;
for (var i = 0; i < numChildrenArgs; i++) {
args[i + 2] = arguments[i + 2];
}
return React.createElement.apply(null, args);
}
function newProps(original, styles, className) {
var props = Object.keys(original).reduce(function(acc, key) {
if (key === 'style') {
if (Object.keys(styles).length) {
acc.style = styles;
}
} else {
acc[key] = original[key];
}
return acc;
}, {});
if (className) {
props.className = props.className ?
props.className + ' ' + className : className;
}
return props;
}