import React, { Children, createContext, useContext, useEffect, useState, } from 'react'; import { FormDialog, FormLayout } from '@formily/antd'; import { connect, observer, mapProps, mapReadPretty, useField, useFieldSchema, RecursionField, Schema, } from '@formily/react'; import { Menu, MenuProps, MenuItemProps, SubMenuProps, DividerProps, Dropdown, Modal, Button, Spin, } from 'antd'; import { MenuOutlined, GroupOutlined, PlusOutlined, LinkOutlined, AppstoreAddOutlined, EditOutlined, DeleteOutlined, ArrowRightOutlined, SettingOutlined, ArrowUpOutlined, ArrowDownOutlined, LoadingOutlined, DownOutlined, DatabaseOutlined, } from '@ant-design/icons'; import { uid } from '@formily/shared'; import { DesignableSchemaContext, RefreshDesignableSchemaContext, SchemaField, } from '../SchemaField'; import { SchemaBlock } from '../'; import table from './table'; import markdown from './markdown'; import form from './form'; import { useRequest } from 'ahooks'; const row = (schema) => { const component = schema['x-component']; return { type: 'void', name: `gr_${uid()}`, 'x-component': 'Grid.Row', properties: { [`gc_${uid()}`]: { type: 'void', 'x-component': 'Grid.Col', 'x-component-props': { size: 1, }, properties: { [`gb_${uid()}`]: { type: 'void', 'x-component': 'Grid.Block', properties: { [`gbn_${uid()}`]: schema, }, }, }, }, }, }; }; export function removeProperty(property: Schema) { property.parent.removeProperty(property.name); } export function addPropertyBefore(target, prop) { Object.keys(target.parent.properties).forEach((name) => { if (name === target.name) { target.parent.addProperty(prop.name, prop); } const property = target.parent.properties[name]; property.parent.removeProperty(property.name); target.parent.addProperty(property.name, property.toJSON()); }); } export function addPropertyAfter(target, prop) { Object.keys(target.parent.properties).forEach((name) => { const property = target.parent.properties[name]; property.parent.removeProperty(property.name); target.parent.addProperty(property.name, property.toJSON()); if (name === target.name) { target.parent.addProperty(prop.name, prop); } }); } export function useSchemaQuery(segments?: any[]) { const context = useContext(DesignableSchemaContext); const refresh = useContext(RefreshDesignableSchemaContext); const fieldSchema = useFieldSchema(); const field = useField(); const getSchemaByPath = (path) => { let s: Schema = context; const names = [...path]; // names.shift(); while (s && names.length) { const name = names.shift(); s = s.properties[name]; } return s; }; const schema = getSchemaByPath(segments || field.address.segments); console.log({ context, schema }); return { refresh, schema, appendChild(data) { schema.addProperty(data.name, data); refresh(); }, insertAfter(data) { addPropertyAfter(schema, data); refresh(); }, insertBefore(data) { addPropertyBefore(schema, data); refresh(); }, push(data) { addPropertyBefore(schema, data); }, remove() { removeProperty(schema); refresh(); }, }; } export const AddNew: any = observer((props) => { const field = useField(); const segments = [...field.address.segments]; segments.pop(); segments.pop(); segments.pop(); // segments.pop(); const { insertBefore, refresh, schema } = useSchemaQuery(segments); console.log('field.address.segments', segments, schema); const { data = [], loading, mutate, } = useRequest(() => { return Promise.resolve([ { title: '数据表1' }, { title: '数据表2' }, { title: '数据表3' }, ]); }); const [visible, setVisible] = useState(false); const dbschema = { type: 'object', properties: { layout: { type: 'void', 'x-component': 'FormLayout', 'x-component-props': { layout: 'vertical', }, properties: { input: { type: 'string', title: '数据表名称', required: true, 'x-decorator': 'FormItem', 'x-component': 'Input', }, array: { type: 'array', title: '数据表字段', 'x-component': 'ArrayCollapse', 'x-component-props': { accordion: true, }, // maxItems: 3, 'x-decorator': 'FormItem', items: { type: 'object', 'x-component': 'ArrayCollapse.CollapsePanel', 'x-component-props': { header: '字段', }, properties: { index: { type: 'void', 'x-component': 'ArrayCollapse.Index', }, input: { type: 'string', 'x-decorator': 'FormItem', title: 'Input', required: true, 'x-component': 'Input', }, remove: { type: 'void', 'x-component': 'ArrayCollapse.Remove', }, moveUp: { type: 'void', 'x-component': 'ArrayCollapse.MoveUp', }, moveDown: { type: 'void', 'x-component': 'ArrayCollapse.MoveDown', }, }, }, properties: { addition: { type: 'void', title: '添加字段', 'x-component': 'ArrayCollapse.Addition', }, }, }, }, }, }, }; if (loading) { return ; } console.log({ data }); return ( {data.map((item, index) => { return ( { const rowData = row(form()); insertBefore(rowData); }} > {item.title} ); })} { FormDialog('新建数据表', () => { return ; }) .open({ initialValues: { // aaa: '123', }, }) .then(() => { const items = [...data]; items.push({ title: '数据表5' }); mutate(items); const rowData = row(form()); insertBefore(rowData); }); // const rowData = row(table()); // insertBefore(rowData); }} > 新增数据表 {data.map((item, index) => { return ( { const rowData = row(table()); console.log({ rowData }); insertBefore(rowData); }} > {item.title} ); })} { FormDialog('新建数据表', () => { return ; }) .open({ initialValues: { // aaa: '123', }, }) .then(() => { const items = [...data]; items.push({ title: '数据表4' }); mutate(items); const rowData = row(table()); insertBefore(rowData); }); }} > 新建数据表 { const rowData = row(markdown()); insertBefore(rowData); }} > 新建 Markdown } > ); }); AddNew.FormItem = observer((props) => { const field = useField(); const segments = [...field.address.segments]; segments.pop(); segments.pop(); segments.pop(); const { insertBefore, refresh, schema } = useSchemaQuery(segments); const insertBeforeHandle = () => { const rowData = row({ type: 'string', // required: true, name: `f_${uid()}`, title: `字段${uid()}`, 'x-decorator': 'FormItem', 'x-designable-bar': 'FormItem.DesignableBar', 'x-component': 'Input', }); console.log({ rowData }); insertBefore(rowData); }; return ( 字段1 字段2 字段3 单行文本 多行文本 电子邮箱 手机号 数字 } > ); }); export default AddNew;