@hsu-react/ui 0.0.16 → 0.0.18

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.
@@ -33,19 +33,3 @@
33
33
  }
34
34
  }
35
35
  }
36
-
37
- .Copyed {
38
- display: flex;
39
- align-items: center;
40
- column-gap: 5px;
41
-
42
- font-size: 14px;
43
- line-height: 18px;
44
- color: var(--text-color);
45
-
46
- cursor: default;
47
-
48
- .icon {
49
- font-size: 18px;
50
- }
51
- }
@@ -1,7 +1,8 @@
1
1
  import React, { ReactNode } from "react";
2
2
  export interface CopyProps {
3
3
  id: string;
4
- isMessage?: true;
4
+ /** true (default): report via a global toast; false: swap the button for an inline "已复制!" state */
5
+ isMessage?: boolean;
5
6
  md?: boolean;
6
7
  text?: string;
7
8
  copyIcon?: ReactNode;
@@ -34,7 +34,7 @@
34
34
 
35
35
  font-size: 14px;
36
36
  line-height: 18px;
37
- color: var(--text-color);
37
+ color: var(--cf-text);
38
38
 
39
39
  cursor: default;
40
40
 
@@ -1,14 +1,14 @@
1
- var _excluded = ["className", "children"],
2
- _excluded2 = ["children"];
3
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
5
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
2
+ var _excluded = ["className", "children", "node"],
3
+ _excluded2 = ["children", "node"];
6
4
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
7
5
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
8
6
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
9
7
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
10
8
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
11
- import React from "react";
9
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
10
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
11
+ import React, { createContext, useContext, useId } from "react";
12
12
  import ReactMarkdown from "react-markdown";
13
13
  import rehypeHighlight from "rehype-highlight";
14
14
  import rehypeKatex from "rehype-katex";
@@ -18,7 +18,6 @@ import classNames from "classnames";
18
18
  import styles from "./index.module.scss";
19
19
  import "highlight.js/styles/atom-one-dark.min.css";
20
20
  import "katex/dist/katex.min.css";
21
- import { generateRandomStr } from "hsu-utils";
22
21
  import Copy from "../../Copy";
23
22
  import MermaidBlock from "./MermaidBlock";
24
23
  import ArtifactBlock from "./ArtifactBlock";
@@ -41,77 +40,109 @@ var extractText = function extractText(node) {
41
40
  }
42
41
  return "";
43
42
  };
