@mbao01/common 0.6.4 → 0.7.0
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/types/components/Badge/Badge.d.ts +1 -1
- package/dist/types/components/Badge/constants.d.ts +1 -0
- package/dist/types/components/Chart/helpers.d.ts +1 -1
- package/dist/types/components/Form/DatetimeInput/DatetimeInput.d.ts +1 -0
- package/dist/types/components/ThemeSwitch/ThemeSwitch.d.ts +1 -1
- package/dist/types/components/ThemeSwitch/constants.d.ts +7 -1
- package/dist/types/components/ThemeSwitch/types.d.ts +13 -2
- package/dist/types/utilities/theme.d.ts +1 -1
- package/package.json +29 -29
- package/src/components/Badge/Badge.tsx +10 -2
- package/src/components/Badge/constants.ts +3 -15
- package/src/components/Chart/helpers.ts +1 -1
- package/src/components/ThemeSwitch/ThemeSwitch.tsx +63 -44
- package/src/components/ThemeSwitch/constants.ts +34 -1
- package/src/components/ThemeSwitch/types.ts +14 -2
- package/src/utilities/theme.ts +14 -4
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BadgeProps } from './types';
|
|
2
|
-
export declare const Badge: ({ size, outline, rounded, variant, className, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const Badge: ({ size, outline, rounded, variant, soft, className, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const getBadgeClasses: (props?: ({
|
|
2
2
|
variant?: "accent" | "error" | "ghost" | "info" | "neutral" | "primary" | "secondary" | "success" | "warning" | null | undefined;
|
|
3
|
+
soft?: boolean | null | undefined;
|
|
3
4
|
outline?: boolean | null | undefined;
|
|
4
5
|
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
5
6
|
rounded?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NameType, Payload as TooltipPayload, ValueType } from 'recharts/types/component/DefaultTooltipContent';
|
|
2
2
|
import { LegendPayload } from 'recharts';
|
|
3
3
|
import { ChartConfig } from './types';
|
|
4
|
-
export declare const getPayloadConfigFromPayload: (config: ChartConfig, payload: LegendPayload | TooltipPayload<ValueType, NameType>, key: string) => ({
|
|
4
|
+
export declare const getPayloadConfigFromPayload: (config: ChartConfig, payload: LegendPayload | Omit<TooltipPayload<ValueType, NameType>, "graphicalItemId">, key: string) => ({
|
|
5
5
|
label?: import('react').ReactNode;
|
|
6
6
|
icon?: import('react').ComponentType;
|
|
7
7
|
} & ({
|
|
@@ -56,6 +56,7 @@ export declare const DatetimeInput: import('react').ForwardRefExoticComponent<{
|
|
|
56
56
|
broadcastCalendar?: boolean | undefined;
|
|
57
57
|
ISOWeek?: boolean | undefined;
|
|
58
58
|
timeZone?: string | undefined | undefined;
|
|
59
|
+
noonSafe?: boolean | undefined | undefined;
|
|
59
60
|
components?: Partial<import('react-day-picker').CustomComponents> | undefined;
|
|
60
61
|
initialFocus?: boolean | undefined;
|
|
61
62
|
today?: Date | undefined;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { ThemeSwitchProps } from './types';
|
|
2
|
-
export declare const ThemeSwitch: ({
|
|
2
|
+
export declare const ThemeSwitch: ({ swap, render, className, theme: defaultTheme, }: ThemeSwitchProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
export declare const getThemeSwitchClasses: (props?:
|
|
1
|
+
export declare const getThemeSwitchClasses: (props?: ({
|
|
2
|
+
swap?: boolean | null | undefined;
|
|
3
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
4
|
+
export declare const getThemeSwitchIconClasses: (props?: ({
|
|
5
|
+
isActive?: boolean | null | undefined;
|
|
6
|
+
swap?: boolean | null | undefined;
|
|
7
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import { Theme } from '../../utilities';
|
|
2
|
-
export type
|
|
3
|
-
|
|
2
|
+
export type SwitchProps = {
|
|
3
|
+
id: string;
|
|
4
|
+
icon: React.ReactNode;
|
|
5
|
+
swap?: boolean;
|
|
6
|
+
label: string;
|
|
7
|
+
value: Theme | null;
|
|
8
|
+
theme: Theme | null;
|
|
9
|
+
className?: string;
|
|
10
|
+
changeTheme: (theme: Theme | null) => void;
|
|
11
|
+
};
|
|
12
|
+
export type ThemeSwitchProps = {
|
|
13
|
+
swap?: boolean;
|
|
4
14
|
theme?: Theme;
|
|
15
|
+
className?: string;
|
|
5
16
|
render?: (params: {
|
|
6
17
|
theme: Theme | null;
|
|
7
18
|
setTheme: React.Dispatch<React.SetStateAction<Theme | null>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export type Theme = "dark" | "light";
|
|
2
2
|
export declare const THEME_COOKIE_NAME = "data-theme";
|
|
3
3
|
export declare const getTheme: () => Theme | null;
|
|
4
|
-
export declare const saveTheme: (theme: Theme) =>
|
|
4
|
+
export declare const saveTheme: (theme: Theme | null) => null | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbao01/common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Ayomide Bakare",
|
|
7
7
|
"license": "MIT",
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"cmdk": "^1.1.1",
|
|
100
100
|
"date-fns": "^4.1.0",
|
|
101
101
|
"embla-carousel-react": "^8.6.0",
|
|
102
|
-
"lucide-react": "^0.
|
|
103
|
-
"react-day-picker": "^9.
|
|
102
|
+
"lucide-react": "^0.562.0",
|
|
103
|
+
"react-day-picker": "^9.13.0",
|
|
104
104
|
"react-dropzone": "^14.3.8",
|
|
105
105
|
"react-international-phone": "^4.6.1",
|
|
106
106
|
"react-otp-input": "^3.1.1",
|
|
@@ -112,51 +112,51 @@
|
|
|
112
112
|
"vaul": "^1.1.2"
|
|
113
113
|
},
|
|
114
114
|
"devDependencies": {
|
|
115
|
-
"@eslint/js": "^9.39.
|
|
115
|
+
"@eslint/js": "^9.39.2",
|
|
116
116
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
117
|
-
"@storybook/addon-a11y": "^10.1.
|
|
117
|
+
"@storybook/addon-a11y": "^10.1.11",
|
|
118
118
|
"@storybook/addon-coverage": "^3.0.0",
|
|
119
|
-
"@storybook/addon-docs": "^10.1.
|
|
120
|
-
"@storybook/addon-links": "^10.1.
|
|
121
|
-
"@storybook/addon-onboarding": "^10.1.
|
|
122
|
-
"@storybook/addon-themes": "^10.1.
|
|
123
|
-
"@storybook/react-vite": "^10.1.
|
|
119
|
+
"@storybook/addon-docs": "^10.1.11",
|
|
120
|
+
"@storybook/addon-links": "^10.1.11",
|
|
121
|
+
"@storybook/addon-onboarding": "^10.1.11",
|
|
122
|
+
"@storybook/addon-themes": "^10.1.11",
|
|
123
|
+
"@storybook/react-vite": "^10.1.11",
|
|
124
124
|
"@storybook/test-runner": "^0.24.2",
|
|
125
|
-
"@tailwindcss/postcss": "^4.1.
|
|
126
|
-
"@tailwindcss/vite": "^4.1.
|
|
125
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
126
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
127
127
|
"@testing-library/jest-dom": "^6.9.1",
|
|
128
|
-
"@testing-library/react": "^16.3.
|
|
128
|
+
"@testing-library/react": "^16.3.1",
|
|
129
129
|
"@testing-library/user-event": "^14.6.1",
|
|
130
130
|
"@types/jest-image-snapshot": "^6.4.0",
|
|
131
|
-
"@types/node": "^25.0.
|
|
131
|
+
"@types/node": "^25.0.3",
|
|
132
132
|
"@types/react": "^19.2.7",
|
|
133
133
|
"@types/react-dom": "^19.2.3",
|
|
134
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
135
|
-
"@typescript-eslint/parser": "^8.
|
|
134
|
+
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
135
|
+
"@typescript-eslint/parser": "^8.51.0",
|
|
136
136
|
"@vitejs/plugin-react": "^5.1.2",
|
|
137
137
|
"@vitest/coverage-v8": "^3.2.4",
|
|
138
138
|
"@vitest/ui": "^3.2.4",
|
|
139
139
|
"axe-playwright": "^2.2.2",
|
|
140
|
-
"daisyui": "^5.5.
|
|
141
|
-
"eslint": "^9.39.
|
|
140
|
+
"daisyui": "^5.5.14",
|
|
141
|
+
"eslint": "^9.39.2",
|
|
142
142
|
"eslint-plugin-react": "^7.37.5",
|
|
143
143
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
144
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
145
|
-
"eslint-plugin-storybook": "^10.1.
|
|
144
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
145
|
+
"eslint-plugin-storybook": "^10.1.11",
|
|
146
146
|
"globals": "^16.5.0",
|
|
147
147
|
"jest-image-snapshot": "^6.5.1",
|
|
148
|
-
"jsdom": "^27.
|
|
148
|
+
"jsdom": "^27.4.0",
|
|
149
149
|
"path": "^0.12.7",
|
|
150
150
|
"postcss": "^8.5.6",
|
|
151
151
|
"prettier": "^3.7.4",
|
|
152
|
-
"react": "^19.2.
|
|
153
|
-
"react-dom": "^19.2.
|
|
154
|
-
"react-router-dom": "^7.
|
|
155
|
-
"recharts": "^3.
|
|
156
|
-
"storybook": "^10.1.
|
|
157
|
-
"tailwindcss": "^4.1.
|
|
152
|
+
"react": "^19.2.3",
|
|
153
|
+
"react-dom": "^19.2.3",
|
|
154
|
+
"react-router-dom": "^7.11.0",
|
|
155
|
+
"recharts": "^3.6.0",
|
|
156
|
+
"storybook": "^10.1.11",
|
|
157
|
+
"tailwindcss": "^4.1.18",
|
|
158
158
|
"typescript": "^5.9.3",
|
|
159
|
-
"typescript-eslint": "^8.
|
|
159
|
+
"typescript-eslint": "^8.51.0",
|
|
160
160
|
"vite": "^6.4.1",
|
|
161
161
|
"vite-plugin-dts": "^4.5.4",
|
|
162
162
|
"vitest": "^3.2.4"
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"recharts": "2",
|
|
169
169
|
"typescript": "5"
|
|
170
170
|
},
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "412b7c47a5fe2f7fc7e8e17255b6df1dbb3428b5"
|
|
172
172
|
}
|
|
@@ -2,10 +2,18 @@ import { cn } from "../../utilities";
|
|
|
2
2
|
import { getBadgeClasses } from "./constants";
|
|
3
3
|
import { type BadgeProps } from "./types";
|
|
4
4
|
|
|
5
|
-
export const Badge = ({
|
|
5
|
+
export const Badge = ({
|
|
6
|
+
size,
|
|
7
|
+
outline,
|
|
8
|
+
rounded,
|
|
9
|
+
variant,
|
|
10
|
+
soft,
|
|
11
|
+
className,
|
|
12
|
+
...props
|
|
13
|
+
}: BadgeProps) => {
|
|
6
14
|
return (
|
|
7
15
|
<span
|
|
8
|
-
className={cn(getBadgeClasses({ size, variant, outline, rounded }), className)}
|
|
16
|
+
className={cn(getBadgeClasses({ size, variant, outline, rounded, soft }), className)}
|
|
9
17
|
{...props}
|
|
10
18
|
/>
|
|
11
19
|
);
|
|
@@ -14,6 +14,9 @@ export const getBadgeClasses = cva("badge", {
|
|
|
14
14
|
success: "badge-success",
|
|
15
15
|
warning: "badge-warning",
|
|
16
16
|
},
|
|
17
|
+
soft: {
|
|
18
|
+
true: "badge-soft",
|
|
19
|
+
},
|
|
17
20
|
outline: {
|
|
18
21
|
true: "badge-outline",
|
|
19
22
|
},
|
|
@@ -30,21 +33,6 @@ export const getBadgeClasses = cva("badge", {
|
|
|
30
33
|
lg: "rounded-lg",
|
|
31
34
|
},
|
|
32
35
|
}),
|
|
33
|
-
compoundVariants: [
|
|
34
|
-
{
|
|
35
|
-
size: undefined,
|
|
36
|
-
className: "text-xs",
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
rounded: undefined,
|
|
40
|
-
className: "rounded-md",
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
variant: "ghost",
|
|
44
|
-
outline: true,
|
|
45
|
-
className: "border-base-300",
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
36
|
defaultVariants: {
|
|
49
37
|
variant: "ghost",
|
|
50
38
|
},
|
|
@@ -9,7 +9,7 @@ import { type ChartConfig } from "./types";
|
|
|
9
9
|
// Helper to extract item config from a payload.
|
|
10
10
|
export const getPayloadConfigFromPayload = (
|
|
11
11
|
config: ChartConfig,
|
|
12
|
-
payload: LegendPayload | TooltipPayload<ValueType, NameType>,
|
|
12
|
+
payload: LegendPayload | Omit<TooltipPayload<ValueType, NameType>, "graphicalItemId">,
|
|
13
13
|
key: string
|
|
14
14
|
) => {
|
|
15
15
|
if (typeof payload !== "object" || payload === null) {
|
|
@@ -1,69 +1,88 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
|
-
import type { ChangeEvent } from "react";
|
|
4
3
|
import { useLayoutEffect, useState } from "react";
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
4
|
+
import { MonitorIcon, MoonIcon, SunIcon } from "lucide-react";
|
|
5
|
+
import type { SwitchProps, ThemeSwitchProps } from "./types";
|
|
6
|
+
import { cn, getTheme, saveTheme, Theme } from "../../utilities";
|
|
7
|
+
import { getThemeSwitchClasses, getThemeSwitchIconClasses } from "./constants";
|
|
8
8
|
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
className="swap-on h-4 w-4 fill-current"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
viewBox="0 0 24 24"
|
|
14
|
-
>
|
|
15
|
-
{title && <title>{title}</title>}
|
|
16
|
-
<path d="M21.64,13a1,1,0,0,0-1.05-.14,8.05,8.05,0,0,1-3.37.73A8.15,8.15,0,0,1,9.08,5.49a8.59,8.59,0,0,1,.25-2A1,1,0,0,0,8,2.36,10.14,10.14,0,1,0,22,14.05,1,1,0,0,0,21.64,13Zm-9.5,6.69A8.14,8.14,0,0,1,7.08,5.22v.27A10.15,10.15,0,0,0,17.22,15.63a9.79,9.79,0,0,0,2.1-.22A8.11,8.11,0,0,1,12.14,19.73Z" />
|
|
17
|
-
</svg>
|
|
18
|
-
);
|
|
9
|
+
const Switcher = ({ id, icon, swap, value, label, theme, changeTheme, className }: SwitchProps) => {
|
|
10
|
+
const isActive = theme === value;
|
|
19
11
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
12
|
+
return (
|
|
13
|
+
<span
|
|
14
|
+
className={cn("h-full", {
|
|
15
|
+
hidden: swap && isActive,
|
|
16
|
+
})}
|
|
17
|
+
>
|
|
18
|
+
<input
|
|
19
|
+
hidden
|
|
20
|
+
id={id}
|
|
21
|
+
role="checkbox"
|
|
22
|
+
type="checkbox"
|
|
23
|
+
className="theme-controller"
|
|
24
|
+
checked={isActive}
|
|
25
|
+
onChange={() => changeTheme(value)}
|
|
26
|
+
/>
|
|
27
|
+
<label htmlFor={id} className={cn(getThemeSwitchIconClasses({ isActive, swap }), className)}>
|
|
28
|
+
<span className="sr-only">{label}</span>
|
|
29
|
+
{icon}
|
|
30
|
+
</label>
|
|
31
|
+
</span>
|
|
32
|
+
);
|
|
33
|
+
};
|
|
31
34
|
|
|
32
35
|
export const ThemeSwitch = ({
|
|
33
|
-
|
|
36
|
+
swap = false,
|
|
34
37
|
render,
|
|
35
38
|
className,
|
|
36
39
|
theme: defaultTheme,
|
|
37
|
-
...props
|
|
38
40
|
}: ThemeSwitchProps) => {
|
|
39
|
-
const [theme, setTheme] = useState(defaultTheme ?? getTheme);
|
|
41
|
+
const [theme, setTheme] = useState(() => defaultTheme ?? getTheme());
|
|
40
42
|
|
|
41
43
|
useLayoutEffect(() => {
|
|
42
|
-
|
|
44
|
+
saveTheme(theme);
|
|
43
45
|
}, [theme]);
|
|
44
46
|
|
|
45
47
|
if (render) {
|
|
46
48
|
return render({ theme, setTheme });
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
const changeTheme = (
|
|
50
|
-
|
|
51
|
-
setTheme(t);
|
|
51
|
+
const changeTheme = (theme: Theme | null) => {
|
|
52
|
+
setTheme(theme);
|
|
52
53
|
};
|
|
53
54
|
|
|
54
55
|
return (
|
|
55
|
-
<
|
|
56
|
-
{
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
56
|
+
<fieldset className={cn(getThemeSwitchClasses({ swap }), className)}>
|
|
57
|
+
{!swap && (
|
|
58
|
+
<Switcher
|
|
59
|
+
id="system"
|
|
60
|
+
swap={swap}
|
|
61
|
+
icon={<MonitorIcon className="h-3.5 w-3.5 shrink-0" />}
|
|
62
|
+
label="Switch to system theme"
|
|
63
|
+
value={null}
|
|
64
|
+
theme={theme}
|
|
65
|
+
changeTheme={changeTheme}
|
|
66
|
+
/>
|
|
67
|
+
)}
|
|
68
|
+
<Switcher
|
|
69
|
+
id="dark"
|
|
70
|
+
swap={swap}
|
|
71
|
+
icon={<MoonIcon className="h-3.5 w-3.5 shrink-0" />}
|
|
72
|
+
label="Switch to dark theme"
|
|
73
|
+
value="dark"
|
|
74
|
+
theme={theme}
|
|
75
|
+
changeTheme={changeTheme}
|
|
76
|
+
/>
|
|
77
|
+
<Switcher
|
|
78
|
+
id="light"
|
|
79
|
+
swap={swap}
|
|
80
|
+
icon={<SunIcon className="h-3.5 w-3.5 shrink-0" />}
|
|
81
|
+
label="Switch to light theme"
|
|
82
|
+
value="light"
|
|
83
|
+
theme={theme}
|
|
84
|
+
changeTheme={changeTheme}
|
|
64
85
|
/>
|
|
65
|
-
|
|
66
|
-
<SunIcon title="Switch to light theme" />
|
|
67
|
-
</label>
|
|
86
|
+
</fieldset>
|
|
68
87
|
);
|
|
69
88
|
};
|
|
@@ -1,3 +1,36 @@
|
|
|
1
1
|
import { cva } from "../../libs";
|
|
2
2
|
|
|
3
|
-
export const getThemeSwitchClasses = cva("
|
|
3
|
+
export const getThemeSwitchClasses = cva("", {
|
|
4
|
+
variants: {
|
|
5
|
+
swap: {
|
|
6
|
+
false:
|
|
7
|
+
"flex flex-row items-center justify-around h-6 w-18 border border-base-content/10 rounded-full",
|
|
8
|
+
},
|
|
9
|
+
},
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
export const getThemeSwitchIconClasses = cva(
|
|
13
|
+
"cursor-pointer text-base-content/40 hover:text-base-content transition-colors",
|
|
14
|
+
{
|
|
15
|
+
variants: {
|
|
16
|
+
isActive: {
|
|
17
|
+
true: "rounded-[9999px] outline outline-1 outline-base-content/10",
|
|
18
|
+
},
|
|
19
|
+
swap: {
|
|
20
|
+
false: "flex items-center justify-center w-6 h-full",
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
compoundVariants: [
|
|
24
|
+
{
|
|
25
|
+
swap: false,
|
|
26
|
+
isActive: true,
|
|
27
|
+
className: "text-base-content",
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
swap: true,
|
|
31
|
+
isActive: false,
|
|
32
|
+
className: "text-base-content",
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
}
|
|
36
|
+
);
|
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
import { type Theme } from "../../utilities";
|
|
2
2
|
|
|
3
|
-
export type
|
|
4
|
-
|
|
3
|
+
export type SwitchProps = {
|
|
4
|
+
id: string;
|
|
5
|
+
icon: React.ReactNode;
|
|
6
|
+
swap?: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
value: Theme | null;
|
|
9
|
+
theme: Theme | null;
|
|
10
|
+
className?: string;
|
|
11
|
+
changeTheme: (theme: Theme | null) => void;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export type ThemeSwitchProps = {
|
|
15
|
+
swap?: boolean;
|
|
5
16
|
theme?: Theme;
|
|
17
|
+
className?: string;
|
|
6
18
|
render?: (params: {
|
|
7
19
|
theme: Theme | null;
|
|
8
20
|
setTheme: React.Dispatch<React.SetStateAction<Theme | null>>;
|
package/src/utilities/theme.ts
CHANGED
|
@@ -4,16 +4,26 @@ export type Theme = "dark" | "light";
|
|
|
4
4
|
|
|
5
5
|
export const THEME_COOKIE_NAME = "data-theme";
|
|
6
6
|
|
|
7
|
+
const getSystemTheme = () => {
|
|
8
|
+
if (typeof window === "undefined") return null;
|
|
9
|
+
|
|
10
|
+
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
|
|
11
|
+
return prefersDark ? "dark" : "light";
|
|
12
|
+
};
|
|
13
|
+
|
|
7
14
|
export const getTheme = () => {
|
|
8
15
|
if (typeof window === "undefined") return null;
|
|
9
16
|
|
|
10
17
|
const cookies = new Cookies();
|
|
11
|
-
const theme = cookies.get(THEME_COOKIE_NAME) as Theme;
|
|
18
|
+
const theme = (cookies.get(THEME_COOKIE_NAME) ?? getSystemTheme()) as Theme | null;
|
|
12
19
|
return theme;
|
|
13
20
|
};
|
|
14
21
|
|
|
15
|
-
export const saveTheme = (theme: Theme) => {
|
|
22
|
+
export const saveTheme = (theme: Theme | null) => {
|
|
23
|
+
const newTheme = theme ?? getSystemTheme();
|
|
24
|
+
if (!newTheme) return null;
|
|
25
|
+
|
|
16
26
|
const cookies = new Cookies();
|
|
17
|
-
cookies.set(THEME_COOKIE_NAME,
|
|
18
|
-
document.body.setAttribute(THEME_COOKIE_NAME,
|
|
27
|
+
cookies.set(THEME_COOKIE_NAME, newTheme, { path: "/", secure: true });
|
|
28
|
+
document.body.setAttribute(THEME_COOKIE_NAME, newTheme);
|
|
19
29
|
};
|