dumi-theme-lobehub 1.10.1 → 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/layouts/DemoLayout/index.js +3 -2
- package/dist/layouts/DocLayout/Head/Analytics.js +32 -0
- package/dist/layouts/DocLayout/index.js +2 -2
- package/package.json +1 -1
- package/dist/components/Analytics/Clarity.d.ts +0 -5
- package/dist/components/Analytics/Clarity.js +0 -11
- package/dist/components/Analytics/GoogleAnalytics.d.ts +0 -5
- package/dist/components/Analytics/GoogleAnalytics.js +0 -19
- package/dist/components/Analytics/Plausible.d.ts +0 -6
- package/dist/components/Analytics/Plausible.js +0 -11
- package/dist/components/Analytics/index.js +0 -21
- /package/dist/{components/Analytics/index.d.ts → layouts/DocLayout/Head/Analytics.d.ts} +0 -0
|
@@ -2,10 +2,11 @@ import { ThemeProvider } from '@lobehub/ui';
|
|
|
2
2
|
import { useLocale, useLocation, useNavData, useOutlet, useRouteMeta, useSidebarData, useSiteData, useTabMeta } from 'dumi';
|
|
3
3
|
import isEqual from 'fast-deep-equal';
|
|
4
4
|
import { memo, useMemo } from 'react';
|
|
5
|
-
import Analytics from "../../components/Analytics";
|
|
6
5
|
import { Provider, createStore as _createStore, useThemeStore } from "../../store";
|
|
6
|
+
import Analytics from "../DocLayout/Head/Analytics";
|
|
7
7
|
import Favicons from "../DocLayout/Head/Favicons";
|
|
8
8
|
import Og from "../DocLayout/Head/Og";
|
|
9
|
+
import StructuredData from "../DocLayout/Head/StructuredData";
|
|
9
10
|
import GlobalStyle from "./GlobalStyle";
|
|
10
11
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
12
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
@@ -19,7 +20,7 @@ var App = /*#__PURE__*/memo(function (_ref) {
|
|
|
19
20
|
createStore: function createStore() {
|
|
20
21
|
return _createStore(initState);
|
|
21
22
|
},
|
|
22
|
-
children: [/*#__PURE__*/_jsx(Favicons, {}), /*#__PURE__*/_jsx(Og, {}), /*#__PURE__*/_jsx(Analytics, {}), /*#__PURE__*/_jsxs(ThemeProvider, {
|
|
23
|
+
children: [/*#__PURE__*/_jsx(Favicons, {}), /*#__PURE__*/_jsx(Og, {}), /*#__PURE__*/_jsx(Analytics, {}), /*#__PURE__*/_jsx(StructuredData, {}), /*#__PURE__*/_jsxs(ThemeProvider, {
|
|
23
24
|
themeMode: themeMode,
|
|
24
25
|
children: [/*#__PURE__*/_jsx(GlobalStyle, {}), outlet]
|
|
25
26
|
})]
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { Helmet } from 'dumi';
|
|
2
|
+
import { siteSelectors, useSiteStore } from "../../../store";
|
|
3
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
4
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
5
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
var Analytics = function Analytics() {
|
|
7
|
+
var analytics = useSiteStore(siteSelectors.analytics);
|
|
8
|
+
return /*#__PURE__*/_jsxs(Helmet, {
|
|
9
|
+
children: [(analytics === null || analytics === void 0 ? void 0 : analytics.googleAnalytics) && /*#__PURE__*/_jsxs(_Fragment, {
|
|
10
|
+
children: [/*#__PURE__*/_jsx("script", {
|
|
11
|
+
async: true,
|
|
12
|
+
src: "https://www.googletagmanager.com/gtag/js?id=".concat(analytics.googleAnalytics.measurementId)
|
|
13
|
+
}), /*#__PURE__*/_jsx("script", {
|
|
14
|
+
dangerouslySetInnerHTML: {
|
|
15
|
+
__html: "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n\n gtag('config', '".concat(analytics.googleAnalytics.measurementId, "');\n")
|
|
16
|
+
},
|
|
17
|
+
id: "google-analytics",
|
|
18
|
+
type: "text/javascript"
|
|
19
|
+
})]
|
|
20
|
+
}), (analytics === null || analytics === void 0 ? void 0 : analytics.clarity) && /*#__PURE__*/_jsx("script", {
|
|
21
|
+
dangerouslySetInnerHTML: {
|
|
22
|
+
__html: "\n (function(c,l,a,r,i,t,y){\n c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};\n t=l.createElement(r);t.async=1;t.src=\"https://www.clarity.ms/tag/\"+i;\n y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);\n })(window, document, \"clarity\", \"script\", \"".concat(analytics.clarity.projectId, "\");\n ")
|
|
23
|
+
},
|
|
24
|
+
id: "microsoft-clarity-init"
|
|
25
|
+
}), (analytics === null || analytics === void 0 ? void 0 : analytics.plausible) && /*#__PURE__*/_jsx("script", {
|
|
26
|
+
"data-domain": analytics.plausible.domain,
|
|
27
|
+
defer: true,
|
|
28
|
+
src: "".concat(analytics.plausible.scriptBaseUrl, "/js/script.js")
|
|
29
|
+
})]
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
export default Analytics;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { useLocale, useLocation, useNavData, useRouteMeta, useSidebarData, useSiteData, useTabMeta } from 'dumi';
|
|
2
2
|
import { memo, useMemo } from 'react';
|
|
3
|
-
import Analytics from "../../components/Analytics";
|
|
4
3
|
import { StoreUpdater } from "../../components/StoreUpdater";
|
|
5
4
|
import { Provider, createStore as _createStore } from "../../store";
|
|
6
5
|
import DocumentLayout from "./DocumentLayout";
|
|
6
|
+
import Analytics from "./Head/Analytics";
|
|
7
7
|
import Favicons from "./Head/Favicons";
|
|
8
8
|
import Og from "./Head/Og";
|
|
9
9
|
import StructuredData from "./Head/StructuredData";
|
|
@@ -16,7 +16,7 @@ var App = /*#__PURE__*/memo(function (_ref) {
|
|
|
16
16
|
createStore: function createStore() {
|
|
17
17
|
return _createStore(initState);
|
|
18
18
|
},
|
|
19
|
-
children: [/*#__PURE__*/_jsx(Favicons, {}), /*#__PURE__*/_jsx(Og, {}), /*#__PURE__*/_jsx(
|
|
19
|
+
children: [/*#__PURE__*/_jsx(Favicons, {}), /*#__PURE__*/_jsx(Og, {}), /*#__PURE__*/_jsx(Analytics, {}), /*#__PURE__*/_jsx(StructuredData, {}), /*#__PURE__*/_jsx(StoreUpdater, {}), /*#__PURE__*/_jsx(ThemeProvider, {
|
|
20
20
|
children: /*#__PURE__*/_jsx(DocumentLayout, {})
|
|
21
21
|
})]
|
|
22
22
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dumi-theme-lobehub",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.2",
|
|
4
4
|
"description": "dumi-theme-lobehub is a documentation site theme package designed for dumi2. It provides a more beautiful and user-friendly development and reading experience based on @lobehub/ui",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
var MicrosoftClarity = function MicrosoftClarity(_ref) {
|
|
3
|
-
var projectId = _ref.projectId;
|
|
4
|
-
return /*#__PURE__*/_jsx("script", {
|
|
5
|
-
dangerouslySetInnerHTML: {
|
|
6
|
-
__html: "\n (function(c,l,a,r,i,t,y){\n c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};\n t=l.createElement(r);t.async=1;t.src=\"https://www.clarity.ms/tag/\"+i;\n y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);\n })(window, document, \"clarity\", \"script\", \"".concat(projectId, "\");\n ")
|
|
7
|
-
},
|
|
8
|
-
id: "microsoft-clarity-init"
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
export default MicrosoftClarity;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
3
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
|
-
var GoogleAnalytics = function GoogleAnalytics(_ref) {
|
|
5
|
-
var measurementId = _ref.measurementId;
|
|
6
|
-
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
7
|
-
children: [/*#__PURE__*/_jsx("script", {
|
|
8
|
-
async: true,
|
|
9
|
-
src: "https://www.googletagmanager.com/gtag/js?id=".concat(measurementId)
|
|
10
|
-
}), /*#__PURE__*/_jsx("script", {
|
|
11
|
-
dangerouslySetInnerHTML: {
|
|
12
|
-
__html: "\n window.dataLayer = window.dataLayer || [];\n function gtag(){dataLayer.push(arguments);}\n gtag('js', new Date());\n\n gtag('config', '".concat(measurementId, "');\n")
|
|
13
|
-
},
|
|
14
|
-
id: "google-analytics",
|
|
15
|
-
type: "text/javascript"
|
|
16
|
-
})]
|
|
17
|
-
});
|
|
18
|
-
};
|
|
19
|
-
export default GoogleAnalytics;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
-
var PlausibleAnalytics = function PlausibleAnalytics(_ref) {
|
|
3
|
-
var domain = _ref.domain,
|
|
4
|
-
scriptBaseUrl = _ref.scriptBaseUrl;
|
|
5
|
-
return /*#__PURE__*/_jsx("script", {
|
|
6
|
-
"data-domain": domain,
|
|
7
|
-
defer: true,
|
|
8
|
-
src: "".concat(scriptBaseUrl, "/js/script.js")
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
export default PlausibleAnalytics;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { Helmet } from 'dumi';
|
|
2
|
-
import { siteSelectors, useSiteStore } from "../../store";
|
|
3
|
-
import ClarityAnalytics from "./Clarity";
|
|
4
|
-
import GoogleAnalytics from "./GoogleAnalytics";
|
|
5
|
-
import Plausible from "./Plausible";
|
|
6
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
-
var Analytics = function Analytics() {
|
|
9
|
-
var analytics = useSiteStore(siteSelectors.analytics);
|
|
10
|
-
return /*#__PURE__*/_jsxs(Helmet, {
|
|
11
|
-
children: [(analytics === null || analytics === void 0 ? void 0 : analytics.googleAnalytics) && /*#__PURE__*/_jsx(GoogleAnalytics, {
|
|
12
|
-
measurementId: analytics.googleAnalytics.measurementId
|
|
13
|
-
}), (analytics === null || analytics === void 0 ? void 0 : analytics.clarity) && /*#__PURE__*/_jsx(ClarityAnalytics, {
|
|
14
|
-
projectId: analytics.clarity.projectId
|
|
15
|
-
}), (analytics === null || analytics === void 0 ? void 0 : analytics.plausible) && /*#__PURE__*/_jsx(Plausible, {
|
|
16
|
-
domain: analytics.plausible.domain,
|
|
17
|
-
scriptBaseUrl: analytics.plausible.scriptBaseUrl
|
|
18
|
-
})]
|
|
19
|
-
});
|
|
20
|
-
};
|
|
21
|
-
export default Analytics;
|
|
File without changes
|