44
- var MarkdownViews = function MarkdownViews(props) {
43
+
44
+ /**
45
+ * Copy button config, handed to the code renderer through context rather than a closure so the
46
+ * renderer can stay a module-level component (see CodeBlock).
47
+ */
48
+ var CopyPropsContext = /*#__PURE__*/createContext(undefined);
49
+
50
+ /**
51
+ * Fenced code block: mermaid diagram, Artifacts preview, or highlighted code with a copy button.
52
+ *
53
+ * Declared at module scope on purpose. Defining it inline inside MarkdownViews would hand
54
+ * react-markdown a brand-new element type on every render, so React would unmount and remount
55
+ * every code block whenever the markdown re-renders — making the copy button flicker (and losing
56
+ * its "已复制!" state) on each token of streamed content.
57
+ */
58
+ var CodeBlock = function CodeBlock(props) {
59
+ var _exec;
60
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
45
61
  var className = props.className,
46
- copyProps = props.copyProps,
47
- extraComponents = props.components;
48
- return /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({}, props), {}, {
49
- rehypePlugins: [rehypeHighlight, rehypeKatex],
50
- remarkPlugins: [remarkGfm, remarkMath],
51
- className: classNames(styles.MarkdownViews, className, "markdown-body"),
52
- components: _objectSpread({
53
- code: function code(_ref) {
54
- var className = _ref.className,
55
- children = _ref.children,
56
- props = _objectWithoutProperties(_ref, _excluded);
57
- var match = /language-(\w+)/.exec(className || "");
58
- if (match !== null && match !== void 0 && match.length) {
59
- var lang = match[1].toLowerCase();
60
- var codeText = extractText(children);
62
+ children = props.children,
63
+ _node = props.node,
64
+ codeProps = _objectWithoutProperties(props, _excluded);
65
+ var copyProps = useContext(CopyPropsContext);
66
+ // Stable for the lifetime of the block: regenerating the id on every render would leave the
67
+ // copy button's getElementById lookup pointing at a stale node. Strip ':' so the id stays
68
+ // usable with CSS selectors as well as getElementById.
69
+ var id = "md-code-".concat(useId().replace(/:/g, ""));
70
+ var lang = (_exec = /language-(\w+)/.exec(className || "")) === null || _exec === void 0 || (_exec = _exec[1]) === null || _exec === void 0 ? void 0 : _exec.toLowerCase();
71
+ if (!lang) {
72
+ return /*#__PURE__*/_jsx("code", _objectSpread(_objectSpread({}, codeProps), {}, {
73
+ children: children
74
+ }));
75
+ }
76
+ var codeText = extractText(children);
77
+
78
+ // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
79
+ if (lang === "mermaid") {
80
+ return /*#__PURE__*/_jsx(MermaidBlock, {
81
+ code: codeText
82
+ });
83
+ }
84
+ var codeView = /*#__PURE__*/_jsxs("div", {
85
+ className: classNames(styles.code),
86
+ children: [/*#__PURE__*/_jsx("div", {
87
+ className: classNames(styles.nav),
88
+ children: /*#__PURE__*/_jsx(Copy, _objectSpread({
89
+ id: id,
90
+ md: false
91
+ }, copyProps))
92
+ }), /*#__PURE__*/_jsx("div", {
93
+ className: classNames(styles.content),
94
+ children: /*#__PURE__*/_jsx("code", _objectSpread(_objectSpread({
95
+ id: id
96
+ }, codeProps), {}, {
97
+ className: classNames(styles.code_content, className),
98
+ children: children
99
+ }))
100
+ })]
101
+ });
61
102
 
62
- // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
63
- if (lang === "mermaid") {
64
- return /*#__PURE__*/_jsx(MermaidBlock, {
65
- code: codeText
66
- });
67
- }
68
- var id = generateRandomStr(10);
69
- var codeView = /*#__PURE__*/_jsxs("div", {
70
- className: classNames(styles.code),
71
- children: [/*#__PURE__*/_jsx("div", {
72
- className: classNames(styles.nav),
73
- children: /*#__PURE__*/_jsx(Copy, _objectSpread({
74
- id: id,
75
- md: false
76
- }, copyProps))
77
- }), /*#__PURE__*/_jsx("div", {
78
- className: classNames(styles.content),
79
- children: /*#__PURE__*/_jsx("code", _objectSpread(_objectSpread({
80
- id: id
81
- }, props), {}, {
82
- className: classNames(styles.code_content, className),
83
- children: children
84
- }))
85
- })]
86
- });
103
+ // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
104
+ if (ARTIFACT_LANGS.has(lang)) {
105
+ return /*#__PURE__*/_jsx(ArtifactBlock, {
106
+ code: codeText,
107
+ lang: lang,
108
+ codeView: codeView
109
+ });
110
+ }
111
+ return codeView;
112
+ };
87
113
 
88
- // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
89
- if (ARTIFACT_LANGS.has(lang)) {
90
- return /*#__PURE__*/_jsx(ArtifactBlock, {
91
- code: codeText,
92
- lang: lang,
93
- codeView: codeView
94
- });
95
- }
96
- return codeView;
97
- }
98
- return /*#__PURE__*/_jsx("code", _objectSpread(_objectSpread({}, props), {}, {
99
- children: children
100
- }));
101
- },
102
- td: function td(_ref2) {
103
- var children = _ref2.children,
104
- props = _objectWithoutProperties(_ref2, _excluded2);
105
- return /*#__PURE__*/_jsx("td", _objectSpread(_objectSpread({}, props), {}, {
106
- children: Array.isArray(children) ? children === null || children === void 0 ? void 0 : children.map(function (item) {
107
- if (item === "<br>") {
108
- return /*#__PURE__*/_jsx("br", {});
109
- }
110
- return item;
111
- }) : children
112
- }));
113
- }
114
- }, extraComponents || {})
114
+ /** Table cell that turns literal "<br>" text nodes into real line breaks. */
115
+ var TableCell = function TableCell(props) {
116
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
117
+ var children = props.children,
118
+ _node = props.node,
119
+ tdProps = _objectWithoutProperties(props, _excluded2);
120
+ return /*#__PURE__*/_jsx("td", _objectSpread(_objectSpread({}, tdProps), {}, {
121
+ children: Array.isArray(children) ? children === null || children === void 0 ? void 0 : children.map(function (item, index) {
122
+ return item === "<br>" ? /*#__PURE__*/_jsx("br", {}, index) : item;
123
+ }) : children
115
124
  }));
116
125
  };
126
+ var MarkdownViews = function MarkdownViews(props) {
127
+ var className = props.className,
128
+ copyProps = props.copyProps,
129
+ extraComponents = props.components;
130
+ return (
131
+ /*#__PURE__*/
132
+ // The components map below may be a fresh object each render; that is harmless because the
133
+ // renderers it points at are stable module-level types, which is what React reconciles on.
134
+ _jsx(CopyPropsContext.Provider, {
135
+ value: copyProps,
136
+ children: /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({}, props), {}, {
137
+ rehypePlugins: [rehypeHighlight, rehypeKatex],
138
+ remarkPlugins: [remarkGfm, remarkMath],
139
+ className: classNames(styles.MarkdownViews, className, "markdown-body"),
140
+ components: _objectSpread({
141
+ code: CodeBlock,
142
+ td: TableCell
143
+ }, extraComponents || {})
144
+ }))
145
+ })
146
+ );
147
+ };
117
148
  export default MarkdownViews;
@@ -68,6 +68,21 @@
68
68
  color: #efefef;
69
69
 
70
70
  background: #212121;
71
+
72
+ // Copy's root div (class is module-hashed, so it can only be reached as a child).
73
+ // It colors itself from theme tokens — in light mode --cf-text-2 is near-black,
74
+ // which disappears against this strip. The strip stays dark on purpose to match the
75
+ // atom-one-dark code body, so the button is pinned to light-on-dark rather than
76
+ // following the page theme.
77
+ > div {
78
+ color: rgba(255, 255, 255, 0.65);
79
+
80
+ &:hover {
81
+ color: #ffffff;
82
+
83
+ background-color: rgba(255, 255, 255, 0.12);
84
+ }
85
+ }
71
86
  }
72
87
  }
73
88
  }
@@ -1,8 +1,19 @@
1
- import React, { ReactNode } from "react";
1
+ import React, { ReactElement, ReactNode } from "react";
2
2
  import { ModalProps } from "../Modal";
3
- interface SecondConfProps extends Omit<ModalProps, "title"> {
3
+ export interface SecondConfProps extends Omit<ModalProps, "title" | "children"> {
4
4
  contentTitle?: ReactNode;
5
5
  contentText?: ReactNode;
6
+ /**
7
+ * Trigger element (button/icon). When provided and `open` is omitted, the
8
+ * dialog owns its open state, so the caller does not have to keep one flag
9
+ * per confirmable action — which is otherwise impossible inside a list
10
+ * `map()`. The child's own `onClick` still fires first, and the click stops
11
+ * propagating so a trigger nested in a clickable row or card does not also
12
+ * activate that row.
13
+ */
14
+ children?: ReactElement<{
15
+ onClick?: (e: React.MouseEvent) => void;
16
+ }>;
6
17
  }
7
18
  declare const SecondConf: React.FC<SecondConfProps>;
8
19
  export default SecondConf;
@@ -1,47 +1,87 @@
1
1
  function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
- var _excluded = ["classNames", "contentTitle", "contentText"];
2
+ var _excluded = ["classNames", "contentTitle", "contentText", "children", "open", "onOk", "onCancel"];
3
3
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
4
4
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
5
5
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
6
6
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
7
7
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
8
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
9
+ 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."); }
10
+ 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); }
11
+ 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; }
12
+ 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; } }
13
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
8
14
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
9
15
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
10
- import React from "react";
16
+ import React, { cloneElement, useState } from "react";
11
17
  import styles from "./index.module.scss";
