UNPKG

@difizen/ai-flow

Version:

Scalable, out-of-the-box, agent-oriented flow

69 lines 3.5 kB
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 { Form } from 'antd'; import { useEffect } from 'react'; import { SelectInNode } from "../AIBasic/SelectInNode//index"; import { ReferenceSelect } from "../ReferenceSelect/index"; import React from 'react'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; export var ConditionForm = function ConditionForm(props) { var refOptions = props.refOptions, value = props.value, onChange = props.onChange; var _Form$useForm = Form.useForm(), _Form$useForm2 = _slicedToArray(_Form$useForm, 1), form = _Form$useForm2[0]; var compare = Form.useWatch('compare', form); useEffect(function () { if (value) { form.setFieldsValue(value.conditions[0]); } }, [form, value, value === null || value === void 0 ? void 0 : value.conditions]); return /*#__PURE__*/_jsxs(Form, { form: form, layout: "inline", onValuesChange: function onValuesChange(_, allFields) { form.validateFields().then(function () { if (!value) { return; } onChange({ name: value.name, conditions: [allFields] }); return; }).catch(console.error); }, children: [/*#__PURE__*/_jsx(Form.Item, { name: ['left', 'value'], children: /*#__PURE__*/_jsx(ReferenceSelect, { refOptions: refOptions }) }), /*#__PURE__*/_jsx(Form.Item, { name: "compare", children: /*#__PURE__*/_jsx(SelectInNode, { className: "w-[80px]", options: [{ label: '等于', value: 'equal' }, { label: '不等于', value: 'not_equal' }, { label: '为空', value: 'blank' }] }) }), compare !== 'blank' && /*#__PURE__*/_jsx(Form.Item, { name: ['right', 'value'], children: /*#__PURE__*/_jsx(ReferenceSelect, { refOptions: refOptions }) })] }); };