Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Khan/aphrodite
Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation
https://github.com/Khan/aphrodite
aphrodite css css-in-js javascript
Last synced: 14 days ago
JSON representation
Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation
- Host: GitHub
- URL: https://github.com/Khan/aphrodite
- Owner: Khan
- Created: 2015-10-07T02:31:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-08-06T14:35:50.000Z (over 3 years ago)
- Last Synced: 2024-05-06T10:32:43.827Z (6 months ago)
- Topics: aphrodite, css, css-in-js, javascript
- Language: JavaScript
- Homepage:
- Size: 912 KB
- Stars: 5,341
- Watchers: 116
- Forks: 188
- Open Issues: 93
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-react-cn - aphrodite - Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation (Uncategorized / Uncategorized)
- awesome-react-components-all - aphrodite - It's inline styles, but they work!. (Uncategorized / Uncategorized)
- awesome-react-components - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- awesome-learning-resources - aphrodite - Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation (Uncategorized / Uncategorized)
- awesome-list - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- awesome-react-components - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- awesome-react-components - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- awesome-list - aphrodite - agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation | Khan | 5220 | (JavaScript)
- awesome-react-components - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- fucking-awesome-react-components - aphrodite - It's inline styles, but they work!. (Code Design / CSS / Style)
- awesome-react - aphrodite - Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation ` 📝 6 months ago` (React [🔝](#readme))
- awesome-css-in-js - aphrodite
README
# Aphrodite [![npm version](https://badge.fury.io/js/aphrodite.svg)](https://badge.fury.io/js/aphrodite) [![Build Status](https://travis-ci.org/Khan/aphrodite.svg?branch=master)](https://travis-ci.org/Khan/aphrodite) [![Coverage Status](https://coveralls.io/repos/github/Khan/aphrodite/badge.svg?branch=master)](https://coveralls.io/github/Khan/aphrodite?branch=master) [![Gitter chat](https://img.shields.io/gitter/room/Khan/aphrodite.svg)](https://gitter.im/Khan/aphrodite) [![gzip size][gzip-badge]][unpkg-dist] [![size][size-badge]][unpkg-dist]
_Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation._
Support for colocating your styles with your JavaScript component.
- Works great with and without React
- Supports media queries without window.matchMedia
- Supports pseudo-selectors like `:hover`, `:active`, etc. without needing to
store hover or active state in components. `:visited` works just fine too.
- Supports automatic global `@font-face` detection and insertion.
- Respects precedence order when specifying multiple styles
- Requires no AST transform
- Injects only the exact styles needed for the render into the DOM.
- Can be used for server rendering
- Few dependencies, small (20k, 6k gzipped)
- No external CSS file generated for inclusion
- Autoprefixes styles# Installation
Aphrodite is distributed via [npm](https://www.npmjs.com/):
```
npm install --save aphrodite
```# API
If you'd rather watch introductory videos, you can find them [here](https://www.youtube.com/playlist?list=PLo4Zh55ZzNSBP78pCD0dZJi9zf8CA72_M).
```jsx
import React, { Component } from 'react';
import { StyleSheet, css } from 'aphrodite';class App extends Component {
render() {
return;
This is red.
This turns red on hover.
This turns red when the browser is less than 600px width.
This is blue.
This is blue and turns red when the browser is less than
600px width.
}
}const styles = StyleSheet.create({
red: {
backgroundColor: 'red'
},blue: {
backgroundColor: 'blue'
},hover: {
':hover': {
backgroundColor: 'red'
}
},small: {
'@media (max-width: 600px)': {
backgroundColor: 'red',
}
}
});
```## Conditionally Applying Styles
Note: If you want to conditionally use styles, that is simply accomplished via:
```jsx
const className = css(
shouldBeRed() ? styles.red : styles.blue,
shouldBeResponsive() && styles.small,
shouldBeHoverable() && styles.hover
)Hi
```This is possible because any falsey arguments will be ignored.
## Combining Styles
To combine styles, pass multiple styles or arrays of styles into `css()`. This is common when combining styles from an owner component:
```jsx
class App extends Component {
render() {
return ;
}
}class Marker extends Component {
;
render() {
// css() accepts styles, arrays of styles (including nested arrays),
// and falsy values including undefined.
return
}
}const styles = StyleSheet.create({
red: {
backgroundColor: 'red'
},large: {
height: 20,
width: 20
},marker: {
backgroundColor: 'blue'
}
});
```## Resetting Style Cache
The `reset` function can be used to reset the HTML style tag, injection buffer, and injected cache. Useful when Aphrodite needs to be torn down and set back up.
```js
import { reset } from 'aphrodite';reset();
```While the `resetInjectedStyle` function can be used to reset the injected cache for a single key (usually the class name).
```js
import { resetInjectedStyle } from 'aphrodite';resetInjectedStyle('class_1sAs8jg');
```## Server-side rendering
To perform server-side rendering, make a call to `StyleSheetServer.renderStatic`, which takes a callback. Do your rendering inside of the callback and return the generated HTML. All of the calls to `css()` inside of the callback will be collected and the generated css as well as the generated HTML will be returned.
Rehydrating lets Aphrodite know which styles have already been inserted into the page. If you don't rehydrate, Aphrodite might add duplicate styles to the page.
To perform rehydration, call `StyleSheet.rehydrate` with the list of generated class names returned to you by `StyleSheetServer.renderStatic`.
Note: If you are using `aphrodite/no-important` in your project and you want to render it on server side, be sure to import `StyleSheetServer` from `aphrodite/no-important` otherwise you are going to get an error.
As an example:
```js
import { StyleSheetServer } from 'aphrodite';// Contains the generated html, as well as the generated css and some
// rehydration data.
var {html, css} = StyleSheetServer.renderStatic(() => {
return ReactDOMServer.renderToString();
});// Return the base HTML, which contains your rendered HTML as well as a
// simple rehydration script.
return `
${css.content}
${html}
StyleSheet.rehydrate(${JSON.stringify(css.renderedClassNames)});
ReactDOM.render(<App/>, document.getElementById('root'));
`;
```## Disabling `!important`
By default, Aphrodite will append `!important` to style definitions. This is
intended to make integrating with a pre-existing codebase easier. If you'd like
to avoid this behaviour, then instead of importing `aphrodite`, import
`aphrodite/no-important`. Otherwise, usage is the same:```js
import { StyleSheet, css } from 'aphrodite/no-important';
```## Minifying style names
By default, Aphrodite will minify style names down to their hashes in production
(`process.env.NODE_ENV === 'production'`). You can override this behavior by
calling `minify` with `true` or `false` before calling `StyleSheet.create`.This is useful if you want to facilitate debugging in production for example.
```js
import { StyleSheet, minify } from 'aphrodite';// Always keep the full style names
minify(false);// ... proceed to use StyleSheet.create etc.
```## Font Faces
Creating custom font faces is a special case. Typically you need to define a global `@font-face` rule. In the case of Aphrodite we only want to insert that rule if it's actually being referenced by a class that's in the page. We've made it so that the `fontFamily` property can accept a font-face object (either directly or inside an array). A global `@font-face` rule is then generated based on the font definition.
```js
const coolFont = {
fontFamily: "CoolFont",
fontStyle: "normal",
fontWeight: "normal",
src: "url('coolfont.woff2') format('woff2')"
};const styles = StyleSheet.create({
headingText: {
fontFamily: coolFont,
fontSize: 20
},
bodyText: {
fontFamily: [coolFont, "sans-serif"]
fontSize: 12
}
});
```Aphrodite will ensure that the global `@font-face` rule for this font is only inserted once, no matter how many times it's referenced.
## Animations
Similar to [Font Faces](#font-faces), Aphrodite supports keyframe animations, but it's treated as a special case. Once we find an instance of the animation being referenced, a global `@keyframes` rule is created and appended to the page.
Animations are provided as objects describing the animation, in typical `@keyframes` fashion. Using the `animationName` property, you can supply a single animation object, or an array of animation objects. Other animation properties like `animationDuration` can be provided as strings.
```js
const translateKeyframes = {
'0%': {
transform: 'translateX(0)',
},'50%': {
transform: 'translateX(100px)',
},'100%': {
transform: 'translateX(0)',
},
};const opacityKeyframes = {
'from': {
opacity: 0,
},'to': {
opacity: 1,
}
};const styles = StyleSheet.create({
zippyHeader: {
animationName: [translateKeyframes, opacityKeyframes],
animationDuration: '3s, 1200ms',
animationIterationCount: 'infinite',
},
});
```Aphrodite will ensure that `@keyframes` rules are never duplicated, no matter how many times a given rule is referenced.
# Use without React
Aphrodite was built with React in mind but does not depend on React. Here, you can see it
used with [Web Components][webcomponents]:```js
import { StyleSheet, css } from 'aphrodite';const styles = StyleSheet.create({
red: {
backgroundColor: 'red'
}
});class App extends HTMLElement {
attachedCallback() {
this.innerHTML = `
This is red.
`;
}
}document.registerElement('my-app', App);
```# Caveats
## Style injection and buffering
Aphrodite will automatically attempt to create a `` tag in the document's `<head>` element to put its generated styles in. Aphrodite will only generate one `<style>` tag and will add new styles to this over time. If you want to control which style tag Aphrodite uses, create a style tag yourself with the `data-aphrodite` attribute and Aphrodite will use that instead of creating one for you.
To speed up injection of styles, Aphrodite will automatically try to buffer writes to this `<style>` tag so that minimum number of DOM modifications happen.
Aphrodite uses [asap](https://github.com/kriskowal/asap) to schedule buffer flushing. If you measure DOM elements' dimensions in `componentDidMount` or `componentDidUpdate`, you can use `setTimeout` or `flushToStyleTag` to ensure all styles are injected.
```js
import { StyleSheet, css } from 'aphrodite';class Component extends React.Component {
render() {
return <div ref="root" className={css(styles.div)} />;
}componentDidMount() {
// At this point styles might not be injected yet.
this.refs.root.offsetHeight; // 0 or 10setTimeout(() => {
this.refs.root.offsetHeight; // 10
}, 0);
}
}const styles = StyleSheet.create({
div: {
height: 10,
},
});
```## Assigning a string to a content property for a pseudo-element
When assigning a string to the `content` property it requires double or single quotes in CSS.
Therefore with Aphrodite you also have to provide the quotes within the value string for `content` to match how it will be represented in CSS.As an example:
```javascript
const styles = StyleSheet.create({
large: {
':after': {
content: '"Aphrodite"',
},
},
},
small: {
':before': {
content: "'Aphrodite'",
},
},
});
```
The generated css will be:```css
.large_im3wl1:after {
content: "Aphrodite" !important;
}.small_ffd5jf:before {
content: 'Aphrodite' !important;
}
```## Overriding styles
When combining multiple aphrodite styles, you are strongly recommended to merge all of your styles into a single call to `css()`, and should not combine the generated class names that aphrodite outputs (via string concatenation, `classnames`, etc.).
For example, if you have a base style of `foo` which you are trying to override with `bar`:### Do this:
```js
const styles = StyleSheet.create({
foo: {
color: 'red'
},bar: {
color: 'blue'
}
});// ...
const className = css(styles.foo, styles.bar);
```### Don't do this:
```js
const styles = StyleSheet.create({
foo: {
color: 'red'
},bar: {
color: 'blue'
}
});// ...
const className = css(styles.foo) + " " + css(styles.bar);
```Why does it matter? Although the second one will produce a valid class name, it cannot guarantee that the `bar` styles will override the `foo` ones.
The way the CSS works, it is not the *class name that comes last on an element* that matters, it is specificity. When we look at the generated CSS though, we find that all of the class names have the same specificity, since they are all a single class name:```css
.foo_im3wl1 {
color: red;
}
``````css
.bar_hxfs3d {
color: blue;
}
```In the case where the specificity is the same, what matters is *the order that the styles appear in the stylesheet*. That is, if the generated stylesheet looks like
```css
.foo_im3wl1 {
color: red;
}
.bar_hxfs3d {
color: blue;
}
```then you will get the appropriate effect of the `bar` styles overriding the `foo` ones, but if the stylesheet looks like
```css
.bar_hxfs3d {
color: blue;
}
.foo_im3wl1 {
color: red;
}
```then we end up with the opposite effect, with `foo` overriding `bar`! The way to solve this is to pass both of the styles into aphrodite's `css()` call. Then, it will produce a single class name, like `foo_im3wl1-o_O-bar_hxfs3d`, with the correctly overridden styles, thus solving the problem:
```css
.foo_im3wl1-o_O-bar_hxfs3d {
color: blue;
}
```## Object key ordering
When styles are specified in Aphrodite, the order that they appear in the
actual stylesheet depends on the order that keys are retrieved from the
objects. This ordering is determined by the JavaScript engine that is being
used to render the styles. Sometimes, the order that the styles appear in the
stylesheet matter for the semantics of the CSS. For instance, depending on the
engine, the styles generated from```js
const styles = StyleSheet.create({
ordered: {
margin: 0,
marginLeft: 15,
},
});
css(styles.ordered);
```you might expect the following CSS to be generated:
```css
margin: 0px;
margin-left: 15px;
```but depending on the ordering of the keys in the style object, the CSS might
appear as```css
margin-left: 15px;
margin: 0px;
```which is semantically different, because the style which appears later will
override the style before it.This might also manifest as a problem when server-side rendering, if the
generated styles appear in a different order on the client and on the server.If you experience this issue where styles don't appear in the generated CSS in
the order that they appear in your objects, there are two solutions:1. Don't use shorthand properties. For instance, in the margin example above,
by switching from using a shorthand property and a longhand property in the
same styles to using only longhand properties, the issue could be avoided.```js
const styles = StyleSheet.create({
ordered: {
marginTop: 0,
marginRight: 0,
marginBottom: 0,
marginLeft: 15,
},
});
```2. Specify the ordering of your styles by specifying them using a
[`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map).
Since `Map`s preserve their insertion order, Aphrodite is able to place your
styles in the correct order.```js
const styles = StyleSheet.create({
ordered: new Map([
["margin", 0],
["marginLeft", 15],
]),
});
```Note that `Map`s are not fully supported in all browsers. It can be
polyfilled by using a package
like [es6-shim](https://www.npmjs.com/package/es6-shim).## Advanced: Extensions
Extra features can be added to Aphrodite using extensions.
To add extensions to Aphrodite, call `StyleSheet.extend` with the extensions
you are adding. The result will be an object containing the usual exports of
Aphrodite (`css`, `StyleSheet`, etc.) which will have your extensions included.
For example:```js
// my-aphrodite.js
import {StyleSheet} from "aphrodite";export default StyleSheet.extend([extension1, extension2]);
// styled.js
import {StyleSheet, css} from "my-aphrodite.js";const styles = StyleSheet.create({
...
});
```**Note**: Using extensions may cause Aphrodite's styles to not work properly.
Plain Aphrodite, when used properly, ensures that the correct styles will
always be applied to elements. Due to CSS specificity rules, extensions might
allow you to generate styles that conflict with each other, causing incorrect
styles to be shown. See the global extension below to see what could go wrong.### Creating extensions
Currently, there is only one kind of extension available: selector handlers.
These kinds of extensions let you look at the selectors that someone specifies
and generate new selectors based on them. They are used to handle pseudo-styles
and media queries inside of Aphrodite. See the
[`defaultSelectorHandlers` docs](src/generate.js?L8) for information about how
to create a selector handler function.To use your extension, create an object containing a key of the kind of
extension that you created, and pass that into `StyleSheet.extend()`:```js
const mySelectorHandler = ...;const myExtension = {selectorHandler: mySelectorHandler};
const { StyleSheet: newStyleSheet, css: newCss } = StyleSheet.extend([myExtension]);
```As an example, you could write an extension which generates global styles like
```js
const globalSelectorHandler = (selector, _, generateSubtreeStyles) => {
if (selector[0] !== "*") {
return null;
}return generateSubtreeStyles(selector.slice(1));
};const globalExtension = {selectorHandler: globalSelectorHandler};
```This might cause problems when two places try to generate styles for the same
global selector however! For example, after```js
const styles = StyleSheet.create({
globals: {
'*div': {
color: 'red',
},
}
});const styles2 = StyleSheet.create({
globals: {
'*div': {
color: 'blue',
},
},
});css(styles.globals);
css(styles2.globals);
```It isn't determinate whether divs will be red or blue.
## Minify class names
Minify class names by setting the environment variable `process.env.NODE_ENV`
to the string value `production`.# Tools
- [Aphrodite output tool](https://output.jsbin.com/qoseye) - Paste what you pass to `StyleSheet.create` and see the generated CSS
- [jest-aphrodite-react](https://github.com/dmiller9911/jest-aphrodite-react) - Utilities for testing with React and Jest.# TODO
- Add JSdoc
- Consider removing !important from everything.# Other solutions
- [js-next/react-style](https://github.com/js-next/react-style)
- [dowjones/react-inline-style](https://github.com/dowjones/react-inline-style)
- [martinandert/react-inline](https://github.com/martinandert/react-inline)
- [milesj/aesthetic](https://github.com/milesj/aesthetic) - a React style abstraction layer with theme support
- [airbnb/react-with-styles](https://github.com/airbnb/react-with-styles)# License (MIT)
Copyright (c) 2016 Khan Academy
[webcomponents]: http://w3c.github.io/webcomponents/spec/custom
[gzip-badge]: http://img.badgesize.io/https://unpkg.com/aphrodite/dist/aphrodite.umd.min.js?compression=gzip&label=gzip%20size
[size-badge]: http://img.badgesize.io/https://unpkg.com/aphrodite/dist/aphrodite.umd.min.js?label=size
[unpkg-dist]: https://unpkg.com/aphrodite/dist/