12
18
  import Icon from "../Icon";
13
19
  import Modal from "../Modal";
14
20
  import { jsx as _jsx } from "react/jsx-runtime";
15
21
  import { jsxs as _jsxs } from "react/jsx-runtime";
22
+ import { Fragment as _Fragment } from "react/jsx-runtime";
16
23
  var SecondConf = function SecondConf(props) {
17
24
  var classNames = props.classNames,
18
25
  contentTitle = props.contentTitle,
19
26
  contentText = props.contentText,
27
+ children = props.children,
28
+ open = props.open,
29
+ onOk = props.onOk,
30
+ onCancel = props.onCancel,
20
31
  modalConfig = _objectWithoutProperties(props, _excluded);
21
- return /*#__PURE__*/_jsxs(Modal, _objectSpread(_objectSpread({
22
- width: 800
23
- }, modalConfig), {}, {
24
- centered: true,
25
- className: styles.SecondConf,
26
- classNames: _objectSpread({
27
- body: "".concat(styles.body, " ").concat((classNames === null || classNames === void 0 ? void 0 : classNames.body) || "")
28
- }, classNames),
29
- maskClosable: false,
30
- mask: false,
31
- title: " ",
32
- children: [/*#__PURE__*/_jsx(Icon, {
33
- icon: "mingcute:question-line",
34
- className: styles.icon
35
- }), /*#__PURE__*/_jsxs("div", {
36
- className: styles.content,
37
- children: [/*#__PURE__*/_jsxs("div", {
38
- className: styles.title,
39
- children: ["\u786E\u8BA4", contentTitle, "\u5417\uFF1F"]
40
- }), /*#__PURE__*/_jsx("div", {
41
- className: styles.text,
42
- children: contentText
32
+ var _useState = useState(false),
33
+ _useState2 = _slicedToArray(_useState, 2),
34
+ selfOpen = _useState2[0],
35
+ setSelfOpen = _useState2[1];
36
+
37
+ // Controlled whenever `open` is supplied; self-managed only in trigger mode.
38
+ var isControlled = open !== undefined;
39
+ var visible = isControlled ? open : selfOpen;
40
+ var trigger = children && /*#__PURE__*/cloneElement(children, {
41
+ onClick: function onClick(e) {
42
+ var _children$props$onCli, _children$props;
43
+ e.stopPropagation();
44
+ (_children$props$onCli = (_children$props = children.props).onClick) === null || _children$props$onCli === void 0 || _children$props$onCli.call(_children$props, e);
45
+ if (!isControlled) setSelfOpen(true);
46
+ }
47
+ });
48
+ var handleOk = function handleOk(e) {
49
+ if (!isControlled) setSelfOpen(false);
50
+ onOk === null || onOk === void 0 || onOk(e);
51
+ };
52
+ var handleCancel = function handleCancel(e) {
53
+ if (!isControlled) setSelfOpen(false);
54
+ onCancel === null || onCancel === void 0 || onCancel(e);
55
+ };
56
+ return /*#__PURE__*/_jsxs(_Fragment, {
57
+ children: [trigger, /*#__PURE__*/_jsxs(Modal, _objectSpread(_objectSpread({
58
+ width: 800
59
+ }, modalConfig), {}, {
60
+ open: visible,
61
+ onOk: handleOk,
62
+ onCancel: handleCancel,
63
+ centered: true,
64
+ className: styles.SecondConf,
65
+ classNames: _objectSpread({
66
+ body: "".concat(styles.body, " ").concat((classNames === null || classNames === void 0 ? void 0 : classNames.body) || "")
67
+ }, classNames),
68
+ maskClosable: false,
69
+ mask: false,
70
+ title: " ",
71
+ children: [/*#__PURE__*/_jsx(Icon, {
72
+ icon: "mingcute:question-line",
73
+ className: styles.icon
74
+ }), /*#__PURE__*/_jsxs("div", {
75
+ className: styles.content,
76
+ children: [/*#__PURE__*/_jsxs("div", {
77
+ className: styles.title,
78
+ children: ["\u786E\u8BA4", contentTitle, "\u5417\uFF1F"]
79
+ }), /*#__PURE__*/_jsx("div", {
80
+ className: styles.text,
81
+ children: contentText
82
+ })]
43
83
  })]
44
- })]
45
- }));
84
+ }))]
85
+ });
46
86
  };
47
87
  export default SecondConf;
@@ -33,19 +33,3 @@
33
33
  }
34
34
  }
35
35
  }
36
-
37
- .Copyed {
38
- display: flex;
39
- align-items: center;
40
- column-gap: 5px;
41
-
42
- font-size: 14px;
43
- line-height: 18px;
44
- color: var(--text-color);
45
-
46
- cursor: default;
47
-
48
- .icon {
49
- font-size: 18px;
50
- }
51
- }
@@ -1,7 +1,8 @@
1
1
  import React, { ReactNode } from "react";
