c063 1.4.3 → 1.4.4

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './types';
2
- export * from './components';
3
- import c063, { whiteSpace } from './utils';
1
+ export * from "./types";
2
+ export * from "./components";
3
+ import c063, { whiteSpace, extractTokenContent } from "./utils";
4
4
  export default c063;
5
- export { whiteSpace };
5
+ export { whiteSpace, extractTokenContent };
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- export * from './types';
2
- export * from './components';
3
- import c063, { whiteSpace } from './utils';
1
+ export * from "./types";
2
+ export * from "./components";
3
+ import c063, { whiteSpace, extractTokenContent } from "./utils";
4
4
  export default c063;
5
- export { whiteSpace };
5
+ export { whiteSpace, extractTokenContent };
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { CodeTokenBuilder, CodeTokenProps, CodeTokenType } from "../types";
2
3
  /**
3
4
  * 語法 token 的建構器集合,每個 key 對應一種語法類型(如 `keyword-blue`, `string`, `comment` 等),
@@ -26,4 +27,5 @@ declare const c063: Record<CodeTokenType, CodeTokenBuilder>;
26
27
  * tokens.push(whiteSpace(2)); // -> { type: "default", children: " " }
27
28
  */
28
29
  export declare const whiteSpace: (count?: number) => CodeTokenProps<"span">;
30
+ export declare const extractTokenContent: <T extends React.ElementType>(token: CodeTokenProps<T>) => string;
29
31
  export default c063;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  /**
2
3
  * 語法 token 的建構器集合,每個 key 對應一種語法類型(如 `keyword-blue`, `string`, `comment` 等),
3
4
  * 透過 Proxy 生成對應的 `CodeTokenBuilder`。
@@ -36,4 +37,19 @@ const c063 = new Proxy({}, {
36
37
  * tokens.push(whiteSpace(2)); // -> { type: "default", children: " " }
37
38
  */
38
39
  export const whiteSpace = (count = 1) => c063.default(" ".repeat(count));
40
+ export const extractTokenContent = (token) => {
41
+ const _extract = (children) => {
42
+ if (typeof children === "string")
43
+ return children;
44
+ if (typeof children === "number")
45
+ return children.toString();
46
+ if (Array.isArray(children))
47
+ return children.map(_extract).join("");
48
+ if (React.isValidElement(children)) {
49
+ return _extract(children.props.children);
50
+ }
51
+ return ""; // 如果 children 是 null 或 undefined,則返回空字串
52
+ };
53
+ return _extract(token.children);
54
+ };
39
55
  export default c063;
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.3",
4
+ "version": "1.4.4",
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",
package/src/index.ts CHANGED
@@ -1,8 +1,6 @@
1
- export * from './types';
2
- export * from './components';
1
+ export * from "./types";
2
+ export * from "./components";
3
3
 
4
- import c063, { whiteSpace }from './utils';
4
+ import c063, { whiteSpace, extractTokenContent } from "./utils";
5
5
  export default c063;
6
- export {
7
- whiteSpace
8
- }
6
+ export { whiteSpace, extractTokenContent };
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import { CodeTokenBuilder, CodeTokenProps, CodeTokenType } from "../types";
2
3
  /**
3
4
  * 語法 token 的建構器集合,每個 key 對應一種語法類型(如 `keyword-blue`, `string`, `comment` 等),
@@ -46,4 +47,19 @@ const c063 = new Proxy(
46
47
  export const whiteSpace = (count: number = 1): CodeTokenProps<"span"> =>
47
48
  c063.default(" ".repeat(count));
48
49
 
50
+ export const extractTokenContent = <T extends React.ElementType>(
51
+ token: CodeTokenProps<T>
52
+ ): string => {
53
+ const _extract = (children: React.ReactNode): string => {
54
+ if (typeof children === "string") return children;
55
+ if (typeof children === "number") return children.toString();
56
+ if (Array.isArray(children)) return children.map(_extract).join("");
57
+ if (React.isValidElement(children)) {
58
+ return _extract((children as React.JSX.Element).props.children);
59
+ }
60
+ return ""; // 如果 children 是 null 或 undefined,則返回空字串
61
+ };
62
+ return _extract(token.children);
63
+ };
64
+
49
65
  export default c063;