fix: 🩹 website: use docusaurus context
Signed-off-by: jffarge <jf@dagger.io>
This commit is contained in:
parent
fca6968bff
commit
8c9621e137
2
Makefile
2
Makefile
@ -89,7 +89,7 @@ mdlint: # Markdown lint for web
|
||||
.PHONY: web
|
||||
web: # Run the website locally
|
||||
yarn --cwd "./website" install
|
||||
yarn --cwd "./website" dev
|
||||
yarn --cwd "./website" start
|
||||
|
||||
.PHONY: todo
|
||||
todo: # Find all TODO items
|
||||
|
@ -15,6 +15,9 @@ module.exports = {
|
||||
stylesheets: [
|
||||
"https://fonts.googleapis.com/css2?family=Karla&family=Montserrat:wght@700&display=swap",
|
||||
],
|
||||
customFields: {
|
||||
AMPLITUDE_ID: process.env.REACT_APP_AMPLITUDE_ID
|
||||
},
|
||||
themeConfig: {
|
||||
sidebarCollapsed: false,
|
||||
prism: {
|
||||
|
@ -4,7 +4,6 @@
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"docusaurus": "docusaurus",
|
||||
"dev": "REACT_APP_AMPLITUDE_ID= docusaurus start",
|
||||
"start": "docusaurus start",
|
||||
"build": "docusaurus build",
|
||||
"swizzle": "docusaurus swizzle",
|
||||
|
@ -7,6 +7,7 @@
|
||||
import React, {useState, useEffect, useCallback} from 'react';
|
||||
import {MDXProvider} from '@mdx-js/react';
|
||||
import renderRoutes from '@docusaurus/renderRoutes';
|
||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||
import Layout from '@theme/Layout';
|
||||
import DocSidebar from '@theme/DocSidebar';
|
||||
import MDXComponents from '@theme/MDXComponents';
|
||||
@ -138,12 +139,15 @@ function DocPage(props) {
|
||||
matchPath(location.pathname, docRoute),
|
||||
);
|
||||
|
||||
// DocPage Swizzle
|
||||
// DocPage Swizzle
|
||||
const {siteConfig} = useDocusaurusContext();
|
||||
useEffect(() => {
|
||||
var instance1 = amplitude.getInstance().init(process.env.REACT_APP_AMPLITUDE_ID, null, {
|
||||
apiEndpoint: `${window.location.hostname}/t`
|
||||
})
|
||||
amplitude.getInstance().logEvent('Docs Viewed', { "hostname": window.location.hostname, "path": location.pathname });
|
||||
if(siteConfig.AMPLITUDE_ID) {
|
||||
var instance1 = amplitude.getInstance().init(process.env.REACT_APP_AMPLITUDE_ID, null, {
|
||||
apiEndpoint: `${window.location.hostname}/t`
|
||||
})
|
||||
amplitude.getInstance().logEvent('Docs Viewed', { "hostname": window.location.hostname, "path": location.pathname });
|
||||
}
|
||||
}, [location.pathname])
|
||||
// End DocPageSwizzle
|
||||
|
||||
|
Reference in New Issue
Block a user