2
2
  export interface CopyProps {
3
3
  id: string;
4
- isMessage?: true;
4
+ /** true (default): report via a global toast; false: swap the button for an inline "已复制!" state */
5
+ isMessage?: boolean;
5
6
  md?: boolean;
6
7
  text?: string;
7
8
  copyIcon?: ReactNode;
@@ -34,7 +34,7 @@
34
34
 
35
35
  font-size: 14px;
36
36
  line-height: 18px;
37
- color: var(--text-color);
37
+ color: var(--cf-text);
38
38
 
39
39
  cursor: default;
40
40
 
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
7
+ var _react = _interopRequireWildcard(require("react"));
8
8
  var _reactMarkdown = _interopRequireDefault(require("react-markdown"));
9
9
  var _rehypeHighlight = _interopRequireDefault(require("rehype-highlight"));
10
10
  var _rehypeKatex = _interopRequireDefault(require("rehype-katex"));
@@ -14,12 +14,13 @@ var _classnames = _interopRequireDefault(require("classnames"));
14
14
  var _indexModule = _interopRequireDefault(require("./index.module.scss"));
15
15
  require("highlight.js/styles/atom-one-dark.min.css");
16
16
  require("katex/dist/katex.min.css");
17
- var _hsuUtils = require("hsu-utils");
18
17
  var _Copy = _interopRequireDefault(require("../../Copy"));
19
18
  var _MermaidBlock = _interopRequireDefault(require("./MermaidBlock"));
20
19
  var _ArtifactBlock = _interopRequireDefault(require("./ArtifactBlock"));
21
20
  var _jsxRuntime = require("react/jsx-runtime");
22
21
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
22
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
23
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
23
24
  /** Code block languages that support Artifacts preview (modeled after Claude Artifacts) */const ARTIFACT_LANGS = new Set(["html", "svg"]);
24
25
 
25
26
  /**
@@ -35,86 +36,117 @@ const extractText = node => {
35
36
  }
36
37
  return "";
37
38
  };
39
+
40
+ /**
41
+ * Copy button config, handed to the code renderer through context rather than a closure so the
42
+ * renderer can stay a module-level component (see CodeBlock).
43
+ */
44
+ const CopyPropsContext = /*#__PURE__*/(0, _react.createContext)(undefined);
45
+
46
+ /**
47
+ * Fenced code block: mermaid diagram, Artifacts preview, or highlighted code with a copy button.
48
+ *
49
+ * Declared at module scope on purpose. Defining it inline inside MarkdownViews would hand
50
+ * react-markdown a brand-new element type on every render, so React would unmount and remount
51
+ * every code block whenever the markdown re-renders — making the copy button flicker (and losing
52
+ * its "已复制!" state) on each token of streamed content.
53
+ */
54
+ const CodeBlock = props => {
55
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
56
+ const {
57
+ className,
58
+ children,
59
+ node: _node,
60
+ ...codeProps
61
+ } = props;
62
+ const copyProps = (0, _react.useContext)(CopyPropsContext);
63
+ // Stable for the lifetime of the block: regenerating the id on every render would leave the
64
+ // copy button's getElementById lookup pointing at a stale node. Strip ':' so the id stays
65
+ // usable with CSS selectors as well as getElementById.
66
+ const id = `md-code-${(0, _react.useId)().replace(/:/g, "")}`;
67
+ const lang = /language-(\w+)/.exec(className || "")?.[1]?.toLowerCase();
68
+ if (!lang) {
69
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("code", {
70
+ ...codeProps,
71
+ children: children
72
+ });
73
+ }
74
+ const codeText = extractText(children);
75
+
76
+ // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
77
+ if (lang === "mermaid") {
78
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_MermaidBlock.default, {
79
+ code: codeText
80
+ });
81
+ }
82
+ const codeView = /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
83
+ className: (0, _classnames.default)(_indexModule.default.code),
84
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
85
+ className: (0, _classnames.default)(_indexModule.default.nav),
86
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Copy.default, {
87
+ id: id,
88
+ md: false,
89
+ ...copyProps
90
+ })
91
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
92
+ className: (0, _classnames.default)(_indexModule.default.content),
93
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("code", {
94
+ id: id,
95
+ ...codeProps,
96
+ className: (0, _classnames.default)(_indexModule.default.code_content, className),
97
+ children: children
98
+ })
99
+ })]
100
+ });
101
+
102
+ // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
103
+ if (ARTIFACT_LANGS.has(lang)) {
104
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ArtifactBlock.default, {
105
+ code: codeText,
106
+ lang: lang,
107
+ codeView: codeView
108
+ });
109
+ }
110
+ return codeView;
111
+ };
112
+
113
+ /** Table cell that turns literal "<br>" text nodes into real line breaks. */
114
+ const TableCell = props => {
115
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
116
+ const {
117
+ children,
118
+ node: _node,
119
+ ...tdProps
120
+ } = props;
121
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("td", {
122
+ ...tdProps,
123
+ children: Array.isArray(children) ? children?.map((item, index) => item === "<br>" ? /*#__PURE__*/(0, _jsxRuntime.jsx)("br", {}, index) : item) : children
124
+ });
125
+ };
38
126
  const MarkdownViews = props => {
39
127
  const {
40
128
  className,
41
129
  copyProps,
42
130
  components: extraComponents
43
131
  } = props;
44
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactMarkdown.default, {
45
- ...props,
46
- rehypePlugins: [_rehypeHighlight.default, _rehypeKatex.default],
47
- remarkPlugins: [_remarkGfm.default, _remarkMath.default],
48
- className: (0, _classnames.default)(_indexModule.default.MarkdownViews, className, "markdown-body"),
49
- components: {
50
- code: ({
51
- className,
52
- children,
53
- ...props
54
- }) => {
55
- const match = /language-(\w+)/.exec(className || "");
56
- if (match?.length) {
57
- const lang = match[1].toLowerCase();
58
- const codeText = extractText(children);
59
-
60
- // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
61
- if (lang === "mermaid") {
62
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_MermaidBlock.default, {
63
- code: codeText
64
- });
65
- }
66
- const id = (0, _hsuUtils.generateRandomStr)(10);
67
- const codeView = /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
68
- className: (0, _classnames.default)(_indexModule.default.code),
69
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
70
- className: (0, _classnames.default)(_indexModule.default.nav),
71
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Copy.default, {
72
- id: id,
73
- md: false,
74
- ...copyProps
75
- })
76
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
77
- className: (0, _classnames.default)(_indexModule.default.content),
78
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)("code", {
79
- id: id,
80
- ...props,
81
- className: (0, _classnames.default)(_indexModule.default.code_content, className),
82
- children: children
83
- })
84
- })]
85
- });
86
-
87
- // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
88
- if (ARTIFACT_LANGS.has(lang)) {
89
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ArtifactBlock.default, {
90
- code: codeText,
91
- lang: lang,
92
- codeView: codeView
93
- });
94
- }
95
- return codeView;
132
+ return (
133
+ /*#__PURE__*/
134
+ // The components map below may be a fresh object each render; that is harmless because the
135
+ // renderers it points at are stable module-level types, which is what React reconciles on.
136
+ (0, _jsxRuntime.jsx)(CopyPropsContext.Provider, {
137
+ value: copyProps,
138
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactMarkdown.default, {
139
+ ...props,
140
+ rehypePlugins: [_rehypeHighlight.default, _rehypeKatex.default],
141
+ remarkPlugins: [_remarkGfm.default, _remarkMath.default],
142
+ className: (0, _classnames.default)(_indexModule.default.MarkdownViews, className, "markdown-body"),
143
+ components: {
144
+ code: CodeBlock,
145
+ td: TableCell,
146
+ ...(extraComponents || {})
96
147
  }
97
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("code", {
98
- ...props,
99
- children: children
100
- });
101
- },
102
- td: ({
103
- children,
104
- ...props
105
- }) => {
106
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("td", {
107
- ...props,
108
- children: Array.isArray(children) ? children?.map(item => {
109
- if (item === "<br>") {
110
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("br", {});
111
- }
112
- return item;
113
- }) : children
114
- });
115
- },
116
- ...(extraComponents || {})
117
- }
118
- });
148
+ })
149
+ })
150
+ );
119
151
  };
