Getting the CSS out of rendered React components
Here's a fun problem for ya: How do you get the CSS from a rendered React component?
Right-click, inspect element, see it in dev tools. D'oh ๐
What about programmatically?

Turns out that's not so easy.
You could, for example, try the window.getComputedStyle method. Same as that DevTools view with all the styles.

But that's too much stuff. You get values for every CSS property that exists in the spec. ๐
What else can you try?
Well there's always the style prop. You could get its value and hope for the best.
But that only works if you're actually using it. Most people these days do not. Sure it's plenty useful for one-off overrides, but when was the last time you saw a project that heavily relies on the style prop?
Exactly. Not in a while.
Most projects have settled on styled-components or CSS modules. That makes our job both easier and harder. ๐คจ
Getting CSS from styled-components
You can watch me figure this one out in a livestream ๐
I tried all of the above and then some. Here's the solution I came up with: ๐จโ๐จ component-css-extractor. Open sourced for your ease of use ๐
CodeSandbox to prove it works ๐
๐จโ๐จ component-css-extractor relies on the fact that both styled-components and CSS modules use class names.
Each styled component that you write is assigned a unique class name. Rendered components get the class property, CSS rules go in a <style> tag in your header.
We can combine those to get a clean set of CSS rules. Scoped to the target component with nothing extra to mess us up. ๐
34 lines of prettified code in total ๐
As the comments say:
- Collect class names for entire subtree
- Use
document.head.getElementsByTagName("style")to get all<style>tags - Use the
cssmodule to parse collected CSS into a JavaScript object - Filter rules that don't apply to our classes
- Stringify and return
Works like a charm ๐จโ๐จ

Some caveats
As always there are some limitations.
First of all, this won't work on the server or during build time. Collecting <style> tags requires access to the DOM as it exists in the browser. You don't have that during server-side-rendering, I think.
Fortunately you don't need ๐จโ๐จ component-css-extractor on the server. Styled-components has a built-in way of extracting styles into a string for serving to the client.
The built-in way doesn't work in the browser, hence why I went down this rabbit hole.
Second of all, if you have global stylesheets in a .css file, ๐จโ๐จ component-css-extractor won't pick those up. Makes the code simpler.
Imagine having to parse all of CSS in all your stylesheets and figuring out what does and doesn't apply to a particular DOM node. Might as well build a browser rendering engine lol.
Happy Monday, ~Swizec
