UNPKG

@xrenders/xflow

Version:

一款功能强大、易用灵活的流程编辑器框架,帮助你轻松构建复杂的工作流和流程产品

100 lines 5.66 kB
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); } function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); } function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; } function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); } 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."); } function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } 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; } } function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } import BraftEditor from 'braft-editor'; import 'braft-editor/dist/index.css'; import { debounce } from 'lodash'; import React, { memo, useRef, useState } from 'react'; import { shallow } from 'zustand/shallow'; import { useStore } from '../../hooks/useStore'; import "./index.css"; export default /*#__PURE__*/memo(function (props) { var onClick = props.onClick, type = props.type, data = props.data, id = props.id; var _useStore = useStore(function (s) { return { nodes: s.nodes, setNodes: s.setNodes }; }, shallow), nodes = _useStore.nodes, setNodes = _useStore.setNodes; var editorRef = useRef(null); var _useState = useState(BraftEditor.createEditorState(data === null || data === void 0 ? void 0 : data.value)), _useState2 = _slicedToArray(_useState, 2), editorState = _useState2[0], setEditorState = _useState2[1]; // 当编辑器内容发生变化时触发 var handleEditorChange = function handleEditorChange(newEditorState) { setEditorState(newEditorState); handleNodeValueChange({ value: newEditorState.toHTML() }); }; var handleNodeValueChange = debounce(function (data) { var _iterator = _createForOfIteratorHelper(nodes), _step; try { for (_iterator.s(); !(_step = _iterator.n()).done;) { var node = _step.value; if (node.id === id) { node.data = Object.assign(Object.assign({}, node === null || node === void 0 ? void 0 : node.data), data); break; } } } catch (err) { _iterator.e(err); } finally { _iterator.f(); } setNodes(_toConsumableArray(nodes), false); }, 200); return /*#__PURE__*/React.createElement("div", { className: "node-note-wrap", onMouseDown: function onMouseDown(e) { return e.stopPropagation(); }, onClick: function onClick(e) { return e.stopPropagation(); } }, /*#__PURE__*/React.createElement(BraftEditor, { ref: editorRef, value: editorState, onChange: handleEditorChange, placeholder: "\u8BF7\u8F93\u5165\u5185\u5BB9...", className: "nodrag nopan nowheel node-note-braft", language: "zh", style: { width: '240px', height: '160px', backgroundColor: 'rgb(239, 248, 255)', border: '1px solid rgb(132, 202, 255)', borderRadius: '8px', cursor: 'text', userSelect: 'text' }, controls: [ // 'headings', // 'font-size', 'bold', 'italic', 'underline', 'text-color', // 'link', // 'media', 'strike-through', 'list-ol'], contentStyle: { height: '100px', overflowY: 'auto' }, contentClassName: "node-note-braft-content", controlBarClassName: "node-note-braft-control" })); });