120
152
  var _default = exports.default = MarkdownViews;
@@ -68,6 +68,21 @@
68
68
  color: #efefef;
69
69
 
70
70
  background: #212121;
71
+
72
+ // Copy's root div (class is module-hashed, so it can only be reached as a child).
73
+ // It colors itself from theme tokens — in light mode --cf-text-2 is near-black,
74
+ // which disappears against this strip. The strip stays dark on purpose to match the
75
+ // atom-one-dark code body, so the button is pinned to light-on-dark rather than
76
+ // following the page theme.
77
+ > div {
78
+ color: rgba(255, 255, 255, 0.65);
79
+
80
+ &:hover {
81
+ color: #ffffff;
82
+
83
+ background-color: rgba(255, 255, 255, 0.12);
84
+ }
85
+ }
71
86
  }
72
87
  }
73
88
  }
@@ -1,8 +1,19 @@
1
- import React, { ReactNode } from "react";
1
+ import React, { ReactElement, ReactNode } from "react";
2
2
  import { ModalProps } from "../Modal";
3
- interface SecondConfProps extends Omit<ModalProps, "title"> {
3
+ export interface SecondConfProps extends Omit<ModalProps, "title" | "children"> {
4
4
  contentTitle?: ReactNode;
5
5
  contentText?: ReactNode;
6
+ /**
7
+ * Trigger element (button/icon). When provided and `open` is omitted, the
8
+ * dialog owns its open state, so the caller does not have to keep one flag
9
+ * per confirmable action — which is otherwise impossible inside a list
10
+ * `map()`. The child's own `onClick` still fires first, and the click stops
11
+ * propagating so a trigger nested in a clickable row or card does not also
12
+ * activate that row.
13
+ */
14
+ children?: ReactElement<{
15
+ onClick?: (e: React.MouseEvent) => void;
16
+ }>;
6
17
  }
7
18
  declare const SecondConf: React.FC<SecondConfProps>;
8
19
  export default SecondConf;
@@ -4,42 +4,73 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
7
+ var _react = _interopRequireWildcard(require("react"));
8
8
  var _indexModule = _interopRequireDefault(require("./index.module.scss"));
9
9
  var _Icon = _interopRequireDefault(require("../Icon"));
10
10
  var _Modal = _interopRequireDefault(require("../Modal"));
11
11
  var _jsxRuntime = require("react/jsx-runtime");
12
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
14
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
13
15
  const SecondConf = props => {
14
16
  const {
15
17
  classNames,
16
18
  contentTitle,
17
19
  contentText,
20
+ children,
21
+ open,
22
+ onOk,
23
+ onCancel,
18
24
  ...modalConfig
19
25
  } = props;
20
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Modal.default, {
21
- width: 800,
22
- ...modalConfig,
23
- centered: true,
24
- className: _indexModule.default.SecondConf,
25
- classNames: {
26
- body: `${_indexModule.default.body} ${classNames?.body || ""}`,
27
- ...classNames
28
- },
29
- maskClosable: false,
30
- mask: false,
31
- title: " ",
32
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon.default, {
33
- icon: "mingcute:question-line",
34
- className: _indexModule.default.icon
35
- }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
36
- className: _indexModule.default.content,
37
- children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
38
- className: _indexModule.default.title,
39
- children: ["\u786E\u8BA4", contentTitle, "\u5417\uFF1F"]
40
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
41
- className: _indexModule.default.text,
42
- children: contentText
26
+ const [selfOpen, setSelfOpen] = (0, _react.useState)(false);
27
+
28
+ // Controlled whenever `open` is supplied; self-managed only in trigger mode.
29
+ const isControlled = open !== undefined;
30
+ const visible = isControlled ? open : selfOpen;
31
+ const trigger = children && /*#__PURE__*/(0, _react.cloneElement)(children, {
32
+ onClick: e => {
33
+ e.stopPropagation();
34
+ children.props.onClick?.(e);
35
+ if (!isControlled) setSelfOpen(true);
36
+ }
37
+ });
38
+ const handleOk = e => {
39
+ if (!isControlled) setSelfOpen(false);
40
+ onOk?.(e);
41
+ };
42
+ const handleCancel = e => {
43
+ if (!isControlled) setSelfOpen(false);
44
+ onCancel?.(e);
45
+ };
46
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
47
+ children: [trigger, /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Modal.default, {
48
+ width: 800,
49
+ ...modalConfig,
50
+ open: visible,
51
+ onOk: handleOk,
52
+ onCancel: handleCancel,
53
+ centered: true,
54
+ className: _indexModule.default.SecondConf,
55
+ classNames: {
56
+ body: `${_indexModule.default.body} ${classNames?.body || ""}`,
57
+ ...classNames
58
+ },
59
+ maskClosable: false,
60
+ mask: false,
61
+ title: " ",
62
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Icon.default, {
63
+ icon: "mingcute:question-line",
64
+ className: _indexModule.default.icon
65
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
66
+ className: _indexModule.default.content,
67
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
68
+ className: _indexModule.default.title,
69
+ children: ["\u786E\u8BA4", contentTitle, "\u5417\uFF1F"]
70
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
71
+ className: _indexModule.default.text,
72
+ children: contentText
73
+ })]
43
74
  })]
