Browse Source

Upgrade to Gatsby v2 (#1104)

* Upgrade to Gatsby v2

* Remove unnecessary polyfills since gatsby already provides them

* Move global styles to gatsby-browser

* Add fb comment and convert to cjs

* Revert to use pageQuery again

* Add back html.js

* Update dependencies

* Move TitleAndMetaTags

* Replace glamor/reset with normalize.css which fixes style order in prod

* Prettier formatting

* Remove unused types

* Remove old layout

* Fix versions link

* Update deps

* Update deps

* Remove hack since it's no longer needed

* Update dependencies

* Fix build error

* Fix prettier config resolution

* Update gatsby

* Remove custom onCreatePage logic

* Update dependencies

* Fix build

* Update dependencies

* prettier formatting

* update dependencies

* add custom babel config for flow

* upgrade dependencies

* update dependencies

* use stable gatsby release
main
Alexander Nanberg 7 years ago
committed by Dan Abramov
parent
commit
71b03486c0
  1. 43
      .babelrc
  2. 0
      examples/.prettierrc
  3. 2
      flow-typed/gatsby.js
  4. 4
      flow-typed/glamor.js
  5. 1
      flow-typed/graphql.js
  6. 11
      flow-typed/polyfills.js
  7. 17
      gatsby-browser.js
  8. 3
      gatsby-config.js
  9. 2
      gatsby-node.js
  10. 9
      gatsby/createPages.js
  11. 23
      gatsby/modifyWebpackConfig.js
  12. 4
      gatsby/onCreateNode.js
  13. 8
      gatsby/onCreatePage.js
  14. 23
      gatsby/onCreateWebpackConfig.js
  15. 59
      package.json
  16. 4
      plugins/gatsby-source-react-error-codes/gatsby-node.js
  17. 4
      plugins/gatsby-transformer-authors-yaml/gatsby-node.js
  18. 4
      plugins/gatsby-transformer-home-example-code/gatsby-node.js
  19. 2
      src/components/ButtonLink/ButtonLink.js
  20. 2
      src/components/ErrorDecoder/ErrorDecoder.js
  21. 13
      src/components/Layout/Layout.js
  22. 9
      src/components/Layout/index.js
  23. 2
      src/components/LayoutFooter/FooterLink.js
  24. 8
      src/components/LayoutHeader/Header.js
  25. 2
      src/components/LayoutHeader/HeaderLink.js
  26. 43
      src/html.js
  27. 35
      src/pages/404.js
  28. 125
      src/pages/acknowledgements.html.js
  29. 145
      src/pages/blog/all.html.js
  30. 137
      src/pages/docs/error-decoder.html.js
  31. 461
      src/pages/index.js
  32. 42
      src/pages/jsx-compiler.html.js
  33. 78
      src/pages/versions.js
  34. 32
      src/templates/blog.js
  35. 44
      src/templates/codepen-example.js
  36. 24
      src/templates/community.js
  37. 2
      src/templates/components/NavigationFooter/NavigationFooter.js
  38. 19
      src/templates/docs.js
  39. 35
      src/templates/tutorial.js
  40. 2
      src/utils/createLink.js
  41. 6985
      yarn.lock

43
.babelrc

@ -1,4 +1,41 @@
{
"presets": ['react', 'es2015', 'stage-1'],
"plugins": ['add-module-exports']
}
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"modules": false,
"useBuiltIns": "usage",
"shippedProposals": true,
"targets": {
"browsers": [">0.25%", "not dead"],
}
}
],
[
"@babel/preset-react",
{
"useBuiltIns": true,
"pragma": "React.createElement",
}
],
"@babel/flow"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-syntax-dynamic-import",
"babel-plugin-macros",
[
"@babel/plugin-transform-runtime",
{
"helpers": true,
"regenerator": true
}
]
]
}

0
.prettierrc.examples → examples/.prettierrc

2
flow-typed/gatsby-link.js → flow-typed/gatsby.js

@ -1,3 +1,3 @@
declare module 'gatsby-link' {
declare module 'gatsby' {
declare module.exports: any;
}

4
flow-typed/glamor.js

@ -15,7 +15,3 @@ declare module 'glamor/react' {
propMerge: Function,
};
}
declare module 'glamor/reset' {
declare module.exports: any;
}

1
flow-typed/graphql.js

@ -1 +0,0 @@
declare function graphql(...params: any): any;

11
flow-typed/polyfills.js

@ -1,11 +0,0 @@
declare module 'array-from' {
declare module.exports: any;
}
declare module 'string.prototype.includes' {
declare module.exports: any;
}
declare module 'string.prototype.repeat' {
declare module.exports: any;
}

17
gatsby-browser.js

@ -0,0 +1,17 @@
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
'use strict';
// Import global styles
require('normalize.css');
require('./src/css/reset.css');
require('./src/prism-styles');
require('./src/css/algolia.css');
// A stub function is needed because gatsby won't load this file otherwise
// (https://github.com/gatsbyjs/gatsby/issues/6759)
exports.onClientEntry = () => {};

3
gatsby-config.js

