All Projects → gaoxiaoliangz → React Scoped Css

gaoxiaoliangz / React Scoped Css

CSS encapsulation solution for React

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Scoped Css

InstagramCpp
Instagram REST API client wirtten in C++
Stars: ✭ 24 (-88.79%)
Mutual labels:  lib
M3u8
Parser and generator of M3U8-playlists for Apple HLS. Library for Go language. 🎦
Stars: ✭ 800 (+273.83%)
Mutual labels:  lib
Yamaha Nodejs
A node module to control your yamaha receiver
Stars: ✭ 103 (-51.87%)
Mutual labels:  lib
Libmqtt
MQTT v3.1.1/5.0 library in Go
Stars: ✭ 290 (+35.51%)
Mutual labels:  lib
Bounty
Javascript and SVG odometer effect library with motion blur
Stars: ✭ 724 (+238.32%)
Mutual labels:  lib
Xtd forms
Modern c++17 library to create native gui for Microsoft Windows, Apple macOS and Linux.
Stars: ✭ 25 (-88.32%)
Mutual labels:  lib
node-glob-promise
Promise version of glob
Stars: ✭ 43 (-79.91%)
Mutual labels:  lib
Vue Loaders
Vue + loaders.css
Stars: ✭ 127 (-40.65%)
Mutual labels:  lib
Android Hot Libraries
收集总结 Android 项目中值得推荐的优秀开源项目
Stars: ✭ 755 (+252.8%)
Mutual labels:  lib
Appmetrics.js
A small (< 1kb) library for measuring things in your web app and reporting the results to Google Analytics.
Stars: ✭ 1,383 (+546.26%)
Mutual labels:  lib
Imageflow
High-performance image manipulation for web servers. Includes imageflow_server, imageflow_tool, and libimageflow
Stars: ✭ 3,643 (+1602.34%)
Mutual labels:  lib
Nintendo Switch Eshop
Crawler for Nintendo Switch eShop
Stars: ✭ 463 (+116.36%)
Mutual labels:  lib
Easygo
基于Kotlin、OkHttp的声明式网络框架,像写HTML界面一样写网络调用代码
Stars: ✭ 40 (-81.31%)
Mutual labels:  lib
Anet
A .NET Core Common Library , Framework and Boilerplate.
Stars: ✭ 255 (+19.16%)
Mutual labels:  lib
Dtkwidget
Deepin Toolkit, widget module for DDE look and feel
Stars: ✭ 112 (-47.66%)
Mutual labels:  lib
python
A python package for sending logs to LogDNA
Stars: ✭ 36 (-83.18%)
Mutual labels:  lib
Node Pretty Exceptions
Pretty and more helpful uncaught exceptions, automatically
Stars: ✭ 22 (-89.72%)
Mutual labels:  lib
Notion Js
🤯 Notion API
Stars: ✭ 136 (-36.45%)
Mutual labels:  lib
Math Engine
Mathematical expression parsing and calculation engine library. 数学表达式解析计算引擎库
Stars: ✭ 123 (-42.52%)
Mutual labels:  lib
Imageselector
图片选择器, 支持多图选择和图片预览
Stars: ✭ 62 (-71.03%)
Mutual labels:  lib

React scoped CSS

CSS encapsulation solution for React

Why

In order to solve the problem of css encapsulation, there are two main approaches, css-modules and css-in-js. However, both of them have a very very big problem. The developer experience is not good, by which I mean you often have to write more code than you expect to achieve a simple style. With react-scoped-css, you can just write the normal css you know, while having the advantage of css encapsulation!

How does it work

Write your css in a file ends with .scoped.css (scss & sass are also supported)

/* Title.scoped.css */
.title {
  background: #999;
}

p {
  color: #ddd;
}

Import the css file

// Title.jsx
import React from 'react'
import './Title.scoped.css'

const Title = props => {
  return (
    <h1 className="title">
      <p>{props.children}</p>
    </h1>
  )
}

export default Title

Then, in the html, component with scoped css file imported has a unique data-v-<hash> attribute on the html element tag, and the css selector also has a corresponding hash like selector[data-v-<hash>]. So all the styles in Title.scoped.css are scoped to Title.jsx.

How to use

Use in an existing create-react-app project (which hasn't been ejected yet)

Since create-react-app doesn't allow you to change webpack and babel config. So in this scenario, you have to use craco to override webpack config. Luckily you don't have to do it manually, I created a craco plugin that can do it for you.

Setup craco following this guide

Then, install craco-plugin-scoped-css

yarn add craco-plugin-scoped-css

create a craco.config.js in your project root

module.exports = {
  plugins: [
    {
      plugin: require('craco-plugin-scoped-css'),
    },
  ],
}

Manual setup

You have to add one babel plugin and one webpack loader.

the babel plugin

yarn add babel-plugin-react-scoped-css --dev

and in your babelrc add

"plugins": ["babel-plugin-react-scoped-css"]

also note that you can define your own matching rule like this

"plugins": [
  [
    "babel-plugin-react-scoped-css",
    {
      "include": ".local.(sa|sc|c)ss$"
    }
  ]
]

If you have other plugins installed, just add it to the list, order doesn't matter.

Plugin options:

  • include(optional, RegExp, defaults to /\.scoped\.(sa|sc|c)ss$/): config which css file to be identified as scoped
  • hashSeed (optional, string): used to calculate attribute hash. (TODO: a better explanation)

the webpack loader

yarn add scoped-css-loader --dev

and in your webpack.config.js

{
  test: /\.(sc|c|sa)ss$/,
  use: [
    {
      loader: 'style-loader',
    },
    {
      loader: 'css-loader',
      options: {
        sourceMap: true,
        importLoaders: 2,
      },
    },
    // You have to put it after `css-loader` and before any `pre-precessing loader`
    { loader: 'scoped-css-loader' },
    {
      loader: 'sass-loader',
    },
  ],
},

That's it for the configuration.

Some common use cases with react scoped css

Check out simple-scoped-css-example

Common errors

Fragment : Invalid prop data-v-xxxxxxxx supplied to React.Fragment

react-scoped-css won't add data-v attribute to <></> or <React.Fragment></React.Fragment>. But it won't know for sure that <Fragment> is a react fragment and assigned data-v- to it (related issue)

Invalid code

import React, { Fragment } from 'react'

export function MyComponent() {
  return (
    <Fragment>
      ...
    </Fragment>
  )
}

Valid code

import React from 'react'

export function MyComponent() {
  return (
    <>
      ...
    </>
  )
}
import React from 'react'

export function MyComponent() {
  return (
    <React.Fragment>
      ...
    </React.Fragment>
  )
}

TODOs

  • [ ] add Chinese docs
  • [ ] add seprated docs for each package
  • [ ] a better getting started guide
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].