44
75
  })]
45
76
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hsu-react/ui",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "description": "一套基于 React + Ant Design 的中后台业务组件库",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -33,19 +33,3 @@
33
33
  }
34
34
  }
35
35
  }
36
-
37
- .Copyed {
38
- display: flex;
39
- align-items: center;
40
- column-gap: 5px;
41
-
42
- font-size: 14px;
43
- line-height: 18px;
44
- color: var(--text-color);
45
-
46
- cursor: default;
47
-
48
- .icon {
49
- font-size: 18px;
50
- }
51
- }
@@ -34,7 +34,7 @@
34
34
 
35
35
  font-size: 14px;
36
36
  line-height: 18px;
37
- color: var(--text-color);
37
+ color: var(--cf-text);
38
38
 
39
39
  cursor: default;
40
40
 
@@ -8,7 +8,8 @@ import styles from "./index.module.scss";
8
8
 
9
9
  export interface CopyProps {
10
10
  id: string;
11
- isMessage?: true;
11
+ /** true (default): report via a global toast; false: swap the button for an inline "已复制!" state */
12
+ isMessage?: boolean;
12
13
  md?: boolean;
13
14
  text?: string;
14
15
  copyIcon?: ReactNode;
@@ -68,6 +68,21 @@
68
68
  color: #efefef;
69
69
 
70
70
  background: #212121;
71
+
72
+ // Copy's root div (class is module-hashed, so it can only be reached as a child).
73
+ // It colors itself from theme tokens — in light mode --cf-text-2 is near-black,
74
+ // which disappears against this strip. The strip stays dark on purpose to match the
75
+ // atom-one-dark code body, so the button is pinned to light-on-dark rather than
76
+ // following the page theme.
77
+ > div {
78
+ color: rgba(255, 255, 255, 0.65);
79
+
80
+ &:hover {
81
+ color: #ffffff;
82
+
83
+ background-color: rgba(255, 255, 255, 0.12);
84
+ }
85
+ }
71
86
  }
72
87
  }
73
88
  }
@@ -1,5 +1,8 @@
1
- import React from "react";
2
- import ReactMarkdown, { Options as ReactMarkdownProps } from "react-markdown";
1
+ import React, { createContext, useContext, useId } from "react";
2
+ import ReactMarkdown, {
3
+ Options as ReactMarkdownProps,
4
+ ExtraProps,
5
+ } from "react-markdown";
3
6
  import rehypeHighlight from "rehype-highlight";
4
7
  import rehypeKatex from "rehype-katex";
5
8
  import remarkGfm from "remark-gfm";
@@ -8,7 +11,6 @@ import classNames from "classnames";
8
11
  import styles from "./index.module.scss";
9
12
  import "highlight.js/styles/atom-one-dark.min.css";
10
13
  import "katex/dist/katex.min.css";
11
- import { generateRandomStr } from "hsu-utils";
12
14
  import Copy, { CopyProps } from "../../Copy";
13
15
  import MermaidBlock from "./MermaidBlock";
14
16
  import ArtifactBlock from "./ArtifactBlock";
@@ -30,6 +32,85 @@ const extractText = (node: React.ReactNode): string => {
30
32
  return "";
31
33
  };
32
34
 