@ -23,7 +23,6 @@ module.exports = {
'gatsby-transformer-versions-yaml',
'gatsby-plugin-netlify',
'gatsby-plugin-glamor',
'gatsby-plugin-react-next',
'gatsby-plugin-twitter',
{
resolve: 'gatsby-plugin-nprogress',
@ -134,7 +133,7 @@ module.exports = {
{
allMarkdownRemark
(limit: 10,
filter: {id: {regex: "/blog/"}},
filter: {fileAbsolutePath: {regex: "/blog/"}},
sort: {fields: [fields___date],
order: DESC}) {
edges {

2
gatsby-node.js

@ -6,7 +6,7 @@
'use strict';
exports.modifyWebpackConfig = require('./gatsby/modifyWebpackConfig');
exports.onCreateWebpackConfig = require('./gatsby/onCreateWebpackConfig');
exports.createPages = require('./gatsby/createPages');
exports.onCreateNode = require('./gatsby/onCreateNode');
exports.onCreatePage = require('./gatsby/onCreatePage');

9
gatsby/createPages.js

@ -8,8 +8,8 @@
const {resolve} = require('path');
module.exports = async ({graphql, boundActionCreators}) => {
const {createPage, createRedirect} = boundActionCreators;
module.exports = async ({graphql, actions}) => {
const {createPage, createRedirect} = actions;
// Used to detect and prevent duplicate redirects
const redirectToSlugMap = {};
@ -129,7 +129,7 @@ module.exports = async ({graphql, boundActionCreators}) => {
{
allMarkdownRemark(
limit: 1
filter: {id: {regex: "/blog/"}}
filter: {fileAbsolutePath: {regex: "/blog/"}}
sort: {fields: [fields___date], order: DESC}
) {
edges {
@ -143,6 +143,7 @@ module.exports = async ({graphql, boundActionCreators}) => {
}
`,
);
const newestBlogNode = newestBlogEntry.data.allMarkdownRemark.edges[0].node;
// Blog landing page should always show the most recent blog entry.
@ -151,4 +152,4 @@ module.exports = async ({graphql, boundActionCreators}) => {
redirectInBrowser: true,
toPath: newestBlogNode.fields.slug,
});
};
};

23
gatsby/modifyWebpackConfig.js

@ -1,23 +0,0 @@
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
'use strict';
const {resolve} = require('path');
const webpack = require('webpack');
module.exports = ({config, stage}) => {
// See https://github.com/FormidableLabs/react-live/issues/5
config.plugin('ignore', () => new webpack.IgnorePlugin(/^(xor|props)$/));
config.merge({
resolve: {
root: resolve(__dirname, '../src'),
extensions: ['', '.js', '.jsx', '.json'],
},
});
return config;
};

4
gatsby/onCreateNode.js

@ -24,8 +24,8 @@ function buildRedirectString(permalink, redirect_from) {
}
// Add custom fields to MarkdownRemark nodes.
module.exports = exports.onCreateNode = ({node, boundActionCreators, getNode}) => {
const {createNodeField} = boundActionCreators;
module.exports = exports.onCreateNode = ({node, actions, getNode}) => {
const {createNodeField} = actions;
switch (node.internal.type) {
case 'MarkdownRemark':

8
gatsby/onCreatePage.js

@ -6,19 +6,15 @@
'use strict';
module.exports = async ({page, boundActionCreators}) => {
const {createPage} = boundActionCreators;
module.exports = async ({page, actions}) => {
const {createPage} = actions;
return new Promise(resolvePromise => {
// page.matchPath is a special key that's used for matching pages only on the client.
// Explicitly wire up all error code wildcard matches to redirect to the error code page.
if (page.path.includes('docs/error-decoder.html')) {
page.matchPath = 'docs/error-decoder:path?';
page.context.slug = 'docs/error-decoder.html';
createPage(page);
}
resolvePromise();
});
};

23
gatsby/onCreateWebpackConfig.js

@ -0,0 +1,23 @@
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
'use strict';
const {resolve} = require('path');
const webpack = require('webpack');
module.exports = ({stage, actions}) => {
actions.setWebpackConfig({
resolve: {
modules: [
resolve(__dirname, '../src'),
resolve(__dirname, '../node_modules'),
],
},
// See https://github.com/FormidableLabs/react-live/issues/5
plugins: [new webpack.IgnorePlugin(/^(xor|props)$/)],
});
};

59
package.json

@ -7,7 +7,6 @@
"url": "https://github.com/reactjs/reactjs.org"
},
"dependencies": {
"array-from": "^2.1.1",
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-fbjs": "^2.0.0",
@ -19,40 +18,41 @@
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-relay": "^0.0.19",
"flow-bin": "^0.56.0",
"gatsby": "^1.9.273",
"gatsby-link": "^1.6.9",
"gatsby-plugin-catch-links": "^1.0.9",
"gatsby-plugin-feed": "^1.3.9",
"gatsby-plugin-glamor": "^1.6.4",
"gatsby-plugin-google-analytics": "^1.0.4",
"gatsby-plugin-manifest": "^1.0.4",
"gatsby-plugin-netlify": "^1.0.21",
"gatsby-plugin-nprogress": "^1.0.7",
"gatsby-plugin-react-helmet": "^1.0.3",
"gatsby-plugin-react-next": "^1.0.3",
"gatsby-plugin-sharp": "^1.6.48",
"gatsby-plugin-twitter": "^1.0.10",
"gatsby-remark-autolink-headers": "^1.4.4",
"gatsby-remark-code-repls": "^1.0.2",
"gatsby-remark-copy-linked-files": "^1.5.2",
"gatsby-remark-embed-snippet": "^1.0.22",
"gatsby-remark-images": "^1.5.67",
"gatsby-remark-prismjs": "^1.2.24",
"gatsby-remark-responsive-iframe": "^1.4.3",
"gatsby-remark-smartypants": "^1.4.3",
"gatsby-source-filesystem": "^1.4.4",
"gatsby-transformer-remark": "^1.7.44",
"gatsby-transformer-sharp": "^1.6.27",
"gatsby": "^2.0.0",
"gatsby-plugin-catch-links": "^2.0.0",
"gatsby-plugin-feed": "^2.0.0",
"gatsby-plugin-glamor": "^2.0.0",
"gatsby-plugin-google-analytics": "^2.0.0",
"gatsby-plugin-manifest": "^2.0.0",
"gatsby-plugin-netlify": "^2.0.0",
"gatsby-plugin-nprogress": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.0",
"gatsby-plugin-twitter": "^2.0.0",
"gatsby-remark-autolink-headers": "^2.0.0",
"gatsby-remark-code-repls": "^2.0.0",
"gatsby-remark-copy-linked-files": "^2.0.0",
"gatsby-remark-embed-snippet": "^3.0.0",
"gatsby-remark-images": "^2.0.0",
"gatsby-remark-prismjs": "^3.0.0",
"gatsby-remark-responsive-iframe": "^2.0.0",
"gatsby-remark-smartypants": "^2.0.0",
"gatsby-source-filesystem": "^2.0.0",
"gatsby-transformer-remark": "^2.0.0",
"gatsby-transformer-sharp": "^2.0.0",
"glamor": "^2.20.40",
"hex2rgba": "^0.0.1",
"normalize.css": "^8.0.0",
"prettier": "^1.7.4",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-live": "1.8.0-0",
"remarkable": "^1.7.1",
"request-promise": "^4.2.2",
"rimraf": "^2.6.1",
"slugify": "^1.2.1",
"string.prototype.includes": "^1.0.0",
"string.prototype.repeat": "^0.2.0",
"unist-util-visit": "^1.1.3"
},
"engines": {
@ -76,16 +76,17 @@
"dev": "gatsby develop -H 0.0.0.0",
"flow": "flow",
"format:source": "prettier --config .prettierrc --write \"{gatsby-*.js,{flow-typed,plugins,src}/**/*.js}\"",
"format:examples": "prettier --config .prettierrc.examples --write \"examples/**/*.js\"",
"format:examples": "prettier --config examples/.prettierrc --write \"examples/**/*.js\"",
"lint": "eslint .",
"netlify": "yarn --version && rimraf node_modules && yarn install --frozen-lockfile --check-files && yarn build",
"nit:source": "prettier --config .prettierrc --list-different \"{gatsby-*.js,{flow-typed,plugins,src}/**/*.js}\"",
"nit:examples": "prettier --config .prettierrc.examples --list-different \"examples/**/*.js\"",
"nit:examples": "prettier --config examples/.prettierrc --list-different \"examples/**/*.js\"",
"prettier": "yarn format:source && yarn format:examples",
"prettier:diff": "yarn nit:source && yarn nit:examples",
"reset": "rimraf ./.cache"
},
"devDependencies": {
"@babel/preset-flow": "^7.0.0",
"eslint-config-prettier": "^2.6.0",
"lz-string": "^1.4.4",
"npm-run-all": "^4.1.2",

4
plugins/gatsby-source-react-error-codes/gatsby-node.js

@ -3,8 +3,8 @@ const request = require('request-promise');
const errorCodesUrl =
'http://raw.githubusercontent.com/facebook/react/master/scripts/error-codes/codes.json';
exports.sourceNodes = async ({boundActionCreators}) => {
const {createNode} = boundActionCreators;
exports.sourceNodes = async ({actions}) => {
const {createNode} = actions;
try {
const jsonString = await request(errorCodesUrl);

4
plugins/gatsby-transformer-authors-yaml/gatsby-node.js

@ -8,8 +8,8 @@ const safeLoad = require('js-yaml').safeLoad;
// Reads authors.yml data into GraphQL.
// This is auto-linked by gatsby-config.js to blog posts.
exports.sourceNodes = ({graphql, boundActionCreators}) => {
const {createNode} = boundActionCreators;
exports.sourceNodes = ({graphql, actions}) => {
const {createNode} = actions;
const path = resolve(__dirname, '../../content/authors.yml');
const file = readFileSync(path, 'utf8');

4
plugins/gatsby-transformer-home-example-code/gatsby-node.js

@ -3,8 +3,8 @@ const {join, resolve} = require('path');
// Store code snippets in GraphQL for the home page examples.
// Snippets will be matched with markdown templates of the same name.
exports.sourceNodes = ({graphql, boundActionCreators}) => {
const {createNode} = boundActionCreators;
exports.sourceNodes = ({graphql, actions}) => {
const {createNode} = actions;
const path = resolve(__dirname, '../../content/home/examples');
const files = readdirSync(path);

2
src/components/ButtonLink/ButtonLink.js

@ -4,7 +4,7 @@
* @emails react-core
*/
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import React from 'react';
import {colors, media} from 'theme';

2
src/components/ErrorDecoder/ErrorDecoder.js

@ -95,7 +95,7 @@ function ErrorDecoder(props: {|
let msg = '';
const errorCodes = JSON.parse(props.errorCodesString);
const parseResult = parseQueryString(props.location.search);
const parseResult = parseQueryString(props.location.search || '');
if (parseResult != null) {
code = parseResult.code;
msg = replaceArgs(errorCodes[code], parseResult.args);

13
src/layouts/index.js → src/components/Layout/Layout.js

@ -5,11 +5,6 @@
* @flow
*/
// Polyfills for IE
import 'array-from';
import 'string.prototype.includes';
import 'string.prototype.repeat';
import patchDOMForGoogleTranslate from 'utils/patchDOMForGoogleTranslate';
import React, {Component} from 'react';
import Flex from 'components/Flex';
@ -17,12 +12,6 @@ import Footer from 'components/LayoutFooter';
import Header from 'components/LayoutHeader';
import {media} from 'theme';
// Import global styles
import '../prism-styles';
import 'glamor/reset';
import 'css/reset.css';
import 'css/algolia.css';
patchDOMForGoogleTranslate();
type Props = {
@ -67,7 +56,7 @@ class Template extends Component<Props> {
marginTop: 40,
},
}}>
{children()}
{children}
</Flex>
<Footer layoutHasSidebar={layoutHasSidebar} />
</div>

9
src/components/Layout/index.js

@ -0,0 +1,9 @@
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
import Layout from './Layout';
export default Layout;

2
src/components/LayoutFooter/FooterLink.js

@ -5,7 +5,7 @@
* @flow
*/
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import React from 'react';
import {colors} from 'theme';

8
src/components/LayoutHeader/Header.js

@ -7,7 +7,7 @@
import Container from 'components/Container';
import HeaderLink from './HeaderLink';
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import React from 'react';
import {colors, fonts, media} from 'theme';
import {version} from 'site-constants';
@ -146,7 +146,7 @@ const Header = ({location}: {location: Location}) => (
width: 'calc(100% / 6)',
},
}}>
<a
<Link
css={{
padding: '5px 10px',
whiteSpace: 'nowrap',
@ -162,9 +162,9 @@ const Header = ({location}: {location: Location}) => (
borderRadius: 15,
},
}}
href="/versions">
to="/versions">
v{version}
</a>
</Link>
<a
css={{
padding: '5px 10px',

2
src/components/LayoutHeader/HeaderLink.js

@ -5,7 +5,7 @@
* @flow
*/
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import React from 'react';
import {colors, media} from 'theme';

43
src/html.js

@ -1,41 +1,17 @@
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* @emails react-core
*/
import React, {Component} from 'react';
let stylesStr;
if (process.env.NODE_ENV === `production`) {
try {
stylesStr = require(`!raw-loader!../public/styles.css`);
} catch (e) {
console.error(e);
}
}
import React from 'react';
const JS_NPM_URLS = [
'//unpkg.com/docsearch.js@2.4.1/dist/cdn/docsearch.min.js',
];
export default class HTML extends Component {
export default class HTML extends React.Component {
render() {
let css;
if (process.env.NODE_ENV === 'production') {
css = (
<style
id="gatsby-inlined-css"
dangerouslySetInnerHTML={{__html: stylesStr}}
/>
);
}
const js = JS_NPM_URLS.map(url => <script key={url} src={url} />);
return (
<html lang="en">
<html lang="en" {...this.props.htmlAttributes}>
<head>
{JS_NPM_URLS.map(url => (
<link key={url} rel="preload" href={url} as="script" />
))}
<meta charSet="utf-8" />
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
<meta
@ -44,15 +20,16 @@ export default class HTML extends Component {
/>
<link rel="icon" href="/favicon.ico" />
{this.props.headComponents}
{css}
</head>
<body>
<body {...this.props.bodyAttributes}>
<div
id="___gatsby"
dangerouslySetInnerHTML={{__html: this.props.body}}
/>
{this.props.postBodyComponents}
{js}
{JS_NPM_URLS.map(url => (
<script key={url} src={url} />
))}
</body>
</html>
);

35
src/pages/404.js

@ -8,25 +8,32 @@
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
import Layout from 'components/Layout';
import React from 'react';
import {sharedStyles} from 'theme';
const PageNotFound = () => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Page Not Found</Header>
<TitleAndMetaTags title="React - Page Not Found" />
<div css={sharedStyles.markdown}>
<p>We couldn't find what you were looking for.</p>
<p>
Please contact the owner of the site that linked you to the original
URL and let them know their link is broken.
</p>
type Props = {
location: Location,
};
const PageNotFound = ({location}: Props) => (
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Page Not Found</Header>
<TitleAndMetaTags title="React - Page Not Found" />
<div css={sharedStyles.markdown}>
<p>We couldn't find what you were looking for.</p>
<p>
Please contact the owner of the site that linked you to the
original URL and let them know their link is broken.
</p>
</div>
</div>
</div>
</div>
</Container>
</Container>
</Layout>
);
export default PageNotFound;

125
src/pages/acknowledgements.html.js

@ -4,6 +4,7 @@
* @emails react-core
*/
import Layout from 'components/Layout';
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
@ -14,72 +15,74 @@ import {sharedStyles} from 'theme';
import names from '../../content/acknowledgements.yml';
const Acknowlegements = ({data, location}) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Acknowledgements</Header>
<TitleAndMetaTags
ogUrl={`${urlRoot}/acknowledgements.html`}
title="React - Acknowledgements"
/>
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>Acknowledgements</Header>
<TitleAndMetaTags
ogUrl={`${urlRoot}/acknowledgements.html`}
title="React - Acknowledgements"
/>
<div css={sharedStyles.markdown}>
<p>We'd like to thank all of our contributors:</p>
<div css={sharedStyles.markdown}>
<p>We'd like to thank all of our contributors:</p>
<ul
css={{
display: 'flex',
flexWrap: 'wrap',
}}>
{names.map((name, index) => (
<li
css={{
flex: '1 0 200px',
}}
key={index}>
{name}
</li>
))}
</ul>
<ul
css={{
display: 'flex',
flexWrap: 'wrap',
}}>
{names.map((name, index) => (
<li
css={{
flex: '1 0 200px',
}}
key={index}>
{name}
</li>
))}
</ul>
<p>In addition, we're grateful to</p>
<ul>
<li>
<a href="https://github.com/jeffbski">Jeff Barczewski</a> for
allowing us to use the{' '}
<a href="https://www.npmjs.com/package/react">react</a> package
name on npm.
</li>
<li>
<a href="http://christopheraue.net/">Christopher Aue</a> for
letting us use the <a href="http://reactjs.com/">reactjs.com</a>{' '}
domain name and the{' '}
<a href="https://twitter.com/reactjs">@reactjs</a> username on
Twitter.
</li>
<li>
<a href="https://github.com/ProjectMoon">ProjectMoon</a> for
letting us use the{' '}
<a href="https://www.npmjs.com/package/flux">flux</a> package name
on npm.
</li>
<li>
Shane Anderson for allowing us to use the{' '}
<a href="https://github.com/react">react</a> org on GitHub.
</li>
<li>
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
for letting us use the{' '}
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
Oceanic Next
</a>{' '}
color scheme on this website.
</li>
</ul>
<p>In addition, we're grateful to</p>
<ul>
<li>
<a href="https://github.com/jeffbski">Jeff Barczewski</a> for
allowing us to use the{' '}
<a href="https://www.npmjs.com/package/react">react</a> package
name on npm.
</li>
<li>
<a href="http://christopheraue.net/">Christopher Aue</a> for
letting us use the <a href="http://reactjs.com/">reactjs.com</a>{' '}
domain name and the{' '}
<a href="https://twitter.com/reactjs">@reactjs</a> username on
Twitter.
</li>
<li>
<a href="https://github.com/ProjectMoon">ProjectMoon</a> for
letting us use the{' '}
<a href="https://www.npmjs.com/package/flux">flux</a> package
name on npm.
</li>
<li>
Shane Anderson for allowing us to use the{' '}
<a href="https://github.com/react">react</a> org on GitHub.
</li>
<li>
<a href="https://github.com/voronianski">Dmitri Voronianski</a>{' '}
for letting us use the{' '}
<a href="https://labs.voronianski.com/oceanic-next-color-scheme/">
Oceanic Next
</a>{' '}
color scheme on this website.
</li>
</ul>
</div>
</div>
</div>
</div>
</Container>
</Container>
</Layout>
);
export default Acknowlegements;

145
src/pages/blog/all.html.js

@ -5,7 +5,8 @@
* @flow
*/
import Link from 'gatsby-link';
import {graphql, Link} from 'gatsby';
import Layout from 'components/Layout';
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
@ -19,88 +20,90 @@ import type {allMarkdownRemarkData} from 'types';
type Props = {
data: allMarkdownRemarkData,
location: Location,
};
const AllBlogPosts = ({data}: Props) => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>All Posts</Header>
<TitleAndMetaTags
ogUrl={`${urlRoot}/blog/all.html`}
title="React - All Posts"
/>
<ul
css={{
display: 'flex',
flexWrap: 'wrap',
marginLeft: -40,
}}>
{data.allMarkdownRemark.edges.map(({node}) => (
<li
css={{
paddingLeft: 40,
paddingTop: 40,
borderTop: '1px dotted #ececec',
paddingBottom: 40,
width: '100%',
const AllBlogPosts = ({data, location}: Props) => (
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>All Posts</Header>
<TitleAndMetaTags
ogUrl={`${urlRoot}/blog/all.html`}
title="React - All Posts"
/>
<ul
css={{
display: 'flex',
flexWrap: 'wrap',
marginLeft: -40,
}}>
{data.allMarkdownRemark.edges.map(({node}) => (
<li
css={{
paddingLeft: 40,
paddingTop: 40,
borderTop: '1px dotted #ececec',
paddingBottom: 40,
width: '100%',
[media.size('medium')]: {
width: '50%',
},
[media.size('medium')]: {
width: '50%',
},
[media.greaterThan('large')]: {
width: '33.33%',
},
}}
key={node.fields.slug}>
<h2
css={{
fontSize: 24,
color: colors.dark,
lineHeight: 1.3,
fontWeight: 700,
}}>
<Link
css={{
borderBottom: '1px solid #ececec',
':hover': {
borderBottomColor: colors.black,
},
}}
key={node.fields.slug}
to={node.fields.slug}>
{node.frontmatter.title}
</Link>
</h2>
<MetaTitle>{node.fields.date}</MetaTitle>
{node.frontmatter.author ? (
<div
[media.greaterThan('large')]: {
width: '33.33%',
},
}}
key={node.fields.slug}>
<h2
css={{
color: colors.subtle,
marginTop: -5,
fontSize: 24,
color: colors.dark,
lineHeight: 1.3,
fontWeight: 700,
}}>
by{' '}
{toCommaSeparatedList(node.frontmatter.author, author => (
<span key={author.frontmatter.name}>
{author.frontmatter.name}
</span>
))}
</div>
) : null}
</li>
))}
</ul>
<Link
css={{
borderBottom: '1px solid #ececec',
':hover': {
borderBottomColor: colors.black,
},
}}
key={node.fields.slug}
to={node.fields.slug}>
{node.frontmatter.title}
</Link>
</h2>
<MetaTitle>{node.fields.date}</MetaTitle>
{node.frontmatter.author ? (
<div
css={{
color: colors.subtle,
marginTop: -5,
}}>
by{' '}
{toCommaSeparatedList(node.frontmatter.author, author => (
<span key={author.frontmatter.name}>
{author.frontmatter.name}
</span>
))}
</div>
) : null}
</li>
))}
</ul>
</div>
</div>
</div>
</Container>
</Container>
</Layout>
);
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query AllBlogPostsPageQuery {
allMarkdownRemark(
filter: {id: {regex: "/blog/"}}
filter: {fileAbsolutePath: {regex: "/blog/"}}
sort: {fields: [fields___date], order: DESC}
) {
edges {

137
src/pages/docs/error-decoder.html.js

@ -11,6 +11,8 @@ import Flex from 'components/Flex';
import hex2rgba from 'hex2rgba';
import MarkdownHeader from 'components/MarkdownHeader';
import React from 'react';
import {graphql} from 'gatsby';
import Layout from 'components/Layout';
import StickyResponsiveSidebar from 'components/StickyResponsiveSidebar';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
import {colors, sharedStyles} from 'theme';
@ -24,81 +26,82 @@ type Props = {
};
const ErrorPage = ({data, location}: Props) => (
<Flex
direction="column"
grow="1"
shrink="0"
halign="stretch"
css={{
width: '100%',
flex: '1 0 auto',
position: 'relative',
zIndex: 0,
}}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<Flex
type="article"
direction="column"
grow="1"
halign="stretch"
css={{
minHeight: 'calc(100vh - 40px)',
}}>
<MarkdownHeader
path={data.markdownRemark.fields.path}
title={data.markdownRemark.frontmatter.title}
/>
<TitleAndMetaTags
title={`React - ${data.markdownRemark.frontmatter.title}`}
/>
<div css={sharedStyles.articleLayout.content}>
<div
css={sharedStyles.markdown}
dangerouslySetInnerHTML={{__html: data.markdownRemark.html}}
<Layout location={location}>
<Flex
direction="column"
grow="1"
shrink="0"
halign="stretch"
css={{
width: '100%',
flex: '1 0 auto',
position: 'relative',
zIndex: 0,
}}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<Flex
type="article"
direction="column"
grow="1"
halign="stretch"
css={{
minHeight: 'calc(100vh - 40px)',
}}>
<MarkdownHeader
path={data.markdownRemark.fields.path}
title={data.markdownRemark.frontmatter.title}
/>
<TitleAndMetaTags
title={`React - ${data.markdownRemark.frontmatter.title}`}
/>
<div
css={[
sharedStyles.markdown,
{
marginTop: 30,
'& code': {
display: 'block',
<div css={sharedStyles.articleLayout.content}>
<div
css={sharedStyles.markdown}
dangerouslySetInnerHTML={{__html: data.markdownRemark.html}}
/>
<div
css={[
sharedStyles.markdown,
{
marginTop: 30,
padding: '1rem',
borderRadius: '0.5rem',
backgroundColor: hex2rgba(colors.error, 0.1),
color: colors.error,
'& code': {
display: 'block',
marginTop: 30,
padding: '1rem',
borderRadius: '0.5rem',
backgroundColor: hex2rgba(colors.error, 0.1),
color: colors.error,
},
},
},
]}>
<ErrorDecoder
errorCodesString={data.errorCodesJson.internal.contentDigest}
location={location}
/>
]}>
<ErrorDecoder
errorCodesString={data.errorCodesJson.internal.contentDigest}
location={location}
/>
</div>
</div>
</div>
</Flex>
</Flex>
<div css={sharedStyles.articleLayout.sidebar}>
<StickyResponsiveSidebar
createLink={createLinkDocs}
defaultActiveSection={findSectionForPath(
location.pathname,
sectionListDocs,
)}
location={location}
sectionList={sectionListDocs}
title={data.markdownRemark.frontmatter.title}
/>
<div css={sharedStyles.articleLayout.sidebar}>
<StickyResponsiveSidebar
createLink={createLinkDocs}
defaultActiveSection={findSectionForPath(
location.pathname,
sectionListDocs,
)}
location={location}
sectionList={sectionListDocs}
title={data.markdownRemark.frontmatter.title}
/>
</div>
</div>
</div>
</Container>
</Flex>
</Container>
</Flex>
</Layout>
);
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query ErrorPageMarkdown($slug: String!) {
markdownRemark(fields: {slug: {eq: $slug}}) {

461
src/pages/index.js

@ -10,7 +10,9 @@ import Flex from 'components/Flex';
import mountCodeExample from 'utils/mountCodeExample';
import PropTypes from 'prop-types';
import React, {Component} from 'react';
import {graphql} from 'gatsby';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
import Layout from 'components/Layout';
import {colors, media, sharedStyles} from 'theme';
import createOgUrl from 'utils/createOgUrl';
import loadScript from 'utils/loadScript';
@ -70,260 +72,267 @@ class Home extends Component {
render() {
const {examples, marketing} = this.state;
const {location} = this.props;
return (
<div css={{width: '100%'}}>
<Layout location={location}>
<TitleAndMetaTags
title="React &ndash; A JavaScript library for building user interfaces"
ogUrl={createOgUrl('index.html')}
/>
<header
css={{
backgroundColor: colors.dark,
color: colors.white,
}}>
<div
<div css={{width: '100%'}}>
<header
css={{
paddingTop: 45,
paddingBottom: 20,
[media.greaterThan('small')]: {
paddingTop: 60,
paddingBottom: 70,
},
[media.greaterThan('xlarge')]: {
paddingTop: 95,
paddingBottom: 85,
maxWidth: 1500, // Positioning of background logo
marginLeft: 'auto',
marginRight: 'auto',
position: 'relative',
'::before': {
content: ' ',
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0,
backgroundImage: `url(${logoWhiteSvg})`,
backgroundRepeat: 'no-repeat',
backgroundPosition: '100% 100px',
backgroundSize: '50% auto',
opacity: 0.05,
},
},
backgroundColor: colors.dark,
color: colors.white,
}}>
<div
css={{
// Content should be above absolutely-positioned hero image
position: 'relative',
}}>
<Container>
<h1
css={{
color: colors.brand,
textAlign: 'center',
margin: 0,
fontSize: 45,
letterSpacing: '0.01em',
[media.size('xsmall')]: {
fontSize: 30,
},
[media.greaterThan('xlarge')]: {
fontSize: 60,
},
}}>
React
</h1>
<p
css={{
paddingTop: 15,
textAlign: 'center',
fontSize: 24,
letterSpacing: '0.01em',
fontWeight: 200,
[media.size('xsmall')]: {
fontSize: 16,
maxWidth: '12em',
marginLeft: 'auto',
marginRight: 'auto',
},
paddingTop: 45,
paddingBottom: 20,
[media.greaterThan('xlarge')]: {
paddingTop: 20,
fontSize: 30,
},
}}>
A JavaScript library for building user interfaces
</p>
<Flex
valign="center"
css={{
paddingTop: 40,
[media.greaterThan('small')]: {
paddingTop: 60,
paddingBottom: 70,
},
[media.greaterThan('xlarge')]: {
paddingTop: 65,
},
}}>
<CtaItem>
<ButtonLink to="/docs/getting-started.html" type="primary">
Get Started
</ButtonLink>
</CtaItem>
<CtaItem>
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
Take the Tutorial
</ButtonLink>
</CtaItem>
</Flex>
</Container>
</div>
</div>
</header>
<Container>
<div css={sharedStyles.markdown}>
<section
css={[
sectionStyles,
{
[media.lessThan('medium')]: {
marginTop: 0,
marginBottom: 0,
overflowX: 'auto',
paddingTop: 30,
WebkitOverflowScrolling: 'touch',
position: 'relative',
maskImage:
'linear-gradient(to right, transparent, white 10px, white 90%, transparent)',
[media.greaterThan('xlarge')]: {
paddingTop: 95,
paddingBottom: 85,
maxWidth: 1500, // Positioning of background logo
marginLeft: 'auto',
marginRight: 'auto',
position: 'relative',
'::before': {
content: ' ',
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0,
backgroundImage: `url(${logoWhiteSvg})`,
backgroundRepeat: 'no-repeat',
backgroundPosition: '100% 100px',
backgroundSize: '50% auto',
opacity: 0.05,
},
},
]}>
}}>
<div
css={{
display: 'flex',
flexDirection: 'row',
[media.lessThan('medium')]: {
display: 'block',
whiteSpace: 'nowrap',
},
// Content should be above absolutely-positioned hero image
position: 'relative',
}}>
{marketing.map((column, index) => (
<div
key={index}
<Container>
<h1
css={{
display: 'flex',
flexDirection: 'column',
flex: '0 1 33%',
marginLeft: 40,
'&:first-of-type': {
marginLeft: 0,
[media.lessThan('medium')]: {
marginLeft: 10,
},
color: colors.brand,
textAlign: 'center',
margin: 0,
fontSize: 45,
letterSpacing: '0.01em',
[media.size('xsmall')]: {
fontSize: 30,
},
[media.lessThan('medium')]: {
display: 'inline-block',
verticalAlign: 'top',
marginLeft: 0,
whiteSpace: 'normal',
width: '75%',
marginRight: 20,
paddingBottom: 40,
'&:first-of-type': {
marginTop: 0,
},
[media.greaterThan('xlarge')]: {
fontSize: 60,
},
}}>
<h3
css={[
headingStyles,
{
'&&': {
// Make specificity higher than the site-wide h3 styles.
color: colors.subtle,
paddingTop: 0,
fontWeight: 300,
fontSize: 20,
[media.greaterThan('xlarge')]: {
fontSize: 24,
fontWeight: 200,
},
},
},
]}>
{column.title}
</h3>
<div dangerouslySetInnerHTML={{__html: column.content}} />
</div>
))}
</div>
</section>
<hr
css={{
height: 1,
marginBottom: -1,
border: 'none',
borderBottom: `1 solid ${colors.divider}`,
}}
/>
<section css={sectionStyles}>
<div id="examples">
{examples.map((example, index) => (
<div
key={index}
React
</h1>
<p
css={{
marginTop: 40,
paddingTop: 15,
textAlign: 'center',
fontSize: 24,
letterSpacing: '0.01em',
fontWeight: 200,
[media.size('xsmall')]: {
fontSize: 16,
maxWidth: '12em',
marginLeft: 'auto',
marginRight: 'auto',
},
'&:first-child': {
marginTop: 0,
[media.greaterThan('xlarge')]: {
paddingTop: 20,
fontSize: 30,
},
}}>
A JavaScript library for building user interfaces
</p>
<Flex
valign="center"
css={{
paddingTop: 40,
[media.greaterThan('xlarge')]: {
marginTop: 80,
paddingTop: 65,
},
}}>
<h3 css={headingStyles}>{example.title}</h3>
<div dangerouslySetInnerHTML={{__html: example.content}} />
<div id={example.id} />
</div>
))}
<CtaItem>
<ButtonLink
to="/docs/getting-started.html"
type="primary">
Get Started
</ButtonLink>
</CtaItem>
<CtaItem>
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
Take the Tutorial
</ButtonLink>
</CtaItem>
</Flex>
</Container>
</div>
</section>
</div>
</Container>
<section
css={{
background: colors.dark,
color: colors.white,
paddingTop: 45,
paddingBottom: 45,
}}>
</div>
</header>
<Container>
<Flex valign="center">
<CtaItem>
<ButtonLink to="/docs/getting-started.html" type="primary">
Get Started
</ButtonLink>
</CtaItem>
<CtaItem>
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
Take the Tutorial
</ButtonLink>
</CtaItem>
</Flex>
<div css={sharedStyles.markdown}>
<section
css={[
sectionStyles,
{
[media.lessThan('medium')]: {
marginTop: 0,
marginBottom: 0,
overflowX: 'auto',
paddingTop: 30,
WebkitOverflowScrolling: 'touch',
position: 'relative',
maskImage:
'linear-gradient(to right, transparent, white 10px, white 90%, transparent)',
},
},
]}>
<div
css={{
display: 'flex',
flexDirection: 'row',
[media.lessThan('medium')]: {
display: 'block',
whiteSpace: 'nowrap',
},
}}>
{marketing.map((column, index) => (
<div
key={index}
css={{
display: 'flex',
flexDirection: 'column',
flex: '0 1 33%',
marginLeft: 40,
'&:first-of-type': {
marginLeft: 0,
[media.lessThan('medium')]: {
marginLeft: 10,
},
},
[media.lessThan('medium')]: {
display: 'inline-block',
verticalAlign: 'top',
marginLeft: 0,
whiteSpace: 'normal',
width: '75%',
marginRight: 20,
paddingBottom: 40,
'&:first-of-type': {
marginTop: 0,
},
},
}}>
<h3
css={[
headingStyles,
{
'&&': {
// Make specificity higher than the site-wide h3 styles.
color: colors.subtle,
paddingTop: 0,
fontWeight: 300,
fontSize: 20,
[media.greaterThan('xlarge')]: {
fontSize: 24,
fontWeight: 200,
},
},
},
]}>
{column.title}
</h3>
<div dangerouslySetInnerHTML={{__html: column.content}} />
</div>
))}
</div>
</section>
<hr
css={{
height: 1,
marginBottom: -1,
border: 'none',
borderBottom: `1 solid ${colors.divider}`,
}}
/>
<section css={sectionStyles}>
<div id="examples">
{examples.map((example, index) => (
<div
key={index}
css={{
marginTop: 40,
'&:first-child': {
marginTop: 0,
},
[media.greaterThan('xlarge')]: {
marginTop: 80,
},
}}>
<h3 css={headingStyles}>{example.title}</h3>
<div
dangerouslySetInnerHTML={{__html: example.content}}
/>
<div id={example.id} />
</div>
))}
</div>
</section>
</div>
</Container>
</section>
</div>
<section
css={{
background: colors.dark,
color: colors.white,
paddingTop: 45,
paddingBottom: 45,
}}>
<Container>
<Flex valign="center">
<CtaItem>
<ButtonLink to="/docs/getting-started.html" type="primary">
Get Started
</ButtonLink>
</CtaItem>
<CtaItem>
<ButtonLink to="/tutorial/tutorial.html" type="secondary">
Take the Tutorial
</ButtonLink>
</CtaItem>
</Flex>
</Container>
</section>
</div>
</Layout>
);
}
}
@ -334,7 +343,6 @@ Home.propTypes = {
examples: PropTypes.object.isRequired,
marketing: PropTypes.object.isRequired,
}).isRequired,
location: PropTypes.object.isRequired,
};
function renderExamplePlaceholder(containerId) {
@ -372,7 +380,6 @@ const CtaItem = ({children, primary = false}) => (
</div>
);
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query IndexMarkdown {
code: allExampleCode {
@ -386,7 +393,7 @@ export const pageQuery = graphql`
}
}
examples: allMarkdownRemark(
filter: {id: {regex: "//home/examples//"}}
filter: {fileAbsolutePath: {regex: "//home/examples//"}}
sort: {fields: [frontmatter___order], order: ASC}
) {
edges {
@ -402,7 +409,7 @@ export const pageQuery = graphql`
}
}
marketing: allMarkdownRemark(
filter: {id: {regex: "//home/marketing//"}}
filter: {fileAbsolutePath: {regex: "//home/marketing//"}}
sort: {fields: [frontmatter___order], order: ASC}
) {
edges {

42
src/pages/jsx-compiler.html.js

@ -5,30 +5,38 @@
* @flow
*/
import Layout from 'components/Layout';
import Container from 'components/Container';
import Header from 'components/Header';
import React from 'react';
import {sharedStyles} from 'theme';
const JsxCompiler = () => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>JSX Compiler Service</Header>
<div css={sharedStyles.markdown}>
<p>
<strong>
This tool has been removed as JSXTransformer has been deprecated.
</strong>
</p>
<p>
We recommend using another tool such as{' '}
<a href="https://babeljs.io/repl/">the Babel REPL</a>.
</p>
type Props = {
location: Location,
};
const JsxCompiler = ({location}: Props) => (
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>JSX Compiler Service</Header>
<div css={sharedStyles.markdown}>
<p>
<strong>
This tool has been removed as JSXTransformer has been
deprecated.
</strong>
</p>
<p>
We recommend using another tool such as{' '}
<a href="https://babeljs.io/repl/">the Babel REPL</a>.
</p>
</div>
</div>
</div>
</div>
</Container>
</Container>
</Layout>
);
export default JsxCompiler;

78
src/pages/versions.js

@ -5,6 +5,7 @@
* @flow
*/
import Layout from 'components/Layout';
import Container from 'components/Container';
import Header from 'components/Header';
import TitleAndMetaTags from 'components/TitleAndMetaTags';
@ -14,46 +15,53 @@ import {sharedStyles} from 'theme';
// $FlowFixMe This is a valid path
import versions from '../../content/versions.yml';
const Versions = () => (
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>React Versions</Header>
<TitleAndMetaTags title="React - Versions" />
<div css={sharedStyles.markdown}>
<p>
A complete release history for React is available{' '}
<a
href="https://github.com/facebook/react/releases"
target="_blank"
rel="noopener">
on GitHub
</a>.<br />
Documentation for recent releases can also be found below:
</p>
{versions.map(version => (
<div key={version.title}>
<h3>{version.title}</h3>
<ul>
<li>
<a href={version.changelog} target="_blank" rel="noopener">
Changelog
</a>
</li>
{version.path && (
type Props = {
location: Location,
};
const Versions = ({location}: Props) => (
<Layout location={location}>
<Container>
<div css={sharedStyles.articleLayout.container}>
<div css={sharedStyles.articleLayout.content}>
<Header>React Versions</Header>
<TitleAndMetaTags title="React - Versions" />
<div css={sharedStyles.markdown}>
<p>
A complete release history for React is available{' '}
<a
href="https://github.com/facebook/react/releases"
target="_blank"
rel="noopener">
on GitHub
</a>
.<br />
Documentation for recent releases can also be found below:
</p>
{versions.map(version => (
<div key={version.title}>
<h3>{version.title}</h3>
<ul>
<li>
<a href={version.path} rel="nofollow">
Documentation
<a href={version.changelog} target="_blank" rel="noopener">
Changelog
</a>
</li>
)}
</ul>
</div>
))}
{version.path && (
<li>
<a href={version.path} rel="nofollow">
Documentation
</a>
</li>
)}
</ul>
</div>
))}
</div>
</div>
</div>
</div>
</Container>
</Container>
</Layout>
);
export default Versions;

32
src/templates/blog.js

@ -4,8 +4,9 @@
* @emails react-core
*/
import PropTypes from 'prop-types';
import React from 'react';
import {graphql} from 'gatsby';
import Layout from 'components/Layout';
import MarkdownPage from 'components/MarkdownPage';
import {createLinkBlog} from 'utils/createLink';
@ -25,23 +26,20 @@ const toSectionList = allMarkdownRemark => [
];
const Blog = ({data, location}) => (
<MarkdownPage
authors={data.markdownRemark.frontmatter.author}
createLink={createLinkBlog}
date={data.markdownRemark.fields.date}
location={location}
ogDescription={data.markdownRemark.excerpt}
markdownRemark={data.markdownRemark}
sectionList={toSectionList(data.allMarkdownRemark)}
titlePostfix=" &ndash; React Blog"
/>
<Layout location={location}>
<MarkdownPage
authors={data.markdownRemark.frontmatter.author}
createLink={createLinkBlog}
date={data.markdownRemark.fields.date}
location={location}
ogDescription={data.markdownRemark.excerpt}
markdownRemark={data.markdownRemark}
sectionList={toSectionList(data.allMarkdownRemark)}
titlePostfix=" &ndash; React Blog"
/>
</Layout>
);
Blog.propTypes = {
data: PropTypes.object.isRequired,
};
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query TemplateBlogMarkdown($slug: String!) {
markdownRemark(fields: {slug: {eq: $slug}}) {
@ -68,7 +66,7 @@ export const pageQuery = graphql`
}
allMarkdownRemark(
limit: 10
filter: {id: {regex: "/blog/"}}
filter: {fileAbsolutePath: {regex: "/blog/"}}
sort: {fields: [fields___date], order: DESC}
) {
edges {

44
src/templates/codepen-example.js

@ -1,5 +1,6 @@
import React, {Component} from 'react';
import Container from 'components/Container';
import Layout from 'components/Layout';
import {colors} from 'theme';
// Copied over styles from ButtonLink for the submit btn
@ -27,28 +28,31 @@ class CodepenExample extends Component {
}
render() {
const {action, payload} = this.props.pathContext;
const {location, pageContext} = this.props;
const {action, payload} = pageContext;
return (
<Container>
<h1>Redirecting to Codepen...</h1>
<form
style={{paddingBottom: '50px'}}
ref={form => {
this.codepenForm = form;
}}
action={action}
method="POST">
<input type="hidden" name="data" value={payload} />
<p>
Not automatically redirecting?
<br />
<br />
<input style={primaryStyle} type="submit" value="Click here" />
</p>
</form>
</Container>
<Layout location={location}>
<Container>
<h1>Redirecting to Codepen...</h1>
<form
style={{paddingBottom: '50px'}}
ref={form => {
this.codepenForm = form;
}}
action={action}
method="POST">
<input type="hidden" name="data" value={payload} />
<p>
Not automatically redirecting?
<br />
<br />
<input style={primaryStyle} type="submit" value="Click here" />
</p>
</form>
</Container>
</Layout>
);
}
}

24
src/templates/community.js

@ -5,26 +5,24 @@
*/
import MarkdownPage from 'components/MarkdownPage';
import PropTypes from 'prop-types';
import React from 'react';
import {graphql} from 'gatsby';
import Layout from 'components/Layout';
import {createLinkCommunity} from 'utils/createLink';
import {sectionListCommunity} from 'utils/sectionList';
const Community = ({data, location}) => (
<MarkdownPage
createLink={createLinkCommunity}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListCommunity}
titlePostfix=" &ndash; React"
/>
<Layout location={location}>
<MarkdownPage
createLink={createLinkCommunity}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListCommunity}
titlePostfix=" &ndash; React"
/>
</Layout>
);
Community.propTypes = {
data: PropTypes.object.isRequired,
};
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query TemplateCommunityMarkdown($slug: String!) {
markdownRemark(fields: {slug: {eq: $slug}}) {

2
src/templates/components/NavigationFooter/NavigationFooter.js

@ -6,7 +6,7 @@
import Container from 'components/Container';
import Flex from 'components/Flex';
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import PropTypes from 'prop-types';
import React from 'react';
import {colors, fonts, media} from 'theme';

19
src/templates/docs.js

@ -7,24 +7,27 @@
import MarkdownPage from 'components/MarkdownPage';
import PropTypes from 'prop-types';
import React from 'react';
import {graphql} from 'gatsby';
import Layout from 'components/Layout';
import {createLinkDocs} from 'utils/createLink';
import {sectionListDocs} from 'utils/sectionList';
const Docs = ({data, location}) => (
<MarkdownPage
createLink={createLinkDocs}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListDocs}
titlePostfix=" &ndash; React"
/>
<Layout location={location}>
<MarkdownPage
createLink={createLinkDocs}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListDocs}
titlePostfix=" &ndash; React"
/>
</Layout>
);
Docs.propTypes = {
data: PropTypes.object.isRequired,
};
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query TemplateDocsMarkdown($slug: String!) {
markdownRemark(fields: {slug: {eq: $slug}}) {

35
src/templates/tutorial.js

@ -5,38 +5,27 @@
*/
import MarkdownPage from 'components/MarkdownPage';
import PropTypes from 'prop-types';
import React from 'react';
import {graphql} from 'gatsby';
import Layout from 'components/Layout';
import {createLinkTutorial} from 'utils/createLink';
import {sectionListTutorial} from 'utils/sectionList';
const Tutorial = ({data, location}) => {
// HACK The injected location prop doesn't update when hash changes
// This might be a gatsby issue, or a react-router/history issue,
// Or we might be using either library incorrectly.
// For now this patch keeps the hash in sync by JIT copying it from window.
// The undefined check prevents us from breaking on production build.
if (typeof window !== 'undefined' && typeof window.location !== 'undefined') {
location.hash = window.location.hash;
}
return (
<MarkdownPage
enableScrollSync
createLink={createLinkTutorial}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListTutorial}
titlePostfix=" &ndash; React"
/>
<Layout location={location}>
<MarkdownPage
enableScrollSync
createLink={createLinkTutorial}
location={location}
markdownRemark={data.markdownRemark}
sectionList={sectionListTutorial}
titlePostfix=" &ndash; React"
/>
</Layout>
);
};
Tutorial.propTypes = {
data: PropTypes.object.isRequired,
};
// eslint-disable-next-line no-undef
export const pageQuery = graphql`
query TemplateTutorialMarkdown($slug: String!) {
markdownRemark(fields: {slug: {eq: $slug}}) {

2
src/utils/createLink.js

@ -5,7 +5,7 @@
* @flow
*/
import Link from 'gatsby-link';
import {Link} from 'gatsby';
import React from 'react';
import ExternalLinkSvg from 'templates/components/ExternalLinkSvg';
import slugify from 'utils/slugify';

6985
yarn.lock

File diff suppressed because it is too large
Loading…
Cancel
Save