最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React-JS convert CSS-in-JS to CSS string - Stack Overflow

programmeradmin2浏览0评论

In a react project, the end user can generate CSS using a tool.

I found how to generate JS object and pass it to style={} attribute but I want to convert the generated JS object to CSS string, so I can save it and use it in other places.

I want to convert JSObject to CSS:

JSObject [Sample - Input]

JSObject: {
  lineHeight: 1,
  fontSize: 15,
  padding: 0,
  margin: 0,
  msBoxShadow: '0 0 1px 1px #000',
  MozBoxShadow: '0 0 1px 1px #000',
  OBoxShadow: '0 0 1px 1px #000',
  WebkitBoxShadow: '0 0 1px 1px #000',
  boxShadow: '0 0 1px 1px #000'
}

Expected CSS [Sample - Output]

.cssClass{
    line-height: 1;
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    box-shadow: rgb(0, 0, 0) 0px 0px 1px 1px;
}

In a react project, the end user can generate CSS using a tool.

I found how to generate JS object and pass it to style={} attribute but I want to convert the generated JS object to CSS string, so I can save it and use it in other places.

I want to convert JSObject to CSS:

JSObject [Sample - Input]

JSObject: {
  lineHeight: 1,
  fontSize: 15,
  padding: 0,
  margin: 0,
  msBoxShadow: '0 0 1px 1px #000',
  MozBoxShadow: '0 0 1px 1px #000',
  OBoxShadow: '0 0 1px 1px #000',
  WebkitBoxShadow: '0 0 1px 1px #000',
  boxShadow: '0 0 1px 1px #000'
}

Expected CSS [Sample - Output]

.cssClass{
    line-height: 1;
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    box-shadow: rgb(0, 0, 0) 0px 0px 1px 1px;
}
Share Improve this question edited Dec 14, 2017 at 16:36 BHUVANESH MOHANKUMAR 2,7871 gold badge34 silver badges33 bronze badges asked Dec 14, 2017 at 16:27 Mohammed TawfikMohammed Tawfik 6011 gold badge9 silver badges22 bronze badges 2
  • check this github./aramk/CSSJSON – monssef Commented Dec 14, 2017 at 16:46
  • 1 @monssef Thanks but I want to convert Javascript object that generated using CSS-in-JS or JSS libraries to normal css [not JSON] – Mohammed Tawfik Commented Dec 14, 2017 at 16:52
Add a ment  | 

2 Answers 2

Reset to default 9

I found a solution for my question and posting here for future searcher.

I made this simple function to convert JS object to CSS string:

export const JSToCSS = (JS) => {
    let cssString = "";
    for (let objectKey in JS) {
        cssString += objectKey.replace(/([A-Z])/g, (g) => `-${g[0].toLowerCase()}`) + ": " + JS[objectKey] + ";\n";
    }

    return cssString;
};

While the accepted answer is a great and simple solution to the problem, for pleteness I would also want to suggest the css NPM package and its stringify method that adds features that someone visiting this question may be interested in.

发布评论

评论列表(0)

  1. 暂无评论