35
+ /**
36
+ * Copy button config, handed to the code renderer through context rather than a closure so the
37
+ * renderer can stay a module-level component (see CodeBlock).
38
+ */
39
+ const CopyPropsContext = createContext<Omit<CopyProps, "id"> | undefined>(
40
+ undefined,
41
+ );
42
+
43
+ /**
44
+ * Fenced code block: mermaid diagram, Artifacts preview, or highlighted code with a copy button.
45
+ *
46
+ * Declared at module scope on purpose. Defining it inline inside MarkdownViews would hand
47
+ * react-markdown a brand-new element type on every render, so React would unmount and remount
48
+ * every code block whenever the markdown re-renders — making the copy button flicker (and losing
49
+ * its "已复制!" state) on each token of streamed content.
50
+ */
51
+ const CodeBlock: React.FC<React.ComponentProps<"code"> & ExtraProps> = (
52
+ props,
53
+ ) => {
54
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
55
+ const { className, children, node: _node, ...codeProps } = props;
56
+ const copyProps = useContext(CopyPropsContext);
57
+ // Stable for the lifetime of the block: regenerating the id on every render would leave the
58
+ // copy button's getElementById lookup pointing at a stale node. Strip ':' so the id stays
59
+ // usable with CSS selectors as well as getElementById.
60
+ const id = `md-code-${useId().replace(/:/g, "")}`;
61
+
62
+ const lang = /language-(\w+)/.exec(className || "")?.[1]?.toLowerCase();
63
+ if (!lang) {
64
+ return <code {...codeProps}>{children}</code>;
65
+ }
66
+
67
+ const codeText = extractText(children);
68
+
69
+ // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
70
+ if (lang === "mermaid") {
71
+ return <MermaidBlock code={codeText} />;
72
+ }
73
+
74
+ const codeView = (
75
+ <div className={classNames(styles.code)}>
76
+ <div className={classNames(styles.nav)}>
77
+ <Copy id={id} md={false} {...copyProps} />
78
+ </div>
79
+ <div className={classNames(styles.content)}>
80
+ <code
81
+ id={id}
82
+ {...codeProps}
83
+ className={classNames(styles.code_content, className)}
84
+ >
85
+ {children}
86
+ </code>
87
+ </div>
88
+ </div>
89
+ );
90
+
91
+ // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
92
+ if (ARTIFACT_LANGS.has(lang)) {
93
+ return <ArtifactBlock code={codeText} lang={lang} codeView={codeView} />;
94
+ }
95
+ return codeView;
96
+ };
97
+
98
+ /** Table cell that turns literal "<br>" text nodes into real line breaks. */
99
+ const TableCell: React.FC<React.ComponentProps<"td"> & ExtraProps> = (props) => {
100
+ // `node` is react-markdown's hast node — pulled out so it never reaches the DOM
101
+ const { children, node: _node, ...tdProps } = props;
102
+
103
+ return (
104
+ <td {...tdProps}>
105
+ {Array.isArray(children)
106
+ ? children?.map((item, index) =>
107
+ item === "<br>" ? <br key={index} /> : item,
108
+ )
109
+ : children}
110
+ </td>
111
+ );
112
+ };
113
+
33
114
  export interface MarkdownViewsProps extends ReactMarkdownProps {
34
115
  copyProps?: Omit<CopyProps, "id">;
35
116
  }
@@ -38,69 +119,21 @@ const MarkdownViews: React.FC<MarkdownViewsProps> = (props) => {
38
119
  const { className, copyProps, components: extraComponents } = props;
39
120
 
40
121
  return (
41
- <ReactMarkdown
42
- {...props}
43
- rehypePlugins={[rehypeHighlight, rehypeKatex]}
44
- remarkPlugins={[remarkGfm, remarkMath]}
45
- className={classNames(styles.MarkdownViews, className, "markdown-body")}
46
- components={{
47
- code: ({ className, children, ...props }) => {
48
- const match = /language-(\w+)/.exec(className || "");
49
- if (match?.length) {
50
- const lang = match[1].toLowerCase();
51
- const codeText = extractText(children);
52
-
53
- // Mermaid diagrams: render directly as SVG (fall back to code display when streaming output is incomplete)
54
- if (lang === "mermaid") {
55
- return <MermaidBlock code={codeText} />;
56
- }
57
-
58
- const id = generateRandomStr(10);
59
- const codeView = (
60
- <div className={classNames(styles.code)}>
61
- <div className={classNames(styles.nav)}>
62
- <Copy id={id} md={false} {...copyProps} />
63
- </div>
64
- <div className={classNames(styles.content)}>
65
- <code
66
- id={id}
67
- {...props}
68
- className={classNames(styles.code_content, className)}
69
- >
70
- {children}
71
- </code>
72
- </div>
73
- </div>
74
- );
75
-
76
- // HTML/SVG: Artifacts preview (sandbox iframe) + code tabs
77
- if (ARTIFACT_LANGS.has(lang)) {
78
- return (
79
- <ArtifactBlock code={codeText} lang={lang} codeView={codeView} />
80
- );
81
- }
82
- return codeView;
83
- }
84
- return <code {...props}>{children}</code>;
85
- },
86
- td: ({ children, ...props }) => {
87
- return (
88
- <td {...props}>
89
- {Array.isArray(children)
90
- ? children?.map((item) => {
91
- if (item === "<br>") {
92
- return <br />;
93
- }
94
-
95
- return item;
96
- })
97
- : children}
98
- </td>
99
- );
100
- },
101
- ...(extraComponents || {}),
102
- }}
103
- />
122
+ // The components map below may be a fresh object each render; that is harmless because the
123
+ // renderers it points at are stable module-level types, which is what React reconciles on.
124
+ <CopyPropsContext.Provider value={copyProps}>
125
+ <ReactMarkdown
126
+ {...props}
127
+ rehypePlugins={[rehypeHighlight, rehypeKatex]}
128
+ remarkPlugins={[remarkGfm, remarkMath]}
129
+ className={classNames(styles.MarkdownViews, className, "markdown-body")}
130
+ components={{
131
+ code: CodeBlock,
132
+ td: TableCell,
133
+ ...(extraComponents || {}),
134
+ }}
135
+ />
136
+ </CopyPropsContext.Provider>
104
137
  );
105
138
  };
106
139
 
@@ -43,6 +43,45 @@ export default () => {
43
43
  };
