Skip to content

Commit b4676c3

Browse files
docs: Use the v2 Search Component provided from Docusaurus & Algolia Search (react-navigation#968)
* bump docusaurus * use the new search component * bump node version for gh pages * bumo node version on netlify * change node * separate call from client x ssr * fix snack links
1 parent 3d2f343 commit b4676c3

File tree

13 files changed

+2953
-1186
lines changed

13 files changed

+2953
-1186
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212

13-
- name: Use Node.js 10
13+
- name: Use Node.js 12.13
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 10
16+
node-version: 12.13
1717

1818
- name: Restore yarn cache
1919
id: yarn-cache

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v1
1515

16-
- name: Use Node.js 10
16+
- name: Use Node.js 12.13
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: 10
19+
node-version: 12.13
2020

2121
- name: Restore yarn cache
2222
id: yarn-cache

docusaurus.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ module.exports = {
146146
'@docusaurus/preset-classic',
147147
{
148148
docs: {
149-
docLayoutComponent: require.resolve('./src/layouts/DocPage.js'),
150-
docItemComponent: require.resolve('./src/layouts/DocItem.js'),
149+
docLayoutComponent: require.resolve('./src/pages/layouts/DocPage.js'),
150+
docItemComponent: require.resolve('./src/pages/layouts/DocItem.js'),
151151
editUrl:
152152
'https://github.com/react-navigation/react-navigation.github.io/edit/main/',
153153
remarkPlugins: [require('./src/plugins/remark-npm2yarn')],

netlify.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
base = "/"
33
publish = "build"
44
command = "yarn install && yarn build"
5+
6+
[build.environment]
7+
NODE_VERSION = "12.13"

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"fetch-sponsors": "node scripts/fetch-sponsors.js"
1313
},
1414
"dependencies": {
15-
"@docusaurus/core": "^2.0.0-alpha.66",
15+
"@docusaurus/core": "^2.0.0-alpha.72",
1616
"@docusaurus/plugin-google-analytics": "^2.0.0-alpha.66",
17-
"@docusaurus/preset-classic": "2.0.0-alpha.66",
17+
"@docusaurus/preset-classic": "^2.0.0-alpha.72",
1818
"@octokit/graphql": "^4.5.7",
1919
"@react-navigation/core": "^5.14.3",
2020
"classnames": "^2.2.6",

src/SnackHelpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function findNearestCodeBlock(node) {
9090
while (nextElement) {
9191
if (
9292
nextElement.tagName === 'DIV' &&
93-
nextElement.className.includes('mdxCodeBlock')
93+
( nextElement.className.includes('mdxCodeBlock') || nextElement.className.includes('codeBlockContainer'))
9494
) {
9595
return nextElement;
9696
} else {

src/layouts/DocItem.js

-8
This file was deleted.

src/pages/layouts/DocItem.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import React from 'react';
2+
import DefaultDocItem from '@theme/DocItem';
3+
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
4+
5+
function DocItem(props) {
6+
// make sure to not use the window on the SSR
7+
if(!ExecutionEnvironment.canUseDOM){
8+
return null;
9+
}
10+
return <DefaultDocItem {...props} />;
11+
}
12+
13+
export default DocItem;

src/layouts/DocPage.js src/pages/layouts/DocPage.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
import React from 'react';
22
import DefaultDocPage from '@theme/DocPage';
3+
import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment';
34
import {
45
initializeSnackObservers,
56
removeSnackObservers,
6-
} from '../SnackHelpers';
7+
} from '../../SnackHelpers';
78

89
function DocPage(props) {
10+
// make sure to not use the window on the SSR
11+
if(!ExecutionEnvironment.canUseDOM){
12+
return null;
13+
}
914
React.useEffect(() => {
1015
// Tags in Head aren't immediately available when the snack script loads, so
1116
// instead let's just store this in a global...

0 commit comments

Comments
 (0)