Skip to content

Instantly share code, notes, and snippets.

@geoffreydhuyvetters
Last active October 28, 2015 16:15
Show Gist options
  • Save geoffreydhuyvetters/51f0165a1304e4641a7d to your computer and use it in GitHub Desktop.
Save geoffreydhuyvetters/51f0165a1304e4641a7d to your computer and use it in GitHub Desktop.
react style as a template string
import ReactDOM from 'react-dom';
import React from 'react';
const toCamelCase = data => {
let str = '';
data.split('-').forEach((part, i) => {
if(i > 0) str += (part.charAt(0).toUpperCase() + part.substr(1, part.length));
else str += part;
});
return str;
};
const css = (strings, ...values) => {
let obj = {};
let str = '';
if(Array.isArray(strings)){
for(let i = 0; i < strings.length; i++){
if(strings[i]) str += strings[i];
if(values[i]) str += values[i];
}
}else{
str = strings;
}
let lines = str.split(';');
lines.forEach(line => {
line = line.trim();
if(line){
let parts = line.split(':');
obj[toCamelCase(parts[0].trim())] = parts[1].trim();
}
});
return obj
};
const HelloWorld = props => {
let style = css`
font-size: 20em;
background-color: blue;
color: white;
transform: rotate(20deg);
`;
return <div style={style}>Hello World</div>;
};
ReactDOM.render(<HelloWorld />, document.querySelector('body'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment