Code Monkey home page Code Monkey logo

react-css-component's Introduction

CSS via Components

A single React component to inject CSS with ease.
It works with SSR (even using React 16's renderToNodeStream) and client-side rendering out-of-the-box.
It also provides an optional optimisation path.

TravisCI Test Coverage npm version npm downloads dependencies

Support Me

If you're using Robin Frischmann's packages, please consider supporting his Open Source Work on Patreon.

Installation

# yarn
yarn add react-css-component

# npm
npm i --save react-css-component

Caution: It requires react and prop-types to be present.

Why?

This package was created as a possible solution to a question by Kent C. Dodds.
Creating resuable React components in general is pretty easy, but adding styling is not. The simplest way is to just use inline style, which works pretty well for many basic components. Yet, it is very limited. Neither do we have have pseudo classes nor do we have media queries.
So, at some point, we need actual CSS. We could include a CSS file, but that would require an additional build step e.g. using Webpack in combination with its css-loader. While this would work, it's not very compelling to enforce a certain build tool, just to use a single component.
Alright, how about CSS in JS? Using plain JavaScript to style the component sounds great, as the component is written in JavaScript anyways. But, most CSS in JS solutions are way to big to depend on. They're built for applications, not for independent reusable components. Yet, we can still benefit from writing our CSS in JavaScript. This package is the attempt to provide the smallest universal solution for inlining CSS in JavaScript possible.

How?

Depending on whether universal rendering (server-side rendering with client-side rehydration) or client-side only rendering is used, the implementation uses a different logic.

Universal Rendering

Server Rendering: The UniversalStyle component renders a primitive style DOM element that uses dangerouslySetInnerHTML to inject a CSS string.
Client Rehydration: At first, the UniversalStyle component just gets rehydrated to match the server-side markup. But, as soon as it is about to unmount, the style element is copied to the document.head once. This will ensure it's existence just in case any other component using it's CSS is still visible.

Caveat

During server-side rendering, the UniversalStyle component is not able to track it's own occurence, which may result in duplicate style elements. This won't break anything, but also is not optimal. To ensure that each UniversalStyle instance is only rendered once, we need an unique cache on every render. This is achieved by passing a simple cache via React's context feature. Check the StyleCacheProvider component for more information.

Client-Only Rendering

If we only render on the client-side anyways, we can skip that complex flow and just use the ClientStyle.
It simply injects a style element into the document.head on instantiation and tracks its occurence using a global cache.

Note: The ClientStyle component won't throw with server-side rendering, but it simply doesn't render styles.

When?

It is important to point out, that this component does not fit for every use case.
It is especially built to be used for resuable shared components: If you're building a small React component and want to share it on npm, this is the perfect solution to add styling without having any additional setup on the user-side.
But, it should be used with caution when building applications. It does not solve common CSS problems such as specificity issues, global namespace conflicts or autoprefixing. Consider using a CSS in JS library, CSS Modules or whatever tool is actually built with full applications in mind.

Style

This component is the core component and is used to inject the CSS.
Both the universal and the client-only version share the exact same API.

Props

Parameter Type  Description
css (string)  A CSS string that is rendered

Import

// universal rendering
import { UniversalStyle as Style } from 'react-css-component'

// client-only rendering
import { ClientStyle as Style } from 'react-css-component'

Example

const css = `
  .button {
    background-color: darkblue;
    padding: 20px 10px;
    font-size: 16px;
    color: white
  }

  .button:hover {
    background-color: blue
  }
`

// return an array to colocate style and the button
const Button = () => [
  <Style css={css} />
  <button className="button">Click Me!</button>
]

StyleCacheProvider

The StyleCacheProvider is used to prevent duplication. It is not required, but recommended.
It should wrap your whole application and is only required once, no matter how many components use the Style component.
It does not alter the resulting DOM structure as it simply renders its children.
It passes an empty cache object via React's context feature.

Tip: If you're using the UniversalStyle component for a reusable shared component, make sure to inform your users about the caveat of not using this component.

Example

import { StyleCacheProvider } from 'react-css-component'

const App = () => (
  <StyleCacheProvider>
    <Button />
  </StyleCacheProvider>
)

License

react-css-component is licensed under the MIT License.
Documentation is licensed under Creative Common License.
Created with ♥ by @rofrischmann.

react-css-component's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

react-css-component's Issues

ClientStyle does not update

When using ClientStyle it will only render the CSS string provided the first time.
If you change it in later renders it does not update the styles.

This works correctly for the UniversalStyle.

Question - Scoping Styles to Component

Hello hello!

The library seems great 😃and almost exactly perfectly fits my use case - however, my concern is that the styles are in no way scoped to the component, correct?

i.e I have 2 components built using this library (X and Y), and they co-exist on one page at render. Because they both inject a <style> tag into the DOM, the styles from X can affect the presentation of Y? If for example they both use <p> tags, and X includes styles along the lines of p { color: red }

Am I correct in this line of thinking?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.