c063 1.4.1 → 1.4.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.
@@ -11,7 +11,9 @@ import { CodeLine } from "./CodeLine";
11
11
  * @returns JSX 元素,呈現語法高亮的程式碼區塊
12
12
  */
13
13
  export const CodeBlock = ({ tokenLines, showLineNumbers = true, lineNumberStyle, theme, ...rest }) => {
14
- return (_jsx("pre", { ...rest, children: tokenLines.map((line, index) => (_jsxs("div", { style: {
14
+ return (_jsx("pre", { ...rest, children: tokenLines.map((line, index) => (
15
+ // eslint-disable-next-line react/react-in-jsx-scope
16
+ _jsxs("div", { style: {
15
17
  display: "flex",
16
18
  flexWrap: "nowrap",
17
19
  width: "100%",
@@ -1,6 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- import { useLayoutEffect, useState } from "react";
3
- import { loadTheme } from "../utils/theme";
2
+ import { themeMap } from "../libs/index";
4
3
  /**
5
4
  * 渲染單一語法 token(例如關鍵字、字串、註解等),可指定標籤與樣式。
6
5
  *
@@ -14,16 +13,8 @@ import { loadTheme } from "../utils/theme";
14
13
  */
15
14
  export const CodeToken = ({ as, style, children, type, theme, ...rest }) => {
16
15
  const Tag = as || "span";
17
- const [currTheme, setCurrTheme] = useState(null);
18
- useLayoutEffect(() => {
19
- if (theme) {
20
- loadTheme(theme).then((res) => setCurrTheme(res));
21
- }
22
- }, [theme]);
23
- return (
24
- // eslint-disable-next-line react/react-in-jsx-scope
25
- _jsx(Tag, { ...rest, style: {
26
- color: (currTheme === null || currTheme === void 0 ? void 0 : currTheme[type || "default"]) || undefined,
16
+ return (_jsx(Tag, { ...rest, style: {
17
+ color: themeMap[theme || "default-dark-modern"][type || "default"],
27
18
  ...style,
28
19
  }, children: children }));
29
20
  };
@@ -1,2 +1,19 @@
1
- export declare const themes: readonly ["default-dark-modern", "default-dark", "default-dark-plus", "visual-studio-light", "default-light-plus", "default-light-modern", "github-light", "github-light-default", "github-light-colorblind", "github-dark", "github-dark-default", "github-dark-colorblind"];
1
+ import type { CodeTokenType, CodeTheme } from "../types";
2
+ declare const _themeRegistry: {
3
+ readonly "default-dark-modern": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
4
+ readonly "default-dark": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
5
+ readonly "default-dark-plus": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
6
+ readonly "visual-studio-light": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
7
+ readonly "default-light-plus": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
8
+ readonly "default-light-modern": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
9
+ readonly "github-light": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
10
+ readonly "github-light-default": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
11
+ readonly "github-light-colorblind": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
12
+ readonly "github-dark": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
13
+ readonly "github-dark-default": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
14
+ readonly "github-dark-colorblind": Record<CodeTokenType, import("csstype").Property.Color | undefined>;
15
+ };
16
+ export declare const themes: (keyof typeof _themeRegistry)[];
17
+ export declare const themeMap: Record<CodeTheme, Record<CodeTokenType, React.CSSProperties["color"]>>;
2
18
  export declare const parsableLanguages: readonly ["javascript"];
19
+ export {};
@@ -1,15 +1,31 @@
1
- export const themes = [
2
- "default-dark-modern",
3
- "default-dark",
4
- "default-dark-plus",
5
- "visual-studio-light",
6
- "default-light-plus",
7
- "default-light-modern",
8
- "github-light",
9
- "github-light-default",
10
- "github-light-colorblind",
11
- "github-dark",
12
- "github-dark-default",
13
- "github-dark-colorblind",
14
- ];
1
+ import { map as darkModern } from "./themes/default-dark-modern";
2
+ import { map as dark } from "./themes/default-dark";
3
+ import { map as darkPlus } from "./themes/default-dark-plus";
4
+ import { map as vsLight } from "./themes/visual-studio-light";
5
+ import { map as lightPlus } from "./themes/default-light-plus";
6
+ import { map as lightModern } from "./themes/default-light-modern";
7
+ import { map as ghLight } from "./themes/github-light";
8
+ import { map as ghLightDefault } from "./themes/github-light-default";
9
+ import { map as ghLightBilnd } from "./themes/github-light-colorblind";
10
+ import { map as ghDark } from "./themes/github-dark";
11
+ import { map as ghDarkDefault } from "./themes/github-dark-default";
12
+ import { map as ghDarkBilnd } from "./themes/github-dark-colorblind";
13
+ const _themeRegistry = {
14
+ "default-dark-modern": darkModern,
15
+ "default-dark": dark,
16
+ "default-dark-plus": darkPlus,
17
+ "visual-studio-light": vsLight,
18
+ "default-light-plus": lightPlus,
19
+ "default-light-modern": lightModern,
20
+ "github-light": ghLight,
21
+ "github-light-default": ghLightDefault,
22
+ "github-light-colorblind": ghLightBilnd,
23
+ "github-dark": ghDark,
24
+ "github-dark-default": ghDarkDefault,
25
+ "github-dark-colorblind": ghDarkBilnd,
26
+ };
27
+ // 自動推導主題名稱
28
+ export const themes = Object.keys(_themeRegistry);
29
+ // themeMap 保留給外部使用
30
+ export const themeMap = _themeRegistry;
15
31
  export const parsableLanguages = ["javascript"];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "c063",
4
- "version": "1.4.1",
4
+ "version": "1.4.2",
5
5
  "description": "A React component for displaying code snippets with syntax highlighting.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -20,6 +20,7 @@ export const CodeBlock = <T extends React.ElementType = "span">({
20
20
  return (
21
21
  <pre {...rest}>
22
22
  {tokenLines.map((line, index) => (
23
+ // eslint-disable-next-line react/react-in-jsx-scope
23
24
  <div
24
25
  key={index}
25
26
  style={{
@@ -1,6 +1,5 @@
1
- import { useLayoutEffect, useState } from "react";
2
- import { CodeTokenProps, CodeTokenType } from "../types/index";
3
- import { loadTheme } from "../utils/theme";
1
+ import { themeMap } from "../libs/index";
2
+ import { CodeTokenProps } from "../types/index";
4
3
 
5
4
  /**
6
5
  * 渲染單一語法 token(例如關鍵字、字串、註解等),可指定標籤與樣式。
@@ -22,23 +21,12 @@ export const CodeToken = <T extends React.ElementType = "span">({
22
21
  ...rest
23
22
  }: CodeTokenProps<T>) => {
24
23
  const Tag = as || "span";
25
- const [currTheme, setCurrTheme] = useState<Record<
26
- CodeTokenType,
27
- React.CSSProperties["color"]
28
- > | null>(null);
29
-
30
- useLayoutEffect(() => {
31
- if (theme) {
32
- loadTheme(theme).then((res) => setCurrTheme(res));
33
- }
34
- }, [theme]);
35
24
 
36
25
  return (
37
- // eslint-disable-next-line react/react-in-jsx-scope
38
26
  <Tag
39
27
  {...rest}
40
28
  style={{
41
- color: currTheme?.[type || "default"] || undefined,
29
+ color: themeMap[theme || "default-dark-modern"][type || "default"],
42
30
  ...style,
43
31
  }}
44
32
  >
@@ -1,16 +1,41 @@
1
- export const themes = [
2
- "default-dark-modern",
3
- "default-dark",
4
- "default-dark-plus",
5
- "visual-studio-light",
6
- "default-light-plus",
7
- "default-light-modern",
8
- "github-light",
9
- "github-light-default",
10
- "github-light-colorblind",
11
- "github-dark",
12
- "github-dark-default",
13
- "github-dark-colorblind",
14
- ] as const;
1
+ import type { CodeTokenType, CodeTheme } from "../types";
2
+ import { map as darkModern } from "./themes/default-dark-modern";
3
+ import { map as dark } from "./themes/default-dark";
4
+ import { map as darkPlus } from "./themes/default-dark-plus";
5
+ import { map as vsLight } from "./themes/visual-studio-light";
6
+ import { map as lightPlus } from "./themes/default-light-plus";
7
+ import { map as lightModern } from "./themes/default-light-modern";
8
+ import { map as ghLight } from "./themes/github-light";
9
+ import { map as ghLightDefault } from "./themes/github-light-default";
10
+ import { map as ghLightBilnd } from "./themes/github-light-colorblind";
11
+ import { map as ghDark } from "./themes/github-dark";
12
+ import { map as ghDarkDefault } from "./themes/github-dark-default";
13
+ import { map as ghDarkBilnd } from "./themes/github-dark-colorblind";
14
+
15
+ const _themeRegistry = {
16
+ "default-dark-modern": darkModern,
17
+ "default-dark": dark,
18
+ "default-dark-plus": darkPlus,
19
+ "visual-studio-light": vsLight,
20
+ "default-light-plus": lightPlus,
21
+ "default-light-modern": lightModern,
22
+ "github-light": ghLight,
23
+ "github-light-default": ghLightDefault,
24
+ "github-light-colorblind": ghLightBilnd,
25
+ "github-dark": ghDark,
26
+ "github-dark-default": ghDarkDefault,
27
+ "github-dark-colorblind": ghDarkBilnd,
28
+ } as const;
29
+
30
+ // 自動推導主題名稱
31
+ export const themes = Object.keys(
32
+ _themeRegistry
33
+ ) as (keyof typeof _themeRegistry)[];
34
+
35
+ // themeMap 保留給外部使用
36
+ export const themeMap: Record<
37
+ CodeTheme,
38
+ Record<CodeTokenType, React.CSSProperties["color"]>
39
+ > = _themeRegistry;
15
40
 
16
41
  export const parsableLanguages = ["javascript"] as const;
@@ -1,8 +0,0 @@
1
- import { CodeTheme, CodeTokenType } from "../types";
2
-
3
- export const loadTheme = async (
4
- theme: CodeTheme
5
- ): Promise<Record<CodeTokenType, React.CSSProperties["color"]>> => {
6
- const { map } = await import(`../libs/themes/${theme}`);
7
- return map;
8
- };