44
44
  ```
45
45
 
46
+ ## 触发器模式(推荐)
47
+
48
+ 传入 `children` 作为触发元素,并且**不传 `open`**,弹窗自持开关状态,调用处原地包一层即可,不必为每个可确认的操作各存一份 `open`。
49
+
50
+ 列表里尤其明显:`map()` 内部无法为每一行单独 `useState`,受控写法只能把「当前待确认的是哪一行」提到循环外,触发点和弹窗被拆到两个作用域;触发器模式没有这个问题。
51
+
52
+ ```tsx
53
+ import React from "react";
54
+ import { SecondConf } from "@hsu-react/ui";
55
+ import { Button } from "antd";
56
+
57
+ const list = [
58
+ { id: "1", name: "西游记" },
59
+ { id: "2", name: "水浒传" },
60
+ ];
61
+
62
+ export default () => (
63
+ <>
64
+ {list.map((it) => (
65
+ <SecondConf
66
+ key={it.id}
67
+ contentTitle={`删除《${it.name}》`}
68
+ contentText="删除后将无法恢复,请谨慎操作。"
69
+ okButtonProps={{ danger: true }}
70
+ onOk={() => console.log("deleted", it.id)}
71
+ >
72
+ <Button danger size="small" style={{ marginRight: 8 }}>
73
+ 删除 {it.name}
74
+ </Button>
75
+ </SecondConf>
76
+ ))}
77
+ </>
78
+ );
79
+ ```
80
+
81
+ 触发元素自身的 `onClick` 会照常先执行;点击会 `stopPropagation`,避免嵌在可点击的行/卡片里时连带触发整行的点击。
82
+
83
+ 同时传 `open` 和 `children` 时以受控为准,此时 `children` 只作为触发元素渲染,开关由外部决定。
84
+
46
85
  ## API
47
86
 
48
87
  在 `Modal`(即 antd `ModalProps`)基础上扩展(`title` 已被内部接管):
@@ -51,5 +90,8 @@ export default () => {
51
90
  | --- | --- | --- | --- |
52
91
  | contentTitle | 标题中「确认 … 吗?」的中间内容 | `ReactNode` | - |
53
92
  | contentText | 标题下方的补充说明文案 | `ReactNode` | - |
93
+ | children | 触发元素;不传 `open` 时弹窗自持开关状态 | `ReactElement` | - |
54
94
 
55
95
  > 其余属性(`open`、`onOk`、`onCancel`、`width`、`confirmLoading` 等)与 `Modal` 一致;组件内部默认 `width={800}`、`centered`、`maskClosable={false}`、`mask={false}`。
96
+ >
97
+ > `open` 传了就是受控(含 `undefined` 以外的任何值),`onOk` / `onCancel` 里需自行关闭;不传则由组件自行开关,`onOk` 只写业务动作即可。
@@ -1,36 +1,86 @@
1
- import React, { ReactNode } from "react";
1
+ import React, { ReactElement, ReactNode, cloneElement, useState } from "react";
2
2
  import styles from "./index.module.scss";
3
3
  import Icon from "../Icon";
4
4
  import Modal, { ModalProps } from "../Modal";
5
5
 
6
- interface SecondConfProps extends Omit<ModalProps, "title"> {
6
+ export interface SecondConfProps
7
+ extends Omit<ModalProps, "title" | "children"> {
7
8
  contentTitle?: ReactNode;
8
9
  contentText?: ReactNode;
10
+ /**
11
+ * Trigger element (button/icon). When provided and `open` is omitted, the
12
+ * dialog owns its open state, so the caller does not have to keep one flag
13
+ * per confirmable action — which is otherwise impossible inside a list
14
+ * `map()`. The child's own `onClick` still fires first, and the click stops
15
+ * propagating so a trigger nested in a clickable row or card does not also
16
+ * activate that row.
17
+ */
18
+ children?: ReactElement<{ onClick?: (e: React.MouseEvent) => void }>;
9
19
  }
10
20
 
11
21
  const SecondConf: React.FC<SecondConfProps> = (props) => {
12
- const { classNames, contentTitle, contentText, ...modalConfig } = props;
22
+ const {
23
+ classNames,
24
+ contentTitle,
25
+ contentText,
26
+ children,
27
+ open,
28
+ onOk,
29
+ onCancel,
30
+ ...modalConfig
31
+ } = props;
32
+ const [selfOpen, setSelfOpen] = useState<boolean>(false);
33
+
34
+ // Controlled whenever `open` is supplied; self-managed only in trigger mode.
35
+ const isControlled = open !== undefined;
36
+ const visible = isControlled ? open : selfOpen;
37
+
38
+ const trigger =
39
+ children &&
40
+ cloneElement(children, {
41
+ onClick: (e: React.MouseEvent) => {
42
+ e.stopPropagation();
43
+ children.props.onClick?.(e);
44
+ if (!isControlled) setSelfOpen(true);
45
+ },
46
+ });
47
+
48
+ const handleOk: ModalProps["onOk"] = (e) => {
49
+ if (!isControlled) setSelfOpen(false);
50
+ onOk?.(e);
51
+ };
52
+
53
+ const handleCancel: ModalProps["onCancel"] = (e) => {
54
+ if (!isControlled) setSelfOpen(false);
55
+ onCancel?.(e);
56
+ };
13
57
 
14
58
  return (
15
- <Modal
16
- width={800}
17
- {...modalConfig}
18
- centered
19
- className={styles.SecondConf}
20
- classNames={{
21
- body: `${styles.body} ${classNames?.body || ""}`,
22
- ...classNames,
23
- }}
24
- maskClosable={false}
25
- mask={false}
26
- title=" "
27
- >
28
- <Icon icon="mingcute:question-line" className={styles.icon} />
29
- <div className={styles.content}>
30
- <div className={styles.title}>确认{contentTitle}吗?</div>
31
- <div className={styles.text}>{contentText}</div>
32
- </div>
33
- </Modal>
59
+ <>
60
+ {trigger}
61
+ <Modal
62
+ width={800}
63
+ {...modalConfig}
64
+ open={visible}
65
+ onOk={handleOk}
66
+ onCancel={handleCancel}
67
+ centered
68
+ className={styles.SecondConf}
69
+ classNames={{
70
+ body: `${styles.body} ${classNames?.body || ""}`,
71
+ ...classNames,
72
+ }}
73
+ maskClosable={false}
74
+ mask={false}
75
+ title=" "
76
+ >
77
+ <Icon icon="mingcute:question-line" className={styles.icon} />
78
+ <div className={styles.content}>
79
+ <div className={styles.title}>确认{contentTitle}吗?</div>
80
+ <div className={styles.text}>{contentText}</div>
81
+ </div>
82
+ </Modal>
83
+ </>
34
84
  );
35
85
  };
36
86