forked from polkadot-developers/substrate-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-browser.js
40 lines (33 loc) · 1.29 KB
/
gatsby-browser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import './src/styles/global.css';
import './src/styles/markdown.css';
import './src/styles/custom-blocks.css';
import './src/styles/language-tabs.css';
import './src/styles/scss/styles.scss';
import { DataProvider, ThemeProvider } from 'gatsby-plugin-substrate';
import React from 'react';
export const wrapRootElement = ({ element }) => <ThemeProvider>{element}</ThemeProvider>;
export const wrapPageElement = ({ element, props }) => <DataProvider props={props}>{element}</DataProvider>;
export const onRouteUpdate = ({ location }) => scrollToAnchor(location);
/**
*
* @desc - a function to jump to the correct scroll position
* @param {Object} location -
* @param {Number} [mainNavHeight] - the height of any persistent nav -> document.querySelector(`nav`)
*/
function scrollToAnchor(location, mainNavHeight = 100) {
// Check for location so build does not fail
if (location && location.hash) {
// Fix scrolling for ids starting with numbers
// https://stackoverflow.com/a/20306237/1268612
const hash = location.hash.replace(/^#(\d)/, '#\\3$1');
const item = document.querySelector(`${hash}`);
if (item)
window.scrollTo({
top: item.offsetTop - mainNavHeight,
behavior: 'instant',
});
} else if (location) {
window.scrollTo(0, 0);
}
return true;
}