@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
113 lines (112 loc) • 4.88 kB
JavaScript
'use client';
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _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(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); }
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; }
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(arr) { if (Array.isArray(arr)) return arr; }
import { Button, Select } from 'antd';
import isEqual from 'fast-deep-equal';
import { Plus, Trash } from 'lucide-react';
import { memo, useEffect, useReducer } from 'react';
import { Flexbox } from 'react-layout-kit';
import ActionIcon from "../../ActionIcon";
import Icon from "../../Icon";
import { ControlInput } from "../../components/ControlInput";
import { messagesReducer } from "./messageReducer";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export var EditableMessageList = /*#__PURE__*/memo(function (_ref) {
var disabled = _ref.disabled,
dataSources = _ref.dataSources,
onChange = _ref.onChange;
var _useReducer = useReducer(messagesReducer, dataSources),
_useReducer2 = _slicedToArray(_useReducer, 2),
chatMessages = _useReducer2[0],
dispatch = _useReducer2[1];
useEffect(function () {
if (!isEqual(dataSources, chatMessages)) {
onChange === null || onChange === void 0 || onChange(chatMessages);
}
}, [chatMessages]);
return dataSources ? /*#__PURE__*/_jsxs(Flexbox, {
gap: 12,
children: [chatMessages.map(function (item, index) {
return /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
gap: 8,
horizontal: true,
width: '100%',
children: [/*#__PURE__*/_jsx(Select, {
disabled: disabled,
dropdownStyle: {
zIndex: 100
},
onChange: function onChange(value) {
dispatch({
index: index,
role: value,
type: 'updateMessageRole'
});
},
options: [{
label: 'System',
value: 'system'
}, {
label: 'Input',
value: 'user'
}, {
label: 'Output',
value: 'assistant'
}],
style: {
width: 120
},
value: item.role
}), /*#__PURE__*/_jsx(ControlInput, {
disabled: disabled,
onChange: function onChange(e) {
dispatch({
index: index,
message: e,
type: 'updateMessage'
});
},
placeholder: item.role === 'user' ? '请填入输入的样例内容' : '请填入输出的样例',
value: item.content
}), /*#__PURE__*/_jsx(ActionIcon, {
icon: Trash,
onClick: function onClick() {
dispatch({
index: index,
type: 'deleteMessage'
});
},
placement: "right",
size: {
fontSize: 16
},
title: "Delete"
})]
}, "".concat(index, "-").concat(item.content));
}), /*#__PURE__*/_jsx(Button, {
block: true,
disabled: disabled,
icon: /*#__PURE__*/_jsx(Icon, {
icon: Plus
}),
onClick: function onClick() {
var lastMeg = chatMessages.at(-1);
dispatch({
message: {
content: '',
role: (lastMeg === null || lastMeg === void 0 ? void 0 : lastMeg.role) === 'user' ? 'assistant' : 'user'
},
type: 'addMessage'
});
},
children: "Add Props"
})]
}) : undefined;
}, isEqual);
export default EditableMessageList;