@koine/next 1.0.10 → 1.0.11
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/Analytics/AnalyticsGoogle.d.ts +5 -0
- package/Analytics/AnalyticsGoogle.js +37 -0
- package/Analytics/index.d.ts +1 -0
- package/Analytics/index.js +1 -0
- package/Analytics/package.json +6 -0
- package/Auth/helpers.d.ts +17 -0
- package/Auth/helpers.js +21 -0
- package/Auth/index.d.ts +4 -0
- package/Auth/index.js +4 -0
- package/Auth/package.json +6 -0
- package/Auth/useLogin.d.ts +7 -0
- package/Auth/useLogin.js +50 -0
- package/Auth/useLoginUrl.d.ts +1 -0
- package/Auth/useLoginUrl.js +11 -0
- package/Auth/useLogout.d.ts +6 -0
- package/Auth/useLogout.js +52 -0
- package/Favicon/Favicon.d.ts +3 -0
- package/Favicon/Favicon.js +4 -0
- package/Favicon/index.d.ts +1 -0
- package/Favicon/index.js +1 -0
- package/Favicon/package.json +6 -0
- package/Forms/index.d.ts +2 -0
- package/Forms/index.js +2 -0
- package/Forms/package.json +6 -0
- package/Forms/useForm.d.ts +32 -0
- package/Forms/useForm.js +37 -0
- package/Forms/useSubmit.d.ts +24 -0
- package/Forms/useSubmit.js +23 -0
- package/Head/Head.d.ts +1 -0
- package/Head/Head.js +1 -0
- package/Head/index.d.ts +1 -0
- package/Head/index.js +1 -0
- package/Head/package.json +6 -0
- package/I18n/I18n.d.ts +44 -0
- package/I18n/I18n.js +74 -0
- package/I18n/index.d.ts +1 -0
- package/I18n/index.js +1 -0
- package/I18n/package.json +6 -0
- package/Img/Img.d.ts +21 -0
- package/Img/Img.js +28 -0
- package/Img/index.d.ts +1 -0
- package/Img/index.js +1 -0
- package/Img/package.json +6 -0
- package/Link/Link.d.ts +9 -0
- package/Link/Link.js +9 -0
- package/Link/index.d.ts +1 -0
- package/Link/index.js +1 -0
- package/Link/package.json +6 -0
- package/NextProgress/NextProgress.d.ts +24 -0
- package/NextProgress/NextProgress.js +37 -0
- package/NextProgress/index.d.ts +2 -0
- package/NextProgress/index.js +1 -0
- package/NextProgress/package.json +6 -0
- package/Seo/Seo.d.ts +3 -0
- package/Seo/Seo.js +8 -0
- package/Seo/SeoDefaults.d.ts +3 -0
- package/Seo/SeoDefaults.js +12 -0
- package/Seo/helpers.d.ts +48 -0
- package/Seo/helpers.js +111 -0
- package/Seo/index.d.ts +12 -0
- package/Seo/index.js +12 -0
- package/Seo/package.json +6 -0
- package/Theme/Theme.d.ts +46 -0
- package/Theme/Theme.js +235 -0
- package/Theme/index.d.ts +1 -0
- package/Theme/index.js +1 -0
- package/Theme/package.json +6 -0
- package/app/AppHead.d.ts +2 -0
- package/app/AppHead.js +5 -0
- package/app/AppMain.d.ts +35 -0
- package/app/AppMain.js +1 -0
- package/app/css/AppMain.d.ts +8 -0
- package/app/css/AppMain.js +11 -0
- package/app/css/AppTheme.d.ts +10 -0
- package/app/css/AppTheme.js +12 -0
- package/app/css/auth/index.d.ts +9 -0
- package/app/css/auth/index.js +13 -0
- package/app/css/auth/package.json +6 -0
- package/app/css/index.d.ts +54 -0
- package/app/css/index.js +57 -0
- package/app/css/package.json +6 -0
- package/app/em/AppMain.d.ts +10 -0
- package/app/em/AppMain.js +22 -0
- package/app/em/AppTheme.d.ts +15 -0
- package/app/em/AppTheme.js +17 -0
- package/app/em/auth/index.d.ts +9 -0
- package/app/em/auth/index.js +13 -0
- package/app/em/auth/package.json +6 -0
- package/app/em/index.d.ts +9 -0
- package/app/em/index.js +12 -0
- package/app/em/package.json +6 -0
- package/app/index.d.ts +2 -0
- package/app/index.js +2 -0
- package/app/package.json +6 -0
- package/app/sc/AppMain.d.ts +10 -0
- package/app/sc/AppMain.js +22 -0
- package/app/sc/AppTheme.d.ts +13 -0
- package/app/sc/AppTheme.js +9 -0
- package/app/sc/auth/index.d.ts +9 -0
- package/app/sc/auth/index.js +13 -0
- package/app/sc/auth/package.json +6 -0
- package/app/sc/index.d.ts +56 -0
- package/app/sc/index.js +59 -0
- package/app/sc/package.json +6 -0
- package/config/index.d.ts +71 -0
- package/config/index.js +174 -0
- package/config/package.json +6 -0
- package/document/Document.d.ts +15 -0
- package/document/Document.js +19 -0
- package/document/css/index.d.ts +22 -0
- package/document/css/index.js +30 -0
- package/document/css/package.json +6 -0
- package/document/em/index.d.ts +16 -0
- package/document/em/index.js +68 -0
- package/document/em/package.json +6 -0
- package/document/index.d.ts +2 -0
- package/document/index.js +2 -0
- package/document/package.json +6 -0
- package/document/sc/index.d.ts +20 -0
- package/document/sc/index.js +44 -0
- package/document/sc/package.json +6 -0
- package/index.d.ts +12 -0
- package/index.js +12 -0
- package/node/Analytics/AnalyticsGoogle.js +42 -0
- package/node/Analytics/index.js +4 -0
- package/node/Auth/helpers.js +26 -0
- package/node/Auth/index.js +7 -0
- package/node/Auth/useLogin.js +54 -0
- package/node/Auth/useLoginUrl.js +15 -0
- package/node/Auth/useLogout.js +56 -0
- package/node/Favicon/Favicon.js +9 -0
- package/node/Favicon/index.js +4 -0
- package/node/Forms/index.js +5 -0
- package/node/Forms/useForm.js +41 -0
- package/node/Forms/useSubmit.js +27 -0
- package/node/Head/Head.js +8 -0
- package/node/Head/index.js +4 -0
- package/node/I18n/I18n.js +82 -0
- package/node/I18n/index.js +4 -0
- package/node/Img/Img.js +34 -0
- package/node/Img/index.js +4 -0
- package/node/Link/Link.js +13 -0
- package/node/Link/index.js +4 -0
- package/node/NextProgress/NextProgress.js +41 -0
- package/node/NextProgress/index.js +5 -0
- package/node/Seo/Seo.js +12 -0
- package/node/Seo/SeoDefaults.js +16 -0
- package/node/Seo/helpers.js +115 -0
- package/node/Seo/index.js +15 -0
- package/node/Theme/Theme.js +241 -0
- package/node/Theme/index.js +4 -0
- package/node/app/AppHead.js +10 -0
- package/node/app/AppMain.js +2 -0
- package/node/app/css/AppMain.js +16 -0
- package/node/app/css/AppTheme.js +16 -0
- package/node/app/css/auth/index.js +18 -0
- package/node/app/css/index.js +62 -0
- package/node/app/em/AppMain.js +26 -0
- package/node/app/em/AppTheme.js +22 -0
- package/node/app/em/auth/index.js +18 -0
- package/node/app/em/index.js +17 -0
- package/node/app/index.js +5 -0
- package/node/app/sc/AppMain.js +26 -0
- package/node/app/sc/AppTheme.js +13 -0
- package/node/app/sc/auth/index.js +18 -0
- package/node/app/sc/index.js +64 -0
- package/node/config/index.js +184 -0
- package/node/document/Document.js +24 -0
- package/node/document/css/index.js +35 -0
- package/node/document/em/index.js +73 -0
- package/node/document/index.js +7 -0
- package/node/document/sc/index.js +49 -0
- package/node/index.js +15 -0
- package/node/utils/api.js +38 -0
- package/node/utils/emotion-cache.js +13 -0
- package/node/utils/index.js +32 -0
- package/package.json +4 -7
- package/utils/api.d.ts +55 -0
- package/utils/api.js +35 -0
- package/utils/emotion-cache.d.ts +5 -0
- package/utils/emotion-cache.js +8 -0
- package/utils/index.d.ts +19 -0
- package/utils/index.js +26 -0
- package/utils/package.json +6 -0
package/Link/Link.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { LinkProps as NextLinkProps } from "next/link";
|
|
3
|
+
export declare type LinkProps = Omit<React.ComponentPropsWithRef<"a">, "href"> & Omit<NextLinkProps, "as" | "passHref" | "children"> & {
|
|
4
|
+
Link?: React.ComponentType<any>;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* @see https://next.js.org/docs/api-reference/next/link
|
|
8
|
+
*/
|
|
9
|
+
export declare const Link: React.ForwardRefExoticComponent<Pick<LinkProps, "key" | "title" | "hidden" | "type" | "locale" | "replace" | "slot" | "style" | "children" | "rel" | "href" | "hrefLang" | "property" | "id" | "prefetch" | "onLoad" | "color" | "onBlur" | "onChange" | "onSubmit" | "referrerPolicy" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "download" | "media" | "ping" | "target" | "scroll" | "shallow" | "legacyBehavior" | "Link"> & React.RefAttributes<HTMLAnchorElement>>;
|
package/Link/Link.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import NextLink from "next/link";
|
|
4
|
+
/**
|
|
5
|
+
* @see https://next.js.org/docs/api-reference/next/link
|
|
6
|
+
*/
|
|
7
|
+
export const Link = forwardRef(function Link({ href, prefetch, replace, scroll, shallow, locale, Link = "span", ...props }, ref) {
|
|
8
|
+
return (_jsx(NextLink, { href: href, replace: replace, scroll: scroll, shallow: shallow, locale: locale, passHref: true, children: _jsx(Link, { ref: ref, ...props }) }));
|
|
9
|
+
});
|
package/Link/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Link";
|
package/Link/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Link";
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { WithComponents, Simplify } from "@koine/react";
|
|
2
|
+
declare type OwnProps = {
|
|
3
|
+
/** @default 0.3 */
|
|
4
|
+
startAt?: number;
|
|
5
|
+
/** @default true */
|
|
6
|
+
showOnShallow?: boolean;
|
|
7
|
+
/** @default 200 */
|
|
8
|
+
stopDelayMs?: number;
|
|
9
|
+
};
|
|
10
|
+
export declare type Components = {
|
|
11
|
+
Overlay: {
|
|
12
|
+
type: "div";
|
|
13
|
+
props: {
|
|
14
|
+
running?: boolean;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare type ComponentsProps = {
|
|
19
|
+
[Name in keyof Components]: Components[Name]["props"];
|
|
20
|
+
};
|
|
21
|
+
declare type Props = Simplify<WithComponents<OwnProps, Components>>;
|
|
22
|
+
export declare type NextProgressProps = Props;
|
|
23
|
+
export declare const NextProgress: ({ startAt, showOnShallow, stopDelayMs, Overlay, }: NextProgressProps) => JSX.Element;
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
3
|
+
import { useRouter } from "next/router";
|
|
4
|
+
export const NextProgress = ({ startAt = 0.3, showOnShallow = true, stopDelayMs = 200, Overlay = "div", }) => {
|
|
5
|
+
const { events } = useRouter();
|
|
6
|
+
// const [progress, setProgress] = useState(0);
|
|
7
|
+
const [running, setRunning] = useState(false);
|
|
8
|
+
const timer = useRef(null);
|
|
9
|
+
const routeChangeStart = useCallback((_, { shallow }) => {
|
|
10
|
+
if (!shallow || showOnShallow) {
|
|
11
|
+
// setProgress(startAt);
|
|
12
|
+
setRunning(true);
|
|
13
|
+
}
|
|
14
|
+
}, [showOnShallow]);
|
|
15
|
+
const routeChangeEnd = useCallback((_, { shallow }) => {
|
|
16
|
+
if (!shallow || showOnShallow) {
|
|
17
|
+
if (timer.current) {
|
|
18
|
+
clearTimeout(timer.current);
|
|
19
|
+
}
|
|
20
|
+
timer.current = setTimeout(() => {
|
|
21
|
+
// setProgress(100);
|
|
22
|
+
setRunning(false);
|
|
23
|
+
}, stopDelayMs);
|
|
24
|
+
}
|
|
25
|
+
}, [showOnShallow, stopDelayMs, timer]);
|
|
26
|
+
useEffect(() => {
|
|
27
|
+
events.on("routeChangeStart", routeChangeStart);
|
|
28
|
+
events.on("routeChangeComplete", routeChangeEnd);
|
|
29
|
+
events.on("routeChangeError", routeChangeEnd);
|
|
30
|
+
return () => {
|
|
31
|
+
events.off("routeChangeStart", routeChangeStart);
|
|
32
|
+
events.off("routeChangeComplete", routeChangeEnd);
|
|
33
|
+
events.off("routeChangeError", routeChangeEnd);
|
|
34
|
+
};
|
|
35
|
+
}, [events, routeChangeStart, routeChangeEnd]);
|
|
36
|
+
return _jsx(Overlay, { running: running });
|
|
37
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NextProgress } from "./NextProgress";
|
package/Seo/Seo.d.ts
ADDED
package/Seo/Seo.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { memo } from "react";
|
|
3
|
+
import Head from "next/head";
|
|
4
|
+
import { buildTags } from "./helpers";
|
|
5
|
+
const _Seo = (props) => {
|
|
6
|
+
return _jsx(Head, { children: buildTags(props) });
|
|
7
|
+
};
|
|
8
|
+
export const Seo = memo(_Seo);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { memo } from "react";
|
|
3
|
+
import Head from "next/head";
|
|
4
|
+
// import { useRouter } from "next/router";
|
|
5
|
+
// import { getSiteUrl } from "../utils";
|
|
6
|
+
import { buildTags } from "./helpers";
|
|
7
|
+
const _SeoDefaults = (props) => {
|
|
8
|
+
// const router = useRouter();
|
|
9
|
+
// props.openGraph.url = getSiteUrl(router.asPath);
|
|
10
|
+
return _jsx(Head, { children: buildTags(props) });
|
|
11
|
+
};
|
|
12
|
+
export const SeoDefaults = memo(_SeoDefaults);
|
package/Seo/helpers.d.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { NextSeoProps, DefaultSeoProps } from "next-seo/lib/types";
|
|
3
|
+
export declare type SeoData = {
|
|
4
|
+
hidden?: boolean;
|
|
5
|
+
title?: string;
|
|
6
|
+
description?: string;
|
|
7
|
+
keywords?: string | string[];
|
|
8
|
+
ogimage?: string;
|
|
9
|
+
};
|
|
10
|
+
declare type SeoPropsOpenGraph = NextSeoProps["openGraph"] & {
|
|
11
|
+
image?: string;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* @see https://github.com/garmeeh/next-seo/blob/master/src/types.ts#L395
|
|
15
|
+
*/
|
|
16
|
+
export declare type SeoProps = Omit<NextSeoProps, "additionalMetaTags" | "additionalLinkTags" | "mobileAlternate" | "robotsProps"> & {
|
|
17
|
+
metaTags?: NextSeoProps["additionalMetaTags"];
|
|
18
|
+
linkTags?: NextSeoProps["additionalLinkTags"];
|
|
19
|
+
seo?: SeoData;
|
|
20
|
+
hidden?: SeoData["hidden"];
|
|
21
|
+
keywords?: SeoData["keywords"];
|
|
22
|
+
openGraph?: SeoPropsOpenGraph;
|
|
23
|
+
og?: SeoPropsOpenGraph;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @see https://github.com/garmeeh/next-seo/blob/master/src/types.ts#L413
|
|
27
|
+
*/
|
|
28
|
+
export declare type SeoDefaultsProps = Omit<DefaultSeoProps, "additionalMetaTags" | "additionalLinkTags" | "dangerouslySetAllPagesToNoIndex" | "dangerouslySetAllPagesToNoFollow" | "defaultOpenGraphImageWidth" | "defaultOpenGraphImageHeight" | "defaultOpenGraphVideoWidth" | "defaultOpenGraphVideoHeight" | "mobileAlternate" | "robotsProps"> & {
|
|
29
|
+
metaTags?: DefaultSeoProps["additionalMetaTags"];
|
|
30
|
+
linkTags?: DefaultSeoProps["additionalLinkTags"];
|
|
31
|
+
};
|
|
32
|
+
declare type BuildTagsParams = SeoProps & SeoDefaultsProps;
|
|
33
|
+
/**
|
|
34
|
+
* We do a couple of things in addition while many other are removed.
|
|
35
|
+
*
|
|
36
|
+
* - Add `seo` meta object coming from a CMS probably
|
|
37
|
+
* - Add `ogimage` and `openGraph.image` as single image source
|
|
38
|
+
* - Add `og` alias to define `openGraph`
|
|
39
|
+
* - Add check for `title` equale to `templateTitle` to avoid meta titles like
|
|
40
|
+
* "My site | My site" often happening in homepages
|
|
41
|
+
* - Remove the open graph videos and images
|
|
42
|
+
*
|
|
43
|
+
* - Shorter code
|
|
44
|
+
*
|
|
45
|
+
* @returns
|
|
46
|
+
*/
|
|
47
|
+
export declare const buildTags: ({ seo, hidden, keywords, title, titleTemplate, defaultTitle, noindex, nofollow, description, languageAlternates, twitter, facebook, openGraph, og: ogAlias, canonical, metaTags, linkTags, }?: BuildTagsParams) => React.ReactNode[];
|
|
48
|
+
export {};
|
package/Seo/helpers.js
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { isArray } from "@koine/utils";
|
|
3
|
+
const defaults = {
|
|
4
|
+
tplTitle: "",
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* We do a couple of things in addition while many other are removed.
|
|
8
|
+
*
|
|
9
|
+
* - Add `seo` meta object coming from a CMS probably
|
|
10
|
+
* - Add `ogimage` and `openGraph.image` as single image source
|
|
11
|
+
* - Add `og` alias to define `openGraph`
|
|
12
|
+
* - Add check for `title` equale to `templateTitle` to avoid meta titles like
|
|
13
|
+
* "My site | My site" often happening in homepages
|
|
14
|
+
* - Remove the open graph videos and images
|
|
15
|
+
*
|
|
16
|
+
* - Shorter code
|
|
17
|
+
*
|
|
18
|
+
* @returns
|
|
19
|
+
*/
|
|
20
|
+
export const buildTags = ({ seo, hidden, keywords, title = "", titleTemplate, defaultTitle, noindex, nofollow, description, languageAlternates = [], twitter, facebook, openGraph, og: ogAlias, canonical, metaTags, linkTags, } = {}) => {
|
|
21
|
+
const render = [];
|
|
22
|
+
const $names = {};
|
|
23
|
+
const $properties = {};
|
|
24
|
+
if (titleTemplate) {
|
|
25
|
+
defaults.tplTitle = titleTemplate;
|
|
26
|
+
}
|
|
27
|
+
title = title || seo?.title || "";
|
|
28
|
+
if (title) {
|
|
29
|
+
if (defaults.tplTitle && defaults.tplTitle !== title) {
|
|
30
|
+
title = defaults.tplTitle.replace(/%s/g, title);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
else if (defaultTitle) {
|
|
34
|
+
title = defaultTitle;
|
|
35
|
+
}
|
|
36
|
+
if (title) {
|
|
37
|
+
render.push(_jsx("title", { children: title }, "title"));
|
|
38
|
+
$properties["og:title"] = title; // overridden later...
|
|
39
|
+
}
|
|
40
|
+
$names["robots"] = `${noindex || hidden ? "noindex" : "index"},${nofollow || hidden ? "nofollow" : "follow"}`;
|
|
41
|
+
description = description || seo?.description;
|
|
42
|
+
if (description) {
|
|
43
|
+
$names["description"] = description;
|
|
44
|
+
$properties["og:description"] = description; // overridden later...
|
|
45
|
+
}
|
|
46
|
+
keywords = keywords || seo?.keywords;
|
|
47
|
+
if (keywords) {
|
|
48
|
+
$names["keywords"] = isArray(keywords) ? keywords.join(", ") : keywords;
|
|
49
|
+
}
|
|
50
|
+
if (languageAlternates?.length > 0) {
|
|
51
|
+
languageAlternates.forEach((languageAlternate) => {
|
|
52
|
+
render.push(_jsx("link", { rel: "alternate", hrefLang: languageAlternate.hrefLang, href: languageAlternate.href }, `languageAlternate-${languageAlternate.hrefLang}`));
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
if (canonical) {
|
|
56
|
+
render.push(_jsx("link", { rel: "canonical", href: canonical }, "canonical"));
|
|
57
|
+
$properties["og:url"] = canonical;
|
|
58
|
+
}
|
|
59
|
+
if (facebook?.appId)
|
|
60
|
+
$properties["fb:app_id"] = facebook.appId;
|
|
61
|
+
if (twitter) {
|
|
62
|
+
if (twitter.cardType)
|
|
63
|
+
$names["twitter:card"] = twitter.cardType;
|
|
64
|
+
if (twitter.site)
|
|
65
|
+
$names["twitter:site"] = twitter.site;
|
|
66
|
+
if (twitter.handle)
|
|
67
|
+
$names["twitter:creator"] = twitter.handle;
|
|
68
|
+
}
|
|
69
|
+
const og = ogAlias || openGraph;
|
|
70
|
+
if (og?.title)
|
|
71
|
+
$properties["og:title"] = og?.title;
|
|
72
|
+
if (og?.description)
|
|
73
|
+
$properties["og:description"] = og?.description;
|
|
74
|
+
if (og?.url)
|
|
75
|
+
$properties["og:url"] = og.url;
|
|
76
|
+
if (og?.type)
|
|
77
|
+
$properties["og:type"] = og.type.toLowerCase();
|
|
78
|
+
if (og?.locale)
|
|
79
|
+
$properties["og:locale"] = og.locale;
|
|
80
|
+
if (og?.site_name)
|
|
81
|
+
$properties["og:site_name"] = og.site_name;
|
|
82
|
+
const ogimage = og?.image || seo?.ogimage;
|
|
83
|
+
if (ogimage)
|
|
84
|
+
$properties["og:image"] = ogimage;
|
|
85
|
+
Object.keys($names).forEach((key) => {
|
|
86
|
+
render.push(_jsx("meta", { name: key, content: $names[key] }, key));
|
|
87
|
+
});
|
|
88
|
+
Object.keys($properties).forEach((key) => {
|
|
89
|
+
render.push(_jsx("meta", { property: key, content: $properties[key] }, key));
|
|
90
|
+
});
|
|
91
|
+
if (metaTags && metaTags.length > 0) {
|
|
92
|
+
metaTags.forEach((tag) => {
|
|
93
|
+
render.push(_jsx("meta", { ...tag }, `meta:${tag.keyOverride ?? tag.name ?? tag.property ?? tag.httpEquiv}`));
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
if (linkTags?.length) {
|
|
97
|
+
linkTags.forEach((tag) => {
|
|
98
|
+
render.push(_jsx("link", { ...tag }, `link${tag.keyOverride ?? tag.href}${tag.rel}`));
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
// TODO: alternates and canonical
|
|
102
|
+
// canonical = 'https://www.domain.com/';
|
|
103
|
+
// languageAlternates={[{
|
|
104
|
+
// hrefLang: 'en',
|
|
105
|
+
// href: 'https://www.domain.com/en',
|
|
106
|
+
// }]}
|
|
107
|
+
// <link rel="alternate" hreflang="x-default" href="https://www.domain.com/nl/">
|
|
108
|
+
// <link rel="alternate" hreflang="nl" href="https://www.domain.com/nl/">
|
|
109
|
+
// <link rel="alternate" hreflang="en" href="https://www.domain.com/en/">
|
|
110
|
+
return render;
|
|
111
|
+
};
|
package/Seo/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* Adapted from https://github.com/garmeeh/next-seo
|
|
5
|
+
*
|
|
6
|
+
* See also:
|
|
7
|
+
* - https://github.com/catnose99/next-head-seo
|
|
8
|
+
* - https://nextjs.org/docs/api-reference/next/head
|
|
9
|
+
*/
|
|
10
|
+
export * from "./helpers";
|
|
11
|
+
export * from "./Seo";
|
|
12
|
+
export * from "./SeoDefaults";
|
package/Seo/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* Adapted from https://github.com/garmeeh/next-seo
|
|
5
|
+
*
|
|
6
|
+
* See also:
|
|
7
|
+
* - https://github.com/catnose99/next-head-seo
|
|
8
|
+
* - https://nextjs.org/docs/api-reference/next/head
|
|
9
|
+
*/
|
|
10
|
+
export * from "./helpers";
|
|
11
|
+
export * from "./Seo";
|
|
12
|
+
export * from "./SeoDefaults";
|
package/Seo/package.json
ADDED
package/Theme/Theme.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @file
|
|
3
|
+
*
|
|
4
|
+
* Adapted from [next-themes](https://github.com/pacocoursey/next-themes)
|
|
5
|
+
*/
|
|
6
|
+
import React from "react";
|
|
7
|
+
declare type ValueObject = {
|
|
8
|
+
[themeName: string]: string;
|
|
9
|
+
};
|
|
10
|
+
export declare type UseThemeProps = {
|
|
11
|
+
/** List of all available theme names */
|
|
12
|
+
themes: string[];
|
|
13
|
+
/** Forced theme name for the current page */
|
|
14
|
+
forcedTheme?: string;
|
|
15
|
+
/** Update the theme */
|
|
16
|
+
setTheme: (theme: string) => void;
|
|
17
|
+
/** Active theme name */
|
|
18
|
+
theme?: string;
|
|
19
|
+
/** If `enableSystem` is true and the active theme is "system", this returns whether the system preference resolved to "dark" or "light". Otherwise, identical to `theme` */
|
|
20
|
+
resolvedTheme?: string;
|
|
21
|
+
/** If enableSystem is true, returns the System theme preference ("dark" or "light"), regardless what the active theme is */
|
|
22
|
+
systemTheme?: "dark" | "light";
|
|
23
|
+
};
|
|
24
|
+
export declare type ThemeProviderProps = React.PropsWithChildren<{
|
|
25
|
+
/** List of all available theme names */
|
|
26
|
+
themes?: string[];
|
|
27
|
+
/** Forced theme name for the current page */
|
|
28
|
+
forcedTheme?: string;
|
|
29
|
+
/** Whether to switch between dark and light themes based on prefers-color-scheme */
|
|
30
|
+
enableSystem?: boolean;
|
|
31
|
+
/** Disable all CSS transitions when switching themes */
|
|
32
|
+
disableTransitionOnChange?: boolean;
|
|
33
|
+
/** Whether to indicate to browsers which color scheme is used (dark or light) for built-in UI like inputs and buttons */
|
|
34
|
+
enableColorScheme?: boolean;
|
|
35
|
+
/** Default theme name (for v0.0.12 and lower the default was light). If `enableSystem` is false, the default theme is light */
|
|
36
|
+
defaultTheme?: string;
|
|
37
|
+
/** HTML attribute modified based on the active theme. Accepts `class` and `data-*` (meaning any data attribute, `data-mode`, `data-color`, etc.) */
|
|
38
|
+
attribute?: string | "class";
|
|
39
|
+
/** Mapping of theme name to HTML attribute value. Object where key is the theme name and value is the attribute value */
|
|
40
|
+
value?: ValueObject;
|
|
41
|
+
/** Nonce string to pass to the inline script for CSP headers */
|
|
42
|
+
nonce?: string;
|
|
43
|
+
}>;
|
|
44
|
+
export declare const useTheme: () => UseThemeProps;
|
|
45
|
+
export declare const ThemeProvider: ({ forcedTheme, disableTransitionOnChange, enableSystem, enableColorScheme, themes, defaultTheme, attribute, value, children, nonce, }: ThemeProviderProps) => JSX.Element;
|
|
46
|
+
export {};
|
package/Theme/Theme.js
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* @file
|
|
4
|
+
*
|
|
5
|
+
* Adapted from [next-themes](https://github.com/pacocoursey/next-themes)
|
|
6
|
+
*/
|
|
7
|
+
import { createContext, useCallback, useContext, useEffect, useState, memo, } from "react";
|
|
8
|
+
import NextScript from "next/script";
|
|
9
|
+
import { isServer } from "@koine/utils";
|
|
10
|
+
const THEME_STORAGE_KEY = "theme";
|
|
11
|
+
const colorSchemes = ["light", "dark"];
|
|
12
|
+
const MEDIA = "(prefers-color-scheme: dark)";
|
|
13
|
+
const ThemeContext = createContext({
|
|
14
|
+
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
15
|
+
setTheme: (_) => { },
|
|
16
|
+
themes: [],
|
|
17
|
+
});
|
|
18
|
+
export const useTheme = () => useContext(ThemeContext);
|
|
19
|
+
export const ThemeProvider = ({ forcedTheme, disableTransitionOnChange = false, enableSystem = true, enableColorScheme = true, themes = ["light", "dark"], defaultTheme = enableSystem ? "system" : "light", attribute = "data-theme", value, children, nonce, }) => {
|
|
20
|
+
const [theme, setThemeState] = useState(() => getTheme(THEME_STORAGE_KEY, defaultTheme));
|
|
21
|
+
const [resolvedTheme, setResolvedTheme] = useState(() => getTheme(THEME_STORAGE_KEY));
|
|
22
|
+
const attrs = !value ? themes : Object.values(value);
|
|
23
|
+
const applyTheme = useCallback((theme) => {
|
|
24
|
+
let resolved = theme;
|
|
25
|
+
if (isServer || !resolved)
|
|
26
|
+
return;
|
|
27
|
+
// If theme is system, resolve it before setting theme
|
|
28
|
+
if (theme === "system" && enableSystem) {
|
|
29
|
+
resolved = getSystemTheme();
|
|
30
|
+
}
|
|
31
|
+
const name = value ? value[resolved] : resolved;
|
|
32
|
+
const enable = disableTransitionOnChange ? disableAnimation() : null;
|
|
33
|
+
const d = document.documentElement;
|
|
34
|
+
if (attribute === "class") {
|
|
35
|
+
d.classList.remove(...attrs);
|
|
36
|
+
if (name)
|
|
37
|
+
d.classList.add(name);
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
if (name) {
|
|
41
|
+
d.setAttribute(attribute, name);
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
d.removeAttribute(attribute);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
if (enableColorScheme) {
|
|
48
|
+
const fallback = colorSchemes.includes(defaultTheme)
|
|
49
|
+
? defaultTheme
|
|
50
|
+
: "";
|
|
51
|
+
const colorScheme = colorSchemes.includes(resolved)
|
|
52
|
+
? resolved
|
|
53
|
+
: fallback;
|
|
54
|
+
d.style.colorScheme = colorScheme;
|
|
55
|
+
}
|
|
56
|
+
enable?.();
|
|
57
|
+
}, [
|
|
58
|
+
attribute,
|
|
59
|
+
attrs,
|
|
60
|
+
defaultTheme,
|
|
61
|
+
disableTransitionOnChange,
|
|
62
|
+
enableColorScheme,
|
|
63
|
+
enableSystem,
|
|
64
|
+
value,
|
|
65
|
+
]);
|
|
66
|
+
const setTheme = useCallback((theme) => {
|
|
67
|
+
setThemeState(theme);
|
|
68
|
+
// Save to storage
|
|
69
|
+
try {
|
|
70
|
+
localStorage.setItem(THEME_STORAGE_KEY, theme);
|
|
71
|
+
}
|
|
72
|
+
catch (e) {
|
|
73
|
+
// Unsupported
|
|
74
|
+
}
|
|
75
|
+
}, []);
|
|
76
|
+
const handleMediaQuery = useCallback((e) => {
|
|
77
|
+
const resolved = getSystemTheme(e);
|
|
78
|
+
setResolvedTheme(resolved);
|
|
79
|
+
if (theme === "system" && enableSystem && !forcedTheme) {
|
|
80
|
+
applyTheme("system");
|
|
81
|
+
}
|
|
82
|
+
}, [theme, enableSystem, forcedTheme, applyTheme]);
|
|
83
|
+
// Always listen to System preference
|
|
84
|
+
useEffect(() => {
|
|
85
|
+
const media = window.matchMedia(MEDIA);
|
|
86
|
+
// Intentionally use deprecated listener methods to support iOS & old browsers
|
|
87
|
+
media.addListener(handleMediaQuery);
|
|
88
|
+
handleMediaQuery(media);
|
|
89
|
+
return () => media.removeListener(handleMediaQuery);
|
|
90
|
+
}, [handleMediaQuery]);
|
|
91
|
+
// localStorage event handling
|
|
92
|
+
useEffect(() => {
|
|
93
|
+
const handleStorage = (e) => {
|
|
94
|
+
if (e.key !== THEME_STORAGE_KEY) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
// If default theme set, use it if localstorage === null (happens on local storage manual deletion)
|
|
98
|
+
const theme = e.newValue || defaultTheme;
|
|
99
|
+
setTheme(theme);
|
|
100
|
+
};
|
|
101
|
+
window.addEventListener("storage", handleStorage);
|
|
102
|
+
return () => window.removeEventListener("storage", handleStorage);
|
|
103
|
+
}, [defaultTheme, setTheme]);
|
|
104
|
+
// Whenever theme or forcedTheme changes, apply it
|
|
105
|
+
useEffect(() => {
|
|
106
|
+
applyTheme(forcedTheme ?? theme);
|
|
107
|
+
}, [applyTheme, forcedTheme, theme]);
|
|
108
|
+
return (_jsxs(ThemeContext.Provider, { value: {
|
|
109
|
+
theme,
|
|
110
|
+
setTheme,
|
|
111
|
+
forcedTheme,
|
|
112
|
+
resolvedTheme: theme === "system" ? resolvedTheme : theme,
|
|
113
|
+
themes: enableSystem ? [...themes, "system"] : themes,
|
|
114
|
+
systemTheme: (enableSystem ? resolvedTheme : undefined),
|
|
115
|
+
}, children: [_jsx(ThemeScript, { ...{
|
|
116
|
+
forcedTheme,
|
|
117
|
+
disableTransitionOnChange,
|
|
118
|
+
enableSystem,
|
|
119
|
+
enableColorScheme,
|
|
120
|
+
themes,
|
|
121
|
+
defaultTheme,
|
|
122
|
+
attribute,
|
|
123
|
+
value,
|
|
124
|
+
children,
|
|
125
|
+
attrs,
|
|
126
|
+
nonce,
|
|
127
|
+
} }), children] }));
|
|
128
|
+
};
|
|
129
|
+
const ThemeScript = memo(({ forcedTheme, attribute, enableSystem, enableColorScheme, defaultTheme, value, attrs, nonce, }) => {
|
|
130
|
+
const defaultSystem = defaultTheme === "system";
|
|
131
|
+
// Code-golfing the amount of characters in the script
|
|
132
|
+
const optimization = (() => {
|
|
133
|
+
const removeClasses = `d.remove(${attrs
|
|
134
|
+
.map((t) => `'${t}'`)
|
|
135
|
+
.join(",")})`;
|
|
136
|
+
return `var d=document.documentElement.classList;${removeClasses};`;
|
|
137
|
+
})();
|
|
138
|
+
const fallbackColorScheme = (() => {
|
|
139
|
+
if (!enableColorScheme) {
|
|
140
|
+
return "";
|
|
141
|
+
}
|
|
142
|
+
const fallback = colorSchemes.includes(defaultTheme)
|
|
143
|
+
? defaultTheme
|
|
144
|
+
: null;
|
|
145
|
+
if (fallback) {
|
|
146
|
+
return `if(e==='light'||e==='dark'||!e)d.style.colorScheme=e||'${defaultTheme}'`;
|
|
147
|
+
}
|
|
148
|
+
else {
|
|
149
|
+
return `if(e==='light'||e==='dark')d.style.colorScheme=e`;
|
|
150
|
+
}
|
|
151
|
+
})();
|
|
152
|
+
const updateDOM = (name, literal = false, setColorScheme = true) => {
|
|
153
|
+
const resolvedName = value ? value[name] : name;
|
|
154
|
+
const val = literal ? name + `|| ''` : `'${resolvedName}'`;
|
|
155
|
+
let text = "";
|
|
156
|
+
// MUCH faster to set colorScheme alongside HTML attribute/class
|
|
157
|
+
// as it only incurs 1 style recalculation rather than 2
|
|
158
|
+
// This can save over 250ms of work for pages with big DOM
|
|
159
|
+
if (enableColorScheme &&
|
|
160
|
+
setColorScheme &&
|
|
161
|
+
!literal &&
|
|
162
|
+
colorSchemes.includes(name)) {
|
|
163
|
+
text += `d.style.colorScheme = '${name}';`;
|
|
164
|
+
}
|
|
165
|
+
if (attribute === "class") {
|
|
166
|
+
if (literal || resolvedName) {
|
|
167
|
+
text += `d.add(${val})`;
|
|
168
|
+
}
|
|
169
|
+
else {
|
|
170
|
+
text += `null`;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
else {
|
|
174
|
+
if (resolvedName) {
|
|
175
|
+
text += `d[s](n, ${val})`;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return text;
|
|
179
|
+
};
|
|
180
|
+
const scriptSrc = (() => {
|
|
181
|
+
if (forcedTheme) {
|
|
182
|
+
return `!function(){${optimization}${updateDOM(forcedTheme)}}()`;
|
|
183
|
+
}
|
|
184
|
+
if (enableSystem) {
|
|
185
|
+
return `!function(){try {${optimization}var e=localStorage.getItem('${THEME_STORAGE_KEY}');if("system"===e||(!e&&${defaultSystem})){var t="${MEDIA}",m=window.matchMedia(t);if(m.media!==t||m.matches){${updateDOM("dark")}}else{${updateDOM("light")}}}else if(e){${value ? `var x=${JSON.stringify(value)};` : ""}${updateDOM(value ? `x[e]` : "e", true)}}${!defaultSystem
|
|
186
|
+
? `else{` + updateDOM(defaultTheme, false, false) + "}"
|
|
187
|
+
: ""}${fallbackColorScheme}}catch(e){}}()`;
|
|
188
|
+
}
|
|
189
|
+
return `!function(){try{${optimization}var e=localStorage.getItem("${THEME_STORAGE_KEY}");if(e){${value ? `var x=${JSON.stringify(value)};` : ""}${updateDOM(value ? `x[e]` : "e", true)}}else{${updateDOM(defaultTheme, false, false)};}${fallbackColorScheme}}catch(t){}}();`;
|
|
190
|
+
})();
|
|
191
|
+
// We MUST use next/script's `beforeInteractive` strategy to avoid flashing on load.
|
|
192
|
+
// However, it only accepts the `src` prop, not `dangerouslySetInnerHTML` or `children`
|
|
193
|
+
// But our script cannot be external because it changes at runtime based on React props
|
|
194
|
+
// so we trick next/script by passing `src` as a base64 JS script
|
|
195
|
+
const encodedScript = `data:text/javascript;base64,${encodeBase64(scriptSrc)}`;
|
|
196
|
+
return (_jsx(NextScript, { id: "next-theme-script", strategy: "beforeInteractive", src: encodedScript, nonce: nonce }));
|
|
197
|
+
},
|
|
198
|
+
// Never re-render this component
|
|
199
|
+
() => true);
|
|
200
|
+
// Helpers
|
|
201
|
+
const getTheme = (key, fallback) => {
|
|
202
|
+
if (isServer)
|
|
203
|
+
return undefined;
|
|
204
|
+
let theme;
|
|
205
|
+
try {
|
|
206
|
+
theme = localStorage.getItem(key) || undefined;
|
|
207
|
+
}
|
|
208
|
+
catch (e) {
|
|
209
|
+
// Unsupported
|
|
210
|
+
}
|
|
211
|
+
return theme || fallback;
|
|
212
|
+
};
|
|
213
|
+
const disableAnimation = () => {
|
|
214
|
+
const css = document.createElement("style");
|
|
215
|
+
css.appendChild(document.createTextNode(`*{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}`));
|
|
216
|
+
document.head.appendChild(css);
|
|
217
|
+
return () => {
|
|
218
|
+
// Force restyle
|
|
219
|
+
(() => window.getComputedStyle(document.body))();
|
|
220
|
+
// Wait for next tick before removing
|
|
221
|
+
setTimeout(() => {
|
|
222
|
+
document.head.removeChild(css);
|
|
223
|
+
}, 1);
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
const getSystemTheme = (e) => {
|
|
227
|
+
if (!e)
|
|
228
|
+
e = window.matchMedia(MEDIA);
|
|
229
|
+
const isDark = e.matches;
|
|
230
|
+
const systemTheme = isDark ? "dark" : "light";
|
|
231
|
+
return systemTheme;
|
|
232
|
+
};
|
|
233
|
+
const encodeBase64 = (str) => {
|
|
234
|
+
return isServer ? Buffer.from(str).toString("base64") : btoa(str);
|
|
235
|
+
};
|
package/Theme/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Theme";
|
package/Theme/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Theme";
|
package/app/AppHead.d.ts
ADDED