dumi-theme-lobehub
Version:
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
55 lines • 3.75 kB
JavaScript
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
import { Helmet } from 'dumi';
import isEqual from 'fast-deep-equal';
import { siteSelectors, useSiteStore } from "../../../store";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var Favicons = function Favicons() {
var _metadata$icons, _metadata$icons2, _metadata$icons3;
var _useSiteStore = useSiteStore(function (s) {
return [siteSelectors.siteTitle(s), siteSelectors.logo(s)];
}),
_useSiteStore2 = _slicedToArray(_useSiteStore, 2),
title = _useSiteStore2[0],
logo = _useSiteStore2[1];
var metadata = useSiteStore(siteSelectors.metadata, isEqual);
return /*#__PURE__*/_jsxs(Helmet, {
children: [/*#__PURE__*/_jsx("link", {
href: (metadata === null || metadata === void 0 || (_metadata$icons = metadata.icons) === null || _metadata$icons === void 0 ? void 0 : _metadata$icons.apple) || logo,
rel: "apple-touch-icon",
sizes: "180x180"
}), /*#__PURE__*/_jsx("link", {
href: (metadata === null || metadata === void 0 || (_metadata$icons2 = metadata.icons) === null || _metadata$icons2 === void 0 ? void 0 : _metadata$icons2.shortcut) || logo,
rel: "icon",
sizes: "32x32",
type: "image/png"
}), /*#__PURE__*/_jsx("link", {
href: (metadata === null || metadata === void 0 || (_metadata$icons3 = metadata.icons) === null || _metadata$icons3 === void 0 ? void 0 : _metadata$icons3.shortcut) || logo,
rel: "shortcut icon",
type: "image/x-icon"
}), (metadata === null || metadata === void 0 ? void 0 : metadata.manifest) && /*#__PURE__*/_jsx("link", {
href: metadata === null || metadata === void 0 ? void 0 : metadata.manifest,
rel: "manifest"
}), /*#__PURE__*/_jsx("meta", {
content: title,
name: "apple-mobile-web-app-title"
}), /*#__PURE__*/_jsx("meta", {
content: title,
name: "application-name"
}), /*#__PURE__*/_jsx("meta", {
content: "#f8f8f8",
media: "(prefers-color-scheme: light)",
name: "theme-color"
}), /*#__PURE__*/_jsx("meta", {
content: "#000",
media: "(prefers-color-scheme: dark)",
name: "theme-color"
})]
});
};
export default Favicons;