feat(v2): add ExecutionEnvironment API (#2296)

* feat(v2): add ExecutionEnvironment API

* remove redundant code
This commit is contained in:
Yangshun Tay 2020-02-19 09:22:14 +08:00 committed by GitHub
parent e6562859fd
commit d974aa9c2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 77 additions and 21 deletions

View file

@ -5,8 +5,10 @@
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
*/ */
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
export default (function() { export default (function() {
if (typeof window === 'undefined') { if (!ExecutionEnvironment.canUseDOM) {
return null; return null;
} }

View file

@ -5,10 +5,11 @@
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
*/ */
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
import siteConfig from '@generated/docusaurus.config'; import siteConfig from '@generated/docusaurus.config';
export default (function() { export default (function() {
if (typeof window === 'undefined') { if (!ExecutionEnvironment.canUseDOM) {
return null; return null;
} }

View file

@ -10,12 +10,13 @@ import {hydrate, render} from 'react-dom';
import {BrowserRouter} from 'react-router-dom'; import {BrowserRouter} from 'react-router-dom';
import routes from '@generated/routes'; import routes from '@generated/routes';
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
import App from './App'; import App from './App';
import preload from './preload'; import preload from './preload';
import docusaurus from './docusaurus'; import docusaurus from './docusaurus';
// Client-side render (e.g: running in browser) to become single-page application (SPA). // Client-side render (e.g: running in browser) to become single-page application (SPA).
if (typeof window !== 'undefined' && typeof document !== 'undefined') { if (ExecutionEnvironment.canUseDOM) {
window.docusaurus = docusaurus; window.docusaurus = docusaurus;
// For production, attempt to hydrate existing markup for performant first-load experience. // For production, attempt to hydrate existing markup for performant first-load experience.
// For development, there is no existing markup so we had to render it. // For development, there is no existing markup so we had to render it.

View file

@ -0,0 +1,25 @@
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
const canUseDOM = !!(
typeof window !== 'undefined' &&
window.document &&
window.document.createElement
);
const ExecutionEnvironment = {
canUseDOM,
canUseEventListeners:
canUseDOM && !!(window.addEventListener || window.attachEvent),
canUseIntersectionObserver: canUseDOM && 'IntersectionObserver' in window,
canUseViewport: canUseDOM && !!window.screen,
};
module.exports = ExecutionEnvironment;

View file

@ -8,6 +8,7 @@
import React, {useEffect, useRef} from 'react'; import React, {useEffect, useRef} from 'react';
import {NavLink} from 'react-router-dom'; import {NavLink} from 'react-router-dom';
import isInternalUrl from '@docusaurus/isInternalUrl'; import isInternalUrl from '@docusaurus/isInternalUrl';
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
function Link(props) { function Link(props) {
const {to, href} = props; const {to, href} = props;
@ -15,8 +16,7 @@ function Link(props) {
const isInternal = isInternalUrl(targetLink); const isInternal = isInternalUrl(targetLink);
const preloaded = useRef(false); const preloaded = useRef(false);
const IOSupported = const IOSupported = ExecutionEnvironment.canUseIntersectionObserver;
typeof window !== 'undefined' && 'IntersectionObserver' in window;
let io; let io;
const handleIntersection = (el, cb) => { const handleIntersection = (el, cb) => {

View file

@ -4,9 +4,11 @@ title: Docusaurus Client API
sidebar_label: Client API sidebar_label: Client API
--- ---
Docusaurus provides some API on client that can be helpful when building your site. Docusaurus provides some APIs on the clients that can be helpful to you when building your site.
## `Head` ## Components
### `<Head/>`
This reusable React component will manage all of your changes to the document head. It takes plain HTML tags and outputs plain HTML tags and is beginner-friendly. It is a wrapper around [React Helmet](https://github.com/nfl/react-helmet). This reusable React component will manage all of your changes to the document head. It takes plain HTML tags and outputs plain HTML tags and is beginner-friendly. It is a wrapper around [React Helmet](https://github.com/nfl/react-helmet).
@ -55,7 +57,7 @@ Outputs
</head> </head>
``` ```
## `Link` ### `<Link/>`
This component enables linking to internal pages as well as a powerful performance feature called preloading. Preloading is used to prefetch resources so that the resources are fetched by the time the user navigates with this component. We use an `IntersectionObserver` to fetch a low-priority request when the `<Link>` is in the viewport and then use an `onMouseOver` event to trigger a high-priority request when it is likely that a user will navigate to the requested resource. This component enables linking to internal pages as well as a powerful performance feature called preloading. Preloading is used to prefetch resources so that the resources are fetched by the time the user navigates with this component. We use an `IntersectionObserver` to fetch a low-priority request when the `<Link>` is in the viewport and then use an `onMouseOver` event to trigger a high-priority request when it is likely that a user will navigate to the requested resource.
@ -78,7 +80,7 @@ const Page = () => (
); );
``` ```
### `to`: string #### `to`: string
The target location to navigate to. Example: `/docs/introduction`. The target location to navigate to. Example: `/docs/introduction`.
@ -86,7 +88,7 @@ The target location to navigate to. Example: `/docs/introduction`.
<Link to="/courses" /> <Link to="/courses" />
``` ```
### `activeClassName`: string #### `activeClassName`: string
The class to give the `<Link>` when it is active. The default given class is `active`. This will be joined with the `className` prop. The class to give the `<Link>` when it is active. The default given class is `active`. This will be joined with the `className` prop.
@ -96,9 +98,26 @@ The class to give the `<Link>` when it is active. The default given class is `ac
</Link> </Link>
``` ```
## `useDocusaurusContext` ### `<Redirect/>`
React Hooks to access Docusaurus Context. Context contains `siteConfig` object from [docusaurus.config.js](docusaurus.config.js.md). Rendering a `<Redirect>` will navigate to a new location. The new location will override the current location in the history stack, like server-side redirects (HTTP 3xx) do. You can refer to [React Router's Redirect documentation](https://reacttraining.com/react-router/web/api/Redirect) for more info on available props.
Example usage:
```jsx {2,5}
import React from 'react';
import {Redirect} from '@docusaurus/router';
function Home() {
return <Redirect to="/docs/test" />;
}
```
## Hooks
### `useDocusaurusContext`
React hook to access Docusaurus Context. Context contains `siteConfig` object from [docusaurus.config.js](docusaurus.config.js.md).
```ts ```ts
interface DocusaurusContext { interface DocusaurusContext {
@ -121,9 +140,9 @@ const Test = () => {
}; };
``` ```
## `useBaseUrl` ### `useBaseUrl`
React Hook to automatically append `baseUrl` to a string automatically. This is particularly useful if you don't want to hardcode your baseUrl. React hook to automatically append `baseUrl` to a string automatically. This is particularly useful if you don't want to hardcode your config's `baseUrl`. We highly recommend you to use this.
Example usage: Example usage:
@ -145,17 +164,25 @@ function Help() {
} }
``` ```
## `Redirect` ## Modules
Rendering a `<Redirect>` will navigate to a new location. The new location will override the current location in the history stack, like server-side redirects (HTTP 3xx) do. You can refer to [React Router's Redirect documentation](https://reacttraining.com/react-router/web/api/Redirect) for more info on available props. ### `ExecutionEnvironment`
Example usage: A module which exposes a few boolean variables to check the current rendering environment. Useful if you want to only run certain code on client/server or need to write server-side rendering compatible code.
```jsx {2,5} ```jsx {2}
import React from 'react'; import React from 'react';
import {Redirect} from '@docusaurus/router'; import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
function Home() { function MyPage() {
return <Redirect to="/docs/test" />; const location = ExecutionEnvironment.canUseDOM ? window.href.location : null;
return <div>{location}</div>;
} }
``` ```
| Field | Description |
| --- | --- |
| `ExecutionEnvironment.canUseDOM` | `true` if on client, `false` if SSR. |
| `ExecutionEnvironment.canUseEventListeners` | `true` if on client and has `window.addEventListener`. |
| `ExecutionEnvironment.canUseIntersectionObserver` | `true` if on client and has `IntersectionObserver`. |
| `ExecutionEnvironment.canUseViewport` | `true` if on client and has `window.screen`. |