dumi-theme-lobehub 1.10.2 → 1.10.3

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.
@@ -84,8 +84,9 @@ var DocumentLayout = /*#__PURE__*/memo(function () {
84
84
  setTimeout(function () {
85
85
  var elm = document.querySelector("#".concat(decodeURIComponent(id)));
86
86
  if (elm) {
87
+ var _window;
87
88
  elm.scrollIntoView();
88
- window.scrollBy({
89
+ (_window = window) === null || _window === void 0 || _window.scrollBy({
89
90
  top: -80
90
91
  });
91
92
  }
@@ -13,13 +13,14 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
13
13
  var Og = function Og() {
14
14
  var _metadata$openGraph, _metadata$openGraph2, _metadata$openGraph3, _metadata$openGraph4, _metadata$openGraph5, _metadata$twitter, _metadata$twitter2, _metadata$twitter3, _metadata$openGraph6, _metadata$twitter4, _metadata$openGraph7, _metadata$twitter5, _metadata$openGraph8;
15
15
  var _useSiteStore = useSiteStore(function (s) {
16
- return [siteSelectors.siteTitle(s), siteSelectors.siteDesc(s), siteSelectors.logo(s), siteSelectors.hostname(s)];
16
+ return [siteSelectors.siteTitle(s), siteSelectors.siteDesc(s), siteSelectors.logo(s), siteSelectors.hostname(s) || 'https://lobehub.com', s.location.pathname];
17
17
  }),
18
- _useSiteStore2 = _slicedToArray(_useSiteStore, 4),
18
+ _useSiteStore2 = _slicedToArray(_useSiteStore, 5),
19
19
  title = _useSiteStore2[0],
20
20
  desc = _useSiteStore2[1],
21
21
  logo = _useSiteStore2[2],
22
- hostname = _useSiteStore2[3];
22
+ hostname = _useSiteStore2[3],
23
+ pathname = _useSiteStore2[4];
23
24
  var metadata = useSiteStore(siteSelectors.metadata, isEqual);
24
25
  return /*#__PURE__*/_jsxs(Helmet, {
25
26
  children: [/*#__PURE__*/_jsx("title", {
@@ -28,7 +29,7 @@ var Og = function Og() {
28
29
  content: (metadata === null || metadata === void 0 ? void 0 : metadata.description) || desc,
29
30
  name: "description"
30
31
  }), /*#__PURE__*/_jsx("link", {
31
- href: hostname || location.origin,
32
+ href: hostname,
32
33
  rel: "canonical"
33
34
  }), /*#__PURE__*/_jsx("meta", {
34
35
  content: (metadata === null || metadata === void 0 || (_metadata$openGraph = metadata.openGraph) === null || _metadata$openGraph === void 0 ? void 0 : _metadata$openGraph.title) || title,
@@ -37,7 +38,7 @@ var Og = function Og() {
37
38
  content: (metadata === null || metadata === void 0 || (_metadata$openGraph2 = metadata.openGraph) === null || _metadata$openGraph2 === void 0 ? void 0 : _metadata$openGraph2.description) || desc,
38
39
  property: "og:description"
39
40
  }), /*#__PURE__*/_jsx("meta", {
40
- content: urlJoin(hostname || location.origin, location.pathname),
41
+ content: urlJoin(hostname, pathname),
41
42
  property: "og:url"
42
43
  }), /*#__PURE__*/_jsx("meta", {
43
44
  content: metadata === null || metadata === void 0 || (_metadata$openGraph3 = metadata.openGraph) === null || _metadata$openGraph3 === void 0 ? void 0 : _metadata$openGraph3.siteName,
@@ -13,7 +13,7 @@ var date = new Date().toISOString();
13
13
  var StructuredData = function StructuredData() {
14
14
  var _metadata$twitter, _metadata$openGraph, _metadata$twitter2, _metadata$openGraph2, _metadata$twitter3, _metadata$openGraph3;
15
15
  var _useSiteStore = useSiteStore(function (s) {
16
- return [siteSelectors.siteTitle(s), siteSelectors.siteDesc(s), siteSelectors.logo(s), siteSelectors.hostname(s)];
16
+ return [siteSelectors.siteTitle(s), siteSelectors.siteDesc(s), siteSelectors.logo(s), siteSelectors.hostname(s) || 'https://lobehub.com'];
17
17
  }),
18
18
  _useSiteStore2 = _slicedToArray(_useSiteStore, 4),
19
19
  title = _useSiteStore2[0],
@@ -21,48 +21,47 @@ var StructuredData = function StructuredData() {
21
21
  logo = _useSiteStore2[2],
22
22
  hostname = _useSiteStore2[3];
23
23
  var metadata = useSiteStore(siteSelectors.metadata, isEqual);
24
- var host = hostname || location.origin;
25
24
  var ld = {
26
25
  '@context': 'https://schema.org',
27
26
  '@graph': [{
28
- '@id': urlJoin(host, '#website'),
27
+ '@id': urlJoin(hostname, '#website'),
29
28
  '@type': 'WebSite',
30
29
  'description': desc,
31
30
  'inLanguage': 'en-US',
32
31
  'name': 'LobeHub',
33
32
  'publisher': {
34
- '@id': urlJoin(host, '#organization')
33
+ '@id': urlJoin(hostname, '#organization')
35
34
  },
36
- 'url': host
35
+ 'url': hostname
37
36
  }, {
38
- '@id': host,
37
+ '@id': hostname,
39
38
  '@type': 'WebPage',
40
39
  'about': {
41
- '@id': urlJoin(host, '#organization')
40
+ '@id': urlJoin(hostname, '#organization')
42
41
  },
43
42
  'dateModified': date,
44
43
  'datePublished': date,
45
44
  'description': desc,
46
45
  'image': {
47
- '@id': urlJoin(host, '#primaryimage')
46
+ '@id': urlJoin(hostname, '#primaryimage')
48
47
  },
49
48
  'inLanguage': 'en-US',
50
49
  'isPartOf': {
51
- '@id': urlJoin(host, '#website')
50
+ '@id': urlJoin(hostname, '#website')
52
51
  },
53
52
  'name': title,
54
53
  'primaryImageOfPage': {
55
- '@id': urlJoin(host, '#primaryimage')
54
+ '@id': urlJoin(hostname, '#primaryimage')
56
55
  },
57
56
  'thumbnailUrl': (metadata === null || metadata === void 0 || (_metadata$twitter = metadata.twitter) === null || _metadata$twitter === void 0 ? void 0 : _metadata$twitter.image) || (metadata === null || metadata === void 0 || (_metadata$openGraph = metadata.openGraph) === null || _metadata$openGraph === void 0 ? void 0 : _metadata$openGraph.image)
58
57
  }, {
59
- '@id': urlJoin(host, '#primaryimage'),
58
+ '@id': urlJoin(hostname, '#primaryimage'),
60
59
  '@type': 'ImageObject',
61
60
  'contentUrl': (metadata === null || metadata === void 0 || (_metadata$twitter2 = metadata.twitter) === null || _metadata$twitter2 === void 0 ? void 0 : _metadata$twitter2.image) || (metadata === null || metadata === void 0 || (_metadata$openGraph2 = metadata.openGraph) === null || _metadata$openGraph2 === void 0 ? void 0 : _metadata$openGraph2.image) || logo,
62
61
  'inLanguage': 'en-US',
63
62
  'url': (metadata === null || metadata === void 0 || (_metadata$twitter3 = metadata.twitter) === null || _metadata$twitter3 === void 0 ? void 0 : _metadata$twitter3.image) || (metadata === null || metadata === void 0 || (_metadata$openGraph3 = metadata.openGraph) === null || _metadata$openGraph3 === void 0 ? void 0 : _metadata$openGraph3.image) || logo
64
63
  }, {
65
- '@id': urlJoin(host, '#organization'),
64
+ '@id': urlJoin(hostname, '#organization'),
66
65
  '@type': 'Organization',
67
66
  'alternateName': 'LobeHub',
68
67
  'contactPoint': {
@@ -23,8 +23,9 @@ var Changelog = /*#__PURE__*/memo(function () {
23
23
  var _useStyles = useStyles(),
24
24
  styles = _useStyles.styles;
25
25
  useEffect(function () {
26
- window.scrollTo(0, 0);
27
- document.body.scrollTo(0, 0);
26
+ var _window, _document;
27
+ (_window = window) === null || _window === void 0 || _window.scrollTo(0, 0);
28
+ (_document = document) === null || _document === void 0 || _document.body.scrollTo(0, 0);
28
29
  }, []);
29
30
  return /*#__PURE__*/_jsxs(Center, {
30
31
  className: styles.content,
@@ -24,8 +24,9 @@ var Documents = /*#__PURE__*/memo(function () {
24
24
  var _useStyles = useStyles(),
25
25
  styles = _useStyles.styles;
26
26
  useEffect(function () {
27
- window.scrollTo(0, 0);
28
- document.body.scrollTo(0, 0);
27
+ var _window, _document;
28
+ (_window = window) === null || _window === void 0 || _window.scrollTo(0, 0);
29
+ (_document = document) === null || _document === void 0 || _document.body.scrollTo(0, 0);
29
30
  }, [location.pathname]);
30
31
  var Comment = useCallback(function () {
31
32
  return giscus && /*#__PURE__*/_jsx("div", {
@@ -8,8 +8,9 @@ import { jsxs as _jsxs } from "react/jsx-runtime";
8
8
  var Home = /*#__PURE__*/memo(function () {
9
9
  var outlet = useOutlet();
10
10
  useEffect(function () {
11
- window.scrollTo(0, 0);
12
- document.body.scrollTo(0, 0);
11
+ var _window, _document;
12
+ (_window = window) === null || _window === void 0 || _window.scrollTo(0, 0);
13
+ (_document = document) === null || _document === void 0 || _document.body.scrollTo(0, 0);
13
14
  }, []);
14
15
  return /*#__PURE__*/_jsxs(Flexbox, {
15
16
  align: 'center',
@@ -18,14 +18,18 @@ var Toc = /*#__PURE__*/memo(function () {
18
18
  var _useResponsive = useResponsive(),
19
19
  mobile = _useResponsive.mobile;
20
20
  var theme = useTheme();
21
+ var hash = useSiteStore(function (s) {
22
+ return s.location.hash;
23
+ }, isEqual);
21
24
  var _useState = useState(GAP),
22
25
  _useState2 = _slicedToArray(_useState, 2),
23
26
  spacing = _useState2[0],
24
27
  setSpacing = _useState2[1];
25
28
  useEffect(function () {
26
- var ApiTitle = document.querySelector('#api-header');
29
+ var _document;
30
+ var ApiTitle = (_document = document) === null || _document === void 0 ? void 0 : _document.querySelector('#api-header');
27
31
  if (ApiTitle) setSpacing(ApiTitle.clientHeight + GAP);
28
- }, [window.location.href, items]);
32
+ }, [hash, items]);
29
33
  if ((items === null || items === void 0 ? void 0 : items.length) < 1) return;
30
34
  return /*#__PURE__*/_jsxs(_Fragment, {
31
35
  children: [!mobile && /*#__PURE__*/_jsx("div", {
@@ -34,7 +38,8 @@ var Toc = /*#__PURE__*/memo(function () {
34
38
  }
35
39
  }), /*#__PURE__*/_jsx(T, {
36
40
  getContainer: function getContainer() {
37
- return document.body;
41
+ var _document2;
42
+ return (_document2 = document) === null || _document2 === void 0 ? void 0 : _document2.body;
38
43
  },
39
44
  headerHeight: theme.headerHeight,
40
45
  isMobile: mobile,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dumi-theme-lobehub",
3
- "version": "1.10.2",
3
+ "version": "1.10.3",
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",