Skip to content

Commit 01da6f4

Browse files
nkzawaimpronunciable
authored andcommitted
Add styletron example (#486)
* add styletron example * example: fix link * example: improve README * Added styletron example reference to readme and merge with master
1 parent de57e92 commit 01da6f4

File tree

8 files changed

+130
-0
lines changed

8 files changed

+130
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@ export default () => (
9393

9494
#### CSS-in-JS
9595

96+
<p><details>
97+
<summary><b>Examples</b></summary>
98+
<ul>
99+
<li><a href="./examples/with-styled-components">Styled components</a></li>
100+
<li><a href="./examples/with-styletron">Styletron</a></li>
101+
</ul>
102+
</details></p>
103+
96104
It's possible to use any existing CSS-in-JS solution. The simplest one is inline styles:
97105

98106
```jsx

examples/with-styletron/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
# Example app with styletron
3+
4+
## How to use
5+
6+
Download the example (or clone the repo)[https://github.com/zeit/next.js.git]:
7+
8+
```bash
9+
curl https://codeload.github.com/zeit/next.js/tar.gz/master | tar -xz --strip=2 next.js-master/examples/with-styletron
10+
cd with-styletron
11+
```
12+
13+
Install it and run:
14+
15+
```bash
16+
npm install
17+
npm run dev
18+
```
19+
20+
Deploy it to the cloud with [now](https://zeit.co/now) ([download](https://zeit.co/download))
21+
22+
```bash
23+
now
24+
```
25+
26+
## The idea behind the example
27+
28+
This example features how yo use a different styling solution than [styled-jsx](https://github.com/zeit/styled-jsx) that also supports universal styles. That means we can serve the required styles for the first render within the HTML and then load the rest in the client. In this case we are using [styletron](https://github.com/rtsao/styletron).
29+
30+
For this purpose we are extending the `<Document />` and injecting the server side rendered styles into the `<head>`.

examples/with-styletron/layout.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { StyletronProvider } from 'styletron-react'
2+
import getStyletron from './styletron'
3+
4+
export default ({ children }) => (
5+
<StyletronProvider styletron={getStyletron()}>
6+
{children}
7+
</StyletronProvider>
8+
)
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
webpack: function (config) {
3+
config.externals = config.externals || {}
4+
config.externals['styletron-server'] = 'styletron-server'
5+
return config
6+
}
7+
}

examples/with-styletron/package.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "with-styletron",
3+
"version": "1.0.0",
4+
"scripts": {
5+
"dev": "next",
6+
"build": "next build",
7+
"start": "next start"
8+
},
9+
"dependencies": {
10+
"next": "^2.0.0-beta",
11+
"styletron-client": "^2.2.0",
12+
"styletron-react": "^2.2.1",
13+
"styletron-server": "^2.2.0"
14+
}
15+
}
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import Document, { Head, Main, NextScript } from 'next/document'
2+
import { flush } from '../styletron'
3+
4+
export default class MyDocument extends Document {
5+
static getInitialProps ({ renderPage }) {
6+
const page = renderPage()
7+
const styletron = flush()
8+
const css = styletron ? styletron.getCss() : null
9+
return { ...page, css }
10+
}
11+
12+
render () {
13+
return (
14+
<html>
15+
<Head>
16+
<title>My page</title>
17+
<style className='_styletron_hydrate_' dangerouslySetInnerHTML={{ __html: this.props.css }} />
18+
</Head>
19+
<body>
20+
<Main />
21+
<NextScript />
22+
</body>
23+
</html>
24+
)
25+
}
26+
}
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { styled } from 'styletron-react'
2+
import Page from '../layout'
3+
4+
const Title = styled('div', {
5+
color: 'red',
6+
fontSize: '50px'
7+
})
8+
9+
export default () => (
10+
<Page>
11+
<Title>My page</Title>
12+
</Page>
13+
)

examples/with-styletron/styletron.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
const isServer = typeof window === 'undefined'
3+
4+
let styletron
5+
6+
export default function getStyletron () {
7+
if (isServer) {
8+
const Styletron = require('styletron-server')
9+
styletron = new Styletron()
10+
} else if (!styletron) {
11+
const Styletron = require('styletron-client')
12+
const styleElements = document.getElementsByClassName('_styletron_hydrate_')
13+
styletron = new Styletron(styleElements)
14+
}
15+
16+
return styletron
17+
}
18+
19+
export function flush () {
20+
const _styletron = styletron
21+
styletron = null
22+
return _styletron
23+
}

0 commit comments

Comments
 (0)