updates...
This commit is contained in:
parent
03da153052
commit
61796cbc27
@ -27,6 +27,7 @@
|
|||||||
"beautiful-react-hooks": "^0.35.0",
|
"beautiful-react-hooks": "^0.35.0",
|
||||||
"constate": "^3.3.0",
|
"constate": "^3.3.0",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
|
"monaco-editor": "^0.25.2",
|
||||||
"react-dnd": "^14.0.2",
|
"react-dnd": "^14.0.2",
|
||||||
"react-dnd-html5-backend": "^14.0.0",
|
"react-dnd-html5-backend": "^14.0.0",
|
||||||
"react-dnd-preview": "^6.0.2",
|
"react-dnd-preview": "^6.0.2",
|
||||||
|
@ -1,51 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { createFromIconfontCN } from '@ant-design/icons';
|
|
||||||
import * as antIcons from '@ant-design/icons';
|
|
||||||
|
|
||||||
export const IconFont = createFromIconfontCN({
|
|
||||||
scriptUrl: ['//at.alicdn.com/t/font_2261954_u9jzwc44ug.js'],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const icons = new Map<string, any>();
|
|
||||||
|
|
||||||
export function registerIcon(type: string, icon: any = IconFont) {
|
|
||||||
icons.set(type.toLowerCase(), icon);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function hasIcon(type: string) {
|
|
||||||
if (!type) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return icons.has(type.toLowerCase());
|
|
||||||
}
|
|
||||||
|
|
||||||
export function registerIcons(components) {
|
|
||||||
Object.keys(components).forEach((type) => {
|
|
||||||
registerIcon(type, components[type]);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
Object.keys(antIcons).forEach((name) => {
|
|
||||||
if (name.endsWith('Outlined')) {
|
|
||||||
registerIcon(name, antIcons[name]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
interface IconProps {
|
|
||||||
type: string;
|
|
||||||
[key: string]: any;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function Icon(props: IconProps) {
|
|
||||||
const { type = '', ...restProps } = props;
|
|
||||||
if (type && icons.has(type.toLowerCase())) {
|
|
||||||
const IconComponent = icons.get(type.toLowerCase());
|
|
||||||
if (IconComponent === IconFont) {
|
|
||||||
return <IconFont type={type} />;
|
|
||||||
}
|
|
||||||
return <IconComponent {...restProps} />;
|
|
||||||
}
|
|
||||||
return <IconFont type={type} />;
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Icon;
|
|
@ -0,0 +1,50 @@
|
|||||||
|
import { Button } from 'antd';
|
||||||
|
import React from 'react';
|
||||||
|
import { SchemaRenderer, useDesignable, useSchema } from '..';
|
||||||
|
import { uid } from '@formily/shared';
|
||||||
|
|
||||||
|
const Hello = () => {
|
||||||
|
return <div>Hello</div>;
|
||||||
|
};
|
||||||
|
|
||||||
|
const AddNew = () => {
|
||||||
|
const { schema, refresh, insertBefore } = useDesignable();
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Button
|
||||||
|
onClick={() => {
|
||||||
|
insertBefore({
|
||||||
|
type: 'void',
|
||||||
|
'x-component': 'Hello',
|
||||||
|
});
|
||||||
|
refresh();
|
||||||
|
console.log({ schema });
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Add New
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return (
|
||||||
|
<SchemaRenderer
|
||||||
|
debug={true}
|
||||||
|
components={{ Hello, AddNew }}
|
||||||
|
schema={{
|
||||||
|
type: 'object',
|
||||||
|
properties: {
|
||||||
|
hello: {
|
||||||
|
type: 'void',
|
||||||
|
'x-component': 'Hello',
|
||||||
|
},
|
||||||
|
addnew: {
|
||||||
|
type: 'void',
|
||||||
|
'x-component': 'AddNew',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
1
packages/client/src/components/schema-renderer/index.md
Normal file
1
packages/client/src/components/schema-renderer/index.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
<code src="./demos/demo1.tsx"/>
|
@ -1,46 +1,51 @@
|
|||||||
import React, {
|
|
||||||
createContext,
|
|
||||||
useCallback,
|
|
||||||
useContext,
|
|
||||||
useMemo,
|
|
||||||
useState,
|
|
||||||
} from 'react';
|
|
||||||
import { createForm } from '@formily/core';
|
import { createForm } from '@formily/core';
|
||||||
import {
|
import {
|
||||||
Field,
|
|
||||||
ISchema,
|
|
||||||
observer,
|
|
||||||
Schema,
|
|
||||||
createSchemaField,
|
createSchemaField,
|
||||||
FormProvider,
|
FormProvider,
|
||||||
useField,
|
ISchema,
|
||||||
|
Schema,
|
||||||
|
SchemaOptionsContext,
|
||||||
useFieldSchema,
|
useFieldSchema,
|
||||||
useForm,
|
useForm,
|
||||||
SchemaOptionsContext,
|
|
||||||
} from '@formily/react';
|
} from '@formily/react';
|
||||||
import { observable } from '@formily/reactive';
|
import { uid } from '@formily/shared';
|
||||||
import { uid, clone } from '@formily/shared';
|
import constate from 'constate';
|
||||||
|
import { get } from 'lodash';
|
||||||
|
import React, { createContext } from 'react';
|
||||||
|
import { useState } from 'react';
|
||||||
|
import { useContext } from 'react';
|
||||||
|
import { useMemo } from 'react';
|
||||||
|
|
||||||
|
import { CodeOutlined } from '@ant-design/icons';
|
||||||
|
import Editor from '@monaco-editor/react';
|
||||||
|
|
||||||
import { ArrayCollapse, ArrayTable, FormLayout } from '@formily/antd';
|
import { ArrayCollapse, ArrayTable, FormLayout } from '@formily/antd';
|
||||||
|
|
||||||
import { Space, Card, Modal, Spin } from 'antd';
|
import { Space, Card, Modal, Spin } from 'antd';
|
||||||
import { Action, useLogin, useRegister, useSubmit, useDesignableValues } from '../action';
|
import {
|
||||||
import { AddNew } from '../add-new';
|
Action,
|
||||||
import { Cascader } from '../cascader';
|
useLogin,
|
||||||
import { Checkbox } from '../checkbox';
|
useRegister,
|
||||||
import { ColorSelect } from '../color-select';
|
useSubmit,
|
||||||
import { DatabaseField } from '../database-field';
|
useDesignableValues,
|
||||||
import { DatePicker } from '../date-picker';
|
} from '../../schemas/action';
|
||||||
import { Filter } from '../filter';
|
import { AddNew } from '../../schemas/add-new';
|
||||||
import { Form } from '../form';
|
import { Cascader } from '../../schemas/cascader';
|
||||||
import { Grid } from '../grid';
|
import { Checkbox } from '../../schemas/checkbox';
|
||||||
import { IconPicker } from '../icon-picker';
|
import { ColorSelect } from '../../schemas/color-select';
|
||||||
import { Input } from '../input';
|
import { DatabaseField } from '../../schemas/database-field';
|
||||||
import { InputNumber } from '../input-number';
|
import { DatePicker } from '../../schemas/date-picker';
|
||||||
import { Markdown } from '../markdown';
|
import { Filter } from '../../schemas/filter';
|
||||||
import { Menu } from '../menu';
|
import { Form } from '../../schemas/form';
|
||||||
import { Password } from '../password';
|
import { Grid } from '../../schemas/grid';
|
||||||
import { Radio } from '../radio';
|
import { IconPicker } from '../../schemas/icon-picker';
|
||||||
import { Select } from '../select';
|
import { Input } from '../../schemas/input';
|
||||||
|
import { InputNumber } from '../../schemas/input-number';
|
||||||
|
import { Markdown } from '../../schemas/markdown';
|
||||||
|
import { Menu } from '../../schemas/menu';
|
||||||
|
import { Password } from '../../schemas/password';
|
||||||
|
import { Radio } from '../../schemas/radio';
|
||||||
|
import { Select } from '../../schemas/select';
|
||||||
import {
|
import {
|
||||||
Table,
|
Table,
|
||||||
useTableRow,
|
useTableRow,
|
||||||
@ -48,94 +53,81 @@ import {
|
|||||||
useTableUpdateAction,
|
useTableUpdateAction,
|
||||||
useTableDestroyAction,
|
useTableDestroyAction,
|
||||||
useTableFilterAction,
|
useTableFilterAction,
|
||||||
} from '../table';
|
} from '../../schemas/table';
|
||||||
import { Tabs } from '../tabs';
|
import { Tabs } from '../../schemas/tabs';
|
||||||
import { TimePicker } from '../time-picker';
|
import { TimePicker } from '../../schemas/time-picker';
|
||||||
import { Upload } from '../upload';
|
import { Upload } from '../../schemas/upload';
|
||||||
import { FormItem } from '../form-item';
|
import { FormItem } from '../../schemas/form-item';
|
||||||
import { BlockItem } from '../block-item';
|
import { BlockItem } from '../../schemas/block-item';
|
||||||
import { DragAndDrop } from '../drag-and-drop';
|
import { DragAndDrop } from '../../schemas/drag-and-drop';
|
||||||
|
|
||||||
import { CodeOutlined } from '@ant-design/icons';
|
|
||||||
import Editor from '@monaco-editor/react';
|
|
||||||
import { get } from 'lodash';
|
|
||||||
|
|
||||||
export const BlockContext = createContext({ dragRef: null });
|
export const BlockContext = createContext({ dragRef: null });
|
||||||
|
|
||||||
const Div = (props) => <div {...props} />;
|
const Div = (props) => <div {...props} />;
|
||||||
|
|
||||||
export const scope = {
|
interface DesignableContextProps {
|
||||||
useLogin,
|
schema?: Schema;
|
||||||
useRegister,
|
refresh?: any;
|
||||||
useSubmit,
|
|
||||||
useTableCreateAction,
|
|
||||||
useTableDestroyAction,
|
|
||||||
useTableFilterAction,
|
|
||||||
useTableRow,
|
|
||||||
useTableUpdateAction,
|
|
||||||
useDesignableValues,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const components = {
|
|
||||||
Card,
|
|
||||||
Div,
|
|
||||||
Space,
|
|
||||||
|
|
||||||
ArrayCollapse,
|
|
||||||
ArrayTable,
|
|
||||||
FormLayout,
|
|
||||||
|
|
||||||
DragAndDrop,
|
|
||||||
|
|
||||||
BlockItem,
|
|
||||||
FormItem,
|
|
||||||
|
|
||||||
Action,
|
|
||||||
AddNew,
|
|
||||||
Cascader,
|
|
||||||
Checkbox,
|
|
||||||
ColorSelect,
|
|
||||||
DatabaseField,
|
|
||||||
DatePicker,
|
|
||||||
Filter,
|
|
||||||
Form,
|
|
||||||
Grid,
|
|
||||||
IconPicker,
|
|
||||||
Input,
|
|
||||||
InputNumber,
|
|
||||||
Markdown,
|
|
||||||
Menu,
|
|
||||||
Password,
|
|
||||||
Radio,
|
|
||||||
Select,
|
|
||||||
Table,
|
|
||||||
Tabs,
|
|
||||||
TimePicker,
|
|
||||||
Upload,
|
|
||||||
};
|
|
||||||
|
|
||||||
export function registerScope(scopes) {
|
|
||||||
Object.keys(scopes).forEach((key) => {
|
|
||||||
scope[key] = scopes[key];
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function registerComponents(values) {
|
export const SchemaField = createSchemaField({
|
||||||
Object.keys(values).forEach((key) => {
|
scope: {
|
||||||
components[key] = values[key];
|
useLogin,
|
||||||
});
|
useRegister,
|
||||||
}
|
useSubmit,
|
||||||
|
useTableCreateAction,
|
||||||
|
useTableDestroyAction,
|
||||||
|
useTableFilterAction,
|
||||||
|
useTableRow,
|
||||||
|
useTableUpdateAction,
|
||||||
|
useDesignableValues,
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
Card,
|
||||||
|
Div,
|
||||||
|
Space,
|
||||||
|
|
||||||
export interface DesignableContextProps {
|
ArrayCollapse,
|
||||||
schema: Schema;
|
ArrayTable,
|
||||||
refresh: () => void;
|
FormLayout,
|
||||||
}
|
|
||||||
|
|
||||||
export const DesignableContext = createContext<DesignableContextProps>({
|
DragAndDrop,
|
||||||
schema: null,
|
|
||||||
refresh: null,
|
BlockItem,
|
||||||
|
FormItem,
|
||||||
|
|
||||||
|
Action,
|
||||||
|
AddNew,
|
||||||
|
Cascader,
|
||||||
|
Checkbox,
|
||||||
|
ColorSelect,
|
||||||
|
DatabaseField,
|
||||||
|
DatePicker,
|
||||||
|
Filter,
|
||||||
|
Form,
|
||||||
|
Grid,
|
||||||
|
IconPicker,
|
||||||
|
Input,
|
||||||
|
InputNumber,
|
||||||
|
Markdown,
|
||||||
|
Menu,
|
||||||
|
Password,
|
||||||
|
Radio,
|
||||||
|
Select,
|
||||||
|
Table,
|
||||||
|
Tabs,
|
||||||
|
TimePicker,
|
||||||
|
Upload,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const DesignableContext = createContext<DesignableContextProps>(null);
|
||||||
|
|
||||||
|
export function useSchema(path?: any) {
|
||||||
|
const { schema, refresh } = useContext(DesignableContext);
|
||||||
|
return { schema, refresh };
|
||||||
|
}
|
||||||
|
|
||||||
export function pathToArray(path): string[] {
|
export function pathToArray(path): string[] {
|
||||||
if (Array.isArray(path)) {
|
if (Array.isArray(path)) {
|
||||||
return [...path];
|
return [...path];
|
||||||
@ -188,13 +180,16 @@ export function addPropertyAfter(target: Schema, data: ISchema) {
|
|||||||
export function useDesignable(path?: any) {
|
export function useDesignable(path?: any) {
|
||||||
const { schema, refresh } = useContext(DesignableContext);
|
const { schema, refresh } = useContext(DesignableContext);
|
||||||
const schemaPath = path || useSchemaPath();
|
const schemaPath = path || useSchemaPath();
|
||||||
const currentSchema = findPropertyByPath(schema, schemaPath) || ({} as Schema);
|
const fieldSchema = useFieldSchema();
|
||||||
console.log('useDesignable', { schema, schemaPath, currentSchema });
|
const currentSchema =
|
||||||
|
findPropertyByPath(schema, schemaPath) || ({} as Schema);
|
||||||
|
// console.log('useDesignable', { schema, schemaPath, currentSchema });
|
||||||
const options = useContext(SchemaOptionsContext);
|
const options = useContext(SchemaOptionsContext);
|
||||||
const DesignableBar = get(options.components, currentSchema['x-designable-bar']) || (() => null);
|
const DesignableBar =
|
||||||
|
get(options.components, currentSchema['x-designable-bar']) || (() => null);
|
||||||
return {
|
return {
|
||||||
DesignableBar,
|
DesignableBar,
|
||||||
schema: currentSchema,
|
schema: currentSchema || fieldSchema,
|
||||||
refresh,
|
refresh,
|
||||||
prepend: (property: ISchema, targetPath?: any): Schema => {
|
prepend: (property: ISchema, targetPath?: any): Schema => {
|
||||||
let target = currentSchema;
|
let target = currentSchema;
|
||||||
@ -218,7 +213,7 @@ export function useDesignable(path?: any) {
|
|||||||
current.parent.removeProperty(current.name);
|
current.parent.removeProperty(current.name);
|
||||||
properties[current.name] = current.toJSON();
|
properties[current.name] = current.toJSON();
|
||||||
});
|
});
|
||||||
console.log({ properties }, target.properties);
|
// console.log({ properties }, target.properties);
|
||||||
target.setProperties(properties);
|
target.setProperties(properties);
|
||||||
refresh();
|
refresh();
|
||||||
return target.properties[property.name];
|
return target.properties[property.name];
|
||||||
@ -331,7 +326,7 @@ export function getSchemaPath(schema: Schema) {
|
|||||||
path.unshift(parent.name);
|
path.unshift(parent.name);
|
||||||
parent = parent.parent;
|
parent = parent.parent;
|
||||||
}
|
}
|
||||||
console.log('getSchemaPath', path, schema);
|
// console.log('getSchemaPath', path, schema);
|
||||||
return [...path];
|
return [...path];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -341,38 +336,6 @@ export function useSchemaPath() {
|
|||||||
return [...path];
|
return [...path];
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log({ scope, components });
|
|
||||||
|
|
||||||
export const createDesignableSchemaField = (options) => {
|
|
||||||
const SchemaField = createSchemaField(options);
|
|
||||||
|
|
||||||
const DesignableSchemaField = (props) => {
|
|
||||||
|
|
||||||
const schema = useMemo(() => new Schema(props.schema), [props.schema]);
|
|
||||||
const [, refresh] = useState(0);
|
|
||||||
if (props.designable === false) {
|
|
||||||
return <SchemaField schema={schema} />;
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
<DesignableContext.Provider
|
|
||||||
value={{
|
|
||||||
schema,
|
|
||||||
refresh: () => {
|
|
||||||
refresh(Math.random());
|
|
||||||
props.onRefresh && props.onRefresh(schema);
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<SchemaField scope={props.scope} components={props.components} schema={schema} />
|
|
||||||
{props.debug && <CodePreview schema={schema} />}
|
|
||||||
{props.debug && <FormValues />}
|
|
||||||
</DesignableContext.Provider>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
return DesignableSchemaField;
|
|
||||||
};
|
|
||||||
|
|
||||||
const FormValues = () => {
|
const FormValues = () => {
|
||||||
const form = useForm();
|
const form = useForm();
|
||||||
const [visible, setVisible] = useState(false);
|
const [visible, setVisible] = useState(false);
|
||||||
@ -400,7 +363,10 @@ const CodePreview = ({ schema }) => {
|
|||||||
const [visible, setVisible] = useState(false);
|
const [visible, setVisible] = useState(false);
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<CodeOutlined style={{position: 'relative', zIndex: 100}} onClick={() => setVisible(true)} />
|
<CodeOutlined
|
||||||
|
style={{ position: 'relative', zIndex: 100 }}
|
||||||
|
onClick={() => setVisible(true)}
|
||||||
|
/>
|
||||||
<Modal
|
<Modal
|
||||||
width={'50%'}
|
width={'50%'}
|
||||||
onOk={() => setVisible(false)}
|
onOk={() => setVisible(false)}
|
||||||
@ -418,31 +384,25 @@ const CodePreview = ({ schema }) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const SchemaField = createSchemaField({
|
|
||||||
scope,
|
|
||||||
components,
|
|
||||||
});
|
|
||||||
|
|
||||||
export const DesignableSchemaField = createDesignableSchemaField({
|
|
||||||
scope,
|
|
||||||
components,
|
|
||||||
});
|
|
||||||
|
|
||||||
export interface SchemaRendererProps {
|
export interface SchemaRendererProps {
|
||||||
schema: ISchema;
|
schema: Schema | ISchema;
|
||||||
form?: any;
|
form?: any;
|
||||||
designable?: boolean;
|
render?: any;
|
||||||
onRefresh?: any;
|
|
||||||
onlyRenderProperties?: boolean;
|
|
||||||
scope?: any;
|
|
||||||
components?: any;
|
components?: any;
|
||||||
|
scope?: any;
|
||||||
debug?: boolean;
|
debug?: boolean;
|
||||||
|
onlyRenderProperties?: boolean;
|
||||||
|
onRefresh?: any;
|
||||||
|
[key: string]: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const SchemaRenderer = (props: SchemaRendererProps) => {
|
export const SchemaRenderer = (props: SchemaRendererProps) => {
|
||||||
const form = useMemo(() => props.form || createForm({}), []);
|
const [, refresh] = useState(uid());
|
||||||
|
const form = useMemo(() => props.form || createForm(), []);
|
||||||
const schema = useMemo(() => {
|
const schema = useMemo(() => {
|
||||||
|
if (Schema.isSchemaInstance(props.schema)) {
|
||||||
|
return schema;
|
||||||
|
}
|
||||||
let s = props.schema;
|
let s = props.schema;
|
||||||
if (props.onlyRenderProperties) {
|
if (props.onlyRenderProperties) {
|
||||||
s = {
|
s = {
|
||||||
@ -457,21 +417,32 @@ export const SchemaRenderer = (props: SchemaRendererProps) => {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return s;
|
return new Schema(s);
|
||||||
}, []);
|
}, []);
|
||||||
|
const defaultRender = ({ schema }) => (
|
||||||
console.log('SchemaRenderer', schema, props.schema);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<FormProvider form={form}>
|
<FormProvider form={form}>
|
||||||
<DesignableSchemaField
|
<SchemaField
|
||||||
debug={props.debug}
|
|
||||||
scope={props.scope}
|
|
||||||
components={props.components}
|
components={props.components}
|
||||||
onRefresh={props.onRefresh}
|
scope={props.scope}
|
||||||
designable={props.designable}
|
|
||||||
schema={schema}
|
schema={schema}
|
||||||
/>
|
/>
|
||||||
|
{props.debug && <CodePreview schema={schema} />}
|
||||||
|
{props.debug && <FormValues />}
|
||||||
</FormProvider>
|
</FormProvider>
|
||||||
);
|
);
|
||||||
|
return (
|
||||||
|
<DesignableContext.Provider
|
||||||
|
value={{
|
||||||
|
schema,
|
||||||
|
refresh: () => {
|
||||||
|
props.onRefresh && props.onRefresh(schema);
|
||||||
|
refresh(uid());
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<DesignableContext.Consumer>
|
||||||
|
{props.render || defaultRender}
|
||||||
|
</DesignableContext.Consumer>
|
||||||
|
</DesignableContext.Provider>
|
||||||
|
);
|
||||||
};
|
};
|
30
packages/client/src/schemas/action/demos/demo1.tsx
Normal file
30
packages/client/src/schemas/action/demos/demo1.tsx
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
/**
|
||||||
|
* title: 按钮操作
|
||||||
|
* desc: 可以通过配置 `useAction` 来处理操作逻辑
|
||||||
|
*/
|
||||||
|
import React from 'react';
|
||||||
|
// @ts-ignore
|
||||||
|
import { SchemaRenderer } from '@nocobase/client';
|
||||||
|
|
||||||
|
function useAction() {
|
||||||
|
return {
|
||||||
|
run() {
|
||||||
|
alert('这是自定义的操作逻辑');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const schema = {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: '按钮',
|
||||||
|
'x-component': 'Action',
|
||||||
|
'x-designable-bar': 'Action.DesignableBar',
|
||||||
|
'x-component-props': {
|
||||||
|
useAction: '{{ useAction }}',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return <SchemaRenderer debug={true} scope={{ useAction }} schema={schema} />;
|
||||||
|
};
|
16
packages/client/src/schemas/action/demos/demo2.tsx
Normal file
16
packages/client/src/schemas/action/demos/demo2.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { SchemaRenderer } from '@nocobase/client';
|
||||||
|
|
||||||
|
const schema = {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: '按钮',
|
||||||
|
'x-component': 'Action.Link',
|
||||||
|
'x-component-props': {
|
||||||
|
to: 'abc',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return <SchemaRenderer schema={schema} />;
|
||||||
|
};
|
16
packages/client/src/schemas/action/demos/demo3.tsx
Normal file
16
packages/client/src/schemas/action/demos/demo3.tsx
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { SchemaRenderer } from '@nocobase/client';
|
||||||
|
|
||||||
|
const schema = {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: '按钮',
|
||||||
|
'x-component': 'Action.URL',
|
||||||
|
'x-component-props': {
|
||||||
|
url: 'https://www.nocobase.com/',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return <SchemaRenderer schema={schema} />;
|
||||||
|
};
|
92
packages/client/src/schemas/action/demos/demo4.tsx
Normal file
92
packages/client/src/schemas/action/demos/demo4.tsx
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { SchemaRenderer } from '@nocobase/client';
|
||||||
|
|
||||||
|
function useAction() {
|
||||||
|
return {
|
||||||
|
run() {
|
||||||
|
alert('这是自定义的操作逻辑');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const schema = {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: '下拉菜单',
|
||||||
|
'x-component': 'Action.Dropdown',
|
||||||
|
properties: {
|
||||||
|
action1: {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: '按钮',
|
||||||
|
'x-component': 'Action',
|
||||||
|
'x-component-props': {
|
||||||
|
useAction,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
action2: {
|
||||||
|
type: 'void',
|
||||||
|
title: 'Drawer 按钮',
|
||||||
|
'x-component': 'Action',
|
||||||
|
properties: {
|
||||||
|
drawer1: {
|
||||||
|
type: 'void',
|
||||||
|
title: '抽屉标题',
|
||||||
|
'x-component': 'Action.Drawer',
|
||||||
|
'x-component-props': {},
|
||||||
|
properties: {
|
||||||
|
input: {
|
||||||
|
type: 'string',
|
||||||
|
'x-decorator': 'FormItem',
|
||||||
|
'x-component': 'Input',
|
||||||
|
},
|
||||||
|
action2: {
|
||||||
|
type: 'void',
|
||||||
|
title: '打开二级抽屉',
|
||||||
|
// 'x-decorator': 'FormItem',
|
||||||
|
'x-component': 'Action',
|
||||||
|
properties: {
|
||||||
|
drawer1: {
|
||||||
|
type: 'void',
|
||||||
|
title: '二级抽屉标题',
|
||||||
|
'x-component': 'Action.Drawer',
|
||||||
|
'x-component-props': {},
|
||||||
|
properties: {
|
||||||
|
input: {
|
||||||
|
type: 'string',
|
||||||
|
'x-component': 'Input',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
action3: {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: 'Popover 按钮',
|
||||||
|
'x-component': 'Action',
|
||||||
|
properties: {
|
||||||
|
popover1: {
|
||||||
|
type: 'void',
|
||||||
|
title: '弹窗标题',
|
||||||
|
'x-component': 'Action.Popover',
|
||||||
|
'x-component-props': {},
|
||||||
|
properties: {
|
||||||
|
input: {
|
||||||
|
type: 'string',
|
||||||
|
'x-component': 'Input',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
return <SchemaRenderer schema={schema} />;
|
||||||
|
};
|
@ -77,180 +77,19 @@ group:
|
|||||||
|
|
||||||
### Action - 常规操作
|
### Action - 常规操作
|
||||||
|
|
||||||
```tsx
|
<code src="./demos/demo1.tsx">
|
||||||
/**
|
|
||||||
* title: 按钮操作
|
|
||||||
* desc: 可以通过配置 `useAction` 来处理操作逻辑
|
|
||||||
*/
|
|
||||||
import React from 'react';
|
|
||||||
import { SchemaRenderer, registerScope } from '../';
|
|
||||||
|
|
||||||
function useAction() {
|
|
||||||
return {
|
|
||||||
run() {
|
|
||||||
alert('这是自定义的操作逻辑');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const schema = {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action',
|
|
||||||
'x-designable-bar': 'Action.DesignableBar',
|
|
||||||
'x-component-props': {
|
|
||||||
useAction: '{{ useAction }}',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default () => {
|
|
||||||
return <SchemaRenderer debug={true} scope={{ useAction }} schema={schema} />
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Action.Link - 内链跳转
|
### Action.Link - 内链跳转
|
||||||
|
|
||||||
```tsx
|
<code src="./demos/demo2.tsx">
|
||||||
import React from 'react';
|
|
||||||
import { SchemaRenderer } from '../';
|
|
||||||
|
|
||||||
const schema = {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action.Link',
|
|
||||||
'x-component-props': {
|
|
||||||
to: 'abc',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default () => {
|
|
||||||
return <SchemaRenderer schema={schema} />
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Action.URL - 外链跳转
|
### Action.URL - 外链跳转
|
||||||
|
|
||||||
```tsx
|
<code src="./demos/demo3.tsx">
|
||||||
import React from 'react';
|
|
||||||
import { SchemaRenderer } from '../';
|
|
||||||
|
|
||||||
const schema = {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action.URL',
|
|
||||||
'x-component-props': {
|
|
||||||
url: 'https://www.nocobase.com/',
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default () => {
|
|
||||||
return <SchemaRenderer schema={schema} />
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Action.Dropdown - 下拉操作
|
### Action.Dropdown - 下拉操作
|
||||||
|
|
||||||
```tsx
|
<code src="./demos/demo4.tsx">
|
||||||
import React from 'react';
|
|
||||||
import { SchemaRenderer } from '../';
|
|
||||||
|
|
||||||
function useAction() {
|
|
||||||
return {
|
|
||||||
run() {
|
|
||||||
alert('这是自定义的操作逻辑');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const popoverSchema = {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action',
|
|
||||||
properties: {
|
|
||||||
popover1: {
|
|
||||||
type: 'void',
|
|
||||||
title: '弹窗标题',
|
|
||||||
'x-component': 'Action.Popover',
|
|
||||||
'x-component-props': {},
|
|
||||||
properties: {
|
|
||||||
input: {
|
|
||||||
type: 'string',
|
|
||||||
'x-component': 'Input',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const drawerSchema = {
|
|
||||||
type: 'void',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action',
|
|
||||||
properties: {
|
|
||||||
drawer1: {
|
|
||||||
type: 'void',
|
|
||||||
title: '抽屉标题',
|
|
||||||
'x-component': 'Action.Drawer',
|
|
||||||
'x-component-props': {},
|
|
||||||
properties: {
|
|
||||||
input: {
|
|
||||||
type: 'string',
|
|
||||||
'x-decorator': 'FormItem',
|
|
||||||
'x-component': 'Input',
|
|
||||||
},
|
|
||||||
action2: {
|
|
||||||
type: 'void',
|
|
||||||
title: '打开二级抽屉',
|
|
||||||
// 'x-decorator': 'FormItem',
|
|
||||||
'x-component': 'Action',
|
|
||||||
properties: {
|
|
||||||
drawer1: {
|
|
||||||
type: 'void',
|
|
||||||
title: '二级抽屉标题',
|
|
||||||
'x-component': 'Action.Drawer',
|
|
||||||
'x-component-props': {},
|
|
||||||
properties: {
|
|
||||||
input: {
|
|
||||||
type: 'string',
|
|
||||||
'x-component': 'Input',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
const schema = {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '下拉菜单',
|
|
||||||
'x-component': 'Action.Dropdown',
|
|
||||||
properties: {
|
|
||||||
action1: {
|
|
||||||
type: 'void',
|
|
||||||
name: 'action1',
|
|
||||||
title: '按钮',
|
|
||||||
'x-component': 'Action',
|
|
||||||
'x-component-props': {
|
|
||||||
useAction,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
action2: drawerSchema,
|
|
||||||
action3: popoverSchema,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default () => {
|
|
||||||
return <SchemaRenderer schema={schema} />
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Action.Popover - 打开气泡
|
### Action.Popover - 打开气泡
|
||||||
|
|
||||||
@ -288,9 +127,10 @@ export default () => {
|
|||||||
|
|
||||||
```tsx
|
```tsx
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { Space } from 'antd';
|
||||||
import { SchemaRenderer } from '../';
|
import { SchemaRenderer } from '../';
|
||||||
|
|
||||||
const schema = {
|
const schema1 = {
|
||||||
type: 'void',
|
type: 'void',
|
||||||
name: 'action1',
|
name: 'action1',
|
||||||
title: '按钮',
|
title: '按钮',
|
||||||
@ -332,8 +172,40 @@ const schema = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const schema2 = {
|
||||||
|
type: 'void',
|
||||||
|
name: 'action1',
|
||||||
|
title: 'x-decorator=Form',
|
||||||
|
'x-component': 'Action',
|
||||||
|
properties: {
|
||||||
|
drawer1: {
|
||||||
|
type: 'void',
|
||||||
|
title: '弹窗标题',
|
||||||
|
'x-component': 'Action.Drawer',
|
||||||
|
'x-component-props': {
|
||||||
|
// footer: null,
|
||||||
|
},
|
||||||
|
'x-decorator': 'Form',
|
||||||
|
properties: {
|
||||||
|
input: {
|
||||||
|
type: 'string',
|
||||||
|
title: '输入框',
|
||||||
|
'x-decorator': 'FormItem',
|
||||||
|
'x-component': 'Input',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
return <SchemaRenderer schema={schema} />
|
return (
|
||||||
|
<Space>
|
||||||
|
<SchemaRenderer schema={schema1} />
|
||||||
|
<SchemaRenderer schema={schema2} />
|
||||||
|
</Space>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -367,7 +239,9 @@ const schema = {
|
|||||||
type: 'void',
|
type: 'void',
|
||||||
title: '弹窗标题',
|
title: '弹窗标题',
|
||||||
'x-component': 'Action.Modal',
|
'x-component': 'Action.Modal',
|
||||||
'x-component-props': {},
|
'x-component-props': {
|
||||||
|
// footer: null,
|
||||||
|
},
|
||||||
properties: {
|
properties: {
|
||||||
input: {
|
input: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
@ -418,7 +292,9 @@ const schema2 = {
|
|||||||
type: 'void',
|
type: 'void',
|
||||||
title: '弹窗标题',
|
title: '弹窗标题',
|
||||||
'x-component': 'Action.Modal',
|
'x-component': 'Action.Modal',
|
||||||
'x-component-props': {},
|
'x-component-props': {
|
||||||
|
// footer: null,
|
||||||
|
},
|
||||||
'x-decorator': 'Form',
|
'x-decorator': 'Form',
|
||||||
properties: {
|
properties: {
|
||||||
input: {
|
input: {
|
||||||
|
@ -86,24 +86,18 @@ export type ActionType = React.FC<ActionProps> & {
|
|||||||
DesignableBar?: React.FC<any>;
|
DesignableBar?: React.FC<any>;
|
||||||
};
|
};
|
||||||
|
|
||||||
function Blank() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function useDesignableBar() {
|
function useDesignableBar() {
|
||||||
const schema = useFieldSchema();
|
const schema = useFieldSchema();
|
||||||
const options = useContext(SchemaOptionsContext);
|
const options = useContext(SchemaOptionsContext);
|
||||||
const DesignableBar = get(options.components, schema['x-designable-bar']);
|
const DesignableBar = get(options.components, schema['x-designable-bar']);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
DesignableBar: DesignableBar || Blank,
|
DesignableBar: DesignableBar || (() => null),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const [VisibleProvider, useVisibleContext] = constate((props: any = {}) => {
|
const [VisibleProvider, useVisibleContext] = constate((props: any = {}) => {
|
||||||
const { initialVisible = false, containerRef = null } = props;
|
const { initialVisible = false, containerRef = null } = props;
|
||||||
const [visible, setVisible] = useState(initialVisible);
|
const [visible, setVisible] = useState(initialVisible);
|
||||||
|
|
||||||
return { containerRef, visible, setVisible };
|
return { containerRef, visible, setVisible };
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -123,6 +117,7 @@ const BaseAction = observer((props: any) => {
|
|||||||
const { setVisible } = useVisibleContext();
|
const { setVisible } = useVisibleContext();
|
||||||
const fieldSchema = useFieldSchema();
|
const fieldSchema = useFieldSchema();
|
||||||
const { schema } = useDesignable();
|
const { schema } = useDesignable();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
field.componentProps.setVisible = setVisible;
|
field.componentProps.setVisible = setVisible;
|
||||||
}, []);
|
}, []);
|
||||||
@ -130,7 +125,7 @@ const BaseAction = observer((props: any) => {
|
|||||||
const renderButton = () => (
|
const renderButton = () => (
|
||||||
<ButtonComponent
|
<ButtonComponent
|
||||||
{...others}
|
{...others}
|
||||||
icon={<Icon type={icon} />}
|
icon={icon ? <Icon type={icon} /> : null}
|
||||||
className={classNames(className, `name-${schema.name}`)}
|
className={classNames(className, `name-${schema.name}`)}
|
||||||
onClick={async (e) => {
|
onClick={async (e) => {
|
||||||
e.stopPropagation && e.stopPropagation();
|
e.stopPropagation && e.stopPropagation();
|
||||||
@ -237,13 +232,29 @@ Action.Drawer = observer((props) => {
|
|||||||
const { visible, setVisible } = useVisibleContext();
|
const { visible, setVisible } = useVisibleContext();
|
||||||
const { run } = useAction();
|
const { run } = useAction();
|
||||||
const form = useForm();
|
const form = useForm();
|
||||||
console.log(`schema['x-decorator']`, schema['x-decorator'])
|
console.log(`schema['x-decorator']`, schema['x-decorator']);
|
||||||
if (schema['x-decorator'] === 'Form.Decorator') {
|
if (schema['x-decorator'] === 'Form.Decorator') {
|
||||||
Object.assign(others, {
|
Object.assign(others, {
|
||||||
footer: (
|
footer: (
|
||||||
<Space>
|
<Space>
|
||||||
<Button type={'primary'}>Ok</Button>
|
<Button
|
||||||
<Button>Cancel</Button>
|
onClick={async () => {
|
||||||
|
await form.submit();
|
||||||
|
await run();
|
||||||
|
setVisible(false);
|
||||||
|
}}
|
||||||
|
type={'primary'}
|
||||||
|
>
|
||||||
|
OK
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
onClick={async () => {
|
||||||
|
form.clearErrors();
|
||||||
|
setVisible(false);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
</Space>
|
</Space>
|
||||||
),
|
),
|
||||||
});
|
});
|
||||||
@ -258,8 +269,10 @@ Action.Drawer = observer((props) => {
|
|||||||
width={'50%'}
|
width={'50%'}
|
||||||
{...others}
|
{...others}
|
||||||
visible={visible}
|
visible={visible}
|
||||||
|
destroyOnClose
|
||||||
onClose={(e) => {
|
onClose={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
form.clearErrors();
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@ -273,8 +286,6 @@ const [DesignableContextProvider, useDesignableContext] = constate(() => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
import { DesignableBar } from './designableBar';
|
import { DesignableBar } from './designableBar';
|
||||||
import { cloneDeep } from 'lodash';
|
|
||||||
import { clone } from '@formily/shared';
|
|
||||||
|
|
||||||
export function useDesignableValues() {
|
export function useDesignableValues() {
|
||||||
const { schema } = useDesignableContext();
|
const { schema } = useDesignableContext();
|
||||||
@ -313,7 +324,11 @@ Action.Modal = observer((props) => {
|
|||||||
const { visible, setVisible } = useVisibleContext();
|
const { visible, setVisible } = useVisibleContext();
|
||||||
const { run } = useAction();
|
const { run } = useAction();
|
||||||
const form = useForm();
|
const form = useForm();
|
||||||
if (schema['x-decorator'] !== 'Form.Decorator') {
|
// console.log('Action.Modal', schema['x-component-props'], Object.keys(others).includes('footer'));
|
||||||
|
if (
|
||||||
|
!Object.keys(others).includes('footer') &&
|
||||||
|
schema['x-decorator'] !== 'Form.Decorator'
|
||||||
|
) {
|
||||||
Object.assign(others, { footer: null });
|
Object.assign(others, { footer: null });
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
@ -328,13 +343,13 @@ Action.Modal = observer((props) => {
|
|||||||
onCancel={async (e) => {
|
onCancel={async (e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
|
// await form.reset();
|
||||||
setDropdownVisible && setDropdownVisible(false);
|
setDropdownVisible && setDropdownVisible(false);
|
||||||
}}
|
}}
|
||||||
onOk={async (e) => {
|
onOk={async (e) => {
|
||||||
console.log('onOk', form.values);
|
console.log('onOk', form.values);
|
||||||
// await form.submit();
|
// await form.submit();
|
||||||
await run();
|
await run();
|
||||||
// e.stopPropagation();
|
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
setDropdownVisible && setDropdownVisible(false);
|
setDropdownVisible && setDropdownVisible(false);
|
||||||
}}
|
}}
|
||||||
@ -348,12 +363,13 @@ Action.Modal = observer((props) => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
const [DropdownVisibleProvider, useDropdownVisibleContext] = constate((props: any = {}) => {
|
const [DropdownVisibleProvider, useDropdownVisibleContext] = constate(
|
||||||
const { initialVisible = false } = props;
|
(props: any = {}) => {
|
||||||
const [visible, setVisible] = useState(initialVisible);
|
const { initialVisible = false } = props;
|
||||||
|
const [visible, setVisible] = useState(initialVisible);
|
||||||
return { visible, setVisible };
|
return { visible, setVisible };
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
|
||||||
const ActionDropdown = observer((props: any) => {
|
const ActionDropdown = observer((props: any) => {
|
||||||
const { icon, ...others } = props;
|
const { icon, ...others } = props;
|
||||||
@ -371,7 +387,7 @@ const ActionDropdown = observer((props: any) => {
|
|||||||
content={props.children}
|
content={props.children}
|
||||||
placement={'bottomLeft'}
|
placement={'bottomLeft'}
|
||||||
>
|
>
|
||||||
<Button icon={<Icon type={icon} />} {...others}>
|
<Button icon={icon ? <Icon type={icon} /> : null} {...others}>
|
||||||
{schema.title}
|
{schema.title}
|
||||||
</Button>
|
</Button>
|
||||||
</Popover>
|
</Popover>
|
||||||
|
@ -46,7 +46,7 @@ import {
|
|||||||
DownOutlined,
|
DownOutlined,
|
||||||
DatabaseOutlined,
|
DatabaseOutlined,
|
||||||
} from '@ant-design/icons';
|
} from '@ant-design/icons';
|
||||||
import { useDesignable, useSchemaPath } from '../DesignableSchemaField';
|
import { useDesignable, useSchemaPath } from '../';
|
||||||
import { uid } from '@formily/shared';
|
import { uid } from '@formily/shared';
|
||||||
|
|
||||||
const generateGridBlock = (schema: ISchema) => {
|
const generateGridBlock = (schema: ISchema) => {
|
||||||
|
@ -16,7 +16,7 @@ import './style.less';
|
|||||||
import get from 'lodash/get';
|
import get from 'lodash/get';
|
||||||
import { GridBlockContext } from '../grid';
|
import { GridBlockContext } from '../grid';
|
||||||
import { uid } from '@formily/shared';
|
import { uid } from '@formily/shared';
|
||||||
import { useDesignable, useSchemaPath } from '../DesignableSchemaField';
|
import { useDesignable, useSchemaPath } from '../';
|
||||||
import { AddNew } from '../add-new';
|
import { AddNew } from '../add-new';
|
||||||
import { Card } from 'antd';
|
import { Card } from 'antd';
|
||||||
import {
|
import {
|
||||||
|
@ -12,7 +12,7 @@ import { ArrayCollapse } from '@formily/antd';
|
|||||||
import { uid } from '@formily/shared';
|
import { uid } from '@formily/shared';
|
||||||
import '@formily/antd/lib/form-tab/style';
|
import '@formily/antd/lib/form-tab/style';
|
||||||
import { Collapse, Button, Dropdown, Menu, Tag } from 'antd';
|
import { Collapse, Button, Dropdown, Menu, Tag } from 'antd';
|
||||||
import { interfaces } from './interfaces';
|
import { options, interfaces } from './interfaces';
|
||||||
import { DeleteOutlined } from '@ant-design/icons';
|
import { DeleteOutlined } from '@ant-design/icons';
|
||||||
|
|
||||||
export const DatabaseField: any = observer((props) => {
|
export const DatabaseField: any = observer((props) => {
|
||||||
@ -33,24 +33,11 @@ export const DatabaseField: any = observer((props) => {
|
|||||||
console.log({ schema });
|
console.log({ schema });
|
||||||
return (
|
return (
|
||||||
<Collapse.Panel
|
<Collapse.Panel
|
||||||
// extra={[
|
|
||||||
// <Button onClick={() => field.moveUp(index)}>Up</Button>,
|
|
||||||
// <Button
|
|
||||||
// onClick={() => {
|
|
||||||
// field.remove(index);
|
|
||||||
// field.insert(index, {
|
|
||||||
// ...item,
|
|
||||||
// interface: 'textarea',
|
|
||||||
// });
|
|
||||||
// }}
|
|
||||||
// >
|
|
||||||
// Update
|
|
||||||
// </Button>,
|
|
||||||
// ]}
|
|
||||||
header={
|
header={
|
||||||
<>
|
<>
|
||||||
{(item.ui && item.ui.title) || <i style={{color: 'rgba(0, 0, 0, 0.25)'}}>未命名</i>}{' '}
|
{(item.ui && item.ui.title) || <i style={{color: 'rgba(0, 0, 0, 0.25)'}}>未命名</i>}{' '}
|
||||||
<Tag>{schema.title}</Tag>
|
<Tag>{schema.title}</Tag>
|
||||||
|
<span style={{ color: 'rgba(0, 0, 0, 0.25)', fontSize: 14 }}>{item.name}</span>
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
extra={[
|
extra={[
|
||||||
@ -100,18 +87,24 @@ export const DatabaseField: any = observer((props) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const data = {
|
const data = {
|
||||||
|
...schema.default,
|
||||||
id: uid(),
|
id: uid(),
|
||||||
name: uid(),
|
name: uid(),
|
||||||
interface: info.key,
|
interface: info.key,
|
||||||
...schema.default,
|
|
||||||
};
|
};
|
||||||
field.push(data);
|
field.push(data);
|
||||||
setActiveKey(data.id);
|
setActiveKey(data.id);
|
||||||
console.log('info.key', info.key, schema);
|
console.log('info.key', info.key, schema);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{Array.from(interfaces).map(([key, schema]) => (
|
{options.map(option => (
|
||||||
<Menu.Item key={key}>{schema.title}</Menu.Item>
|
<Menu.ItemGroup title={option.label}>
|
||||||
|
{
|
||||||
|
option.children.map(item => (
|
||||||
|
<Menu.Item key={item.name}>{item.title}</Menu.Item>
|
||||||
|
))
|
||||||
|
}
|
||||||
|
</Menu.ItemGroup>
|
||||||
))}
|
))}
|
||||||
</Menu>
|
</Menu>
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { ISchema } from '@formily/react';
|
import { ISchema } from '@formily/react';
|
||||||
|
import { set } from 'lodash';
|
||||||
|
|
||||||
import { select } from './select';
|
import { select } from './select';
|
||||||
import { string } from './string';
|
import { string } from './string';
|
||||||
@ -7,7 +8,33 @@ import { textarea } from './textarea';
|
|||||||
|
|
||||||
export const interfaces = new Map<string, ISchema>();
|
export const interfaces = new Map<string, ISchema>();
|
||||||
|
|
||||||
interfaces.set('select', select);
|
const fields = {};
|
||||||
interfaces.set('string', string);
|
const groupLabels = {};
|
||||||
interfaces.set('subTable', subTable);
|
|
||||||
interfaces.set('textarea', textarea);
|
export function registerField(group: string, type: string, schema) {
|
||||||
|
fields[group] = fields[group] || {};
|
||||||
|
set(fields, [group, type], schema);
|
||||||
|
interfaces.set(type, schema);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function registerGroupLabel(key: string, label: string) {
|
||||||
|
groupLabels[key] = label;
|
||||||
|
}
|
||||||
|
|
||||||
|
registerField('basic', 'string', string);
|
||||||
|
registerField('basic', 'textarea', textarea);
|
||||||
|
registerField('choices', 'select', select);
|
||||||
|
registerField('relation', 'subTable', subTable);
|
||||||
|
|
||||||
|
registerGroupLabel('basic', '基本类型');
|
||||||
|
registerGroupLabel('choices', '选择类型');
|
||||||
|
registerGroupLabel('relation', '关系类型');
|
||||||
|
|
||||||
|
export const options = Object.keys(fields).map((groupName) => {
|
||||||
|
return {
|
||||||
|
label: groupLabels[groupName],
|
||||||
|
children: Object.keys(fields[groupName]).map((type) => {
|
||||||
|
return fields[groupName][type];
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
});
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import { ISchema } from '@formily/react';
|
import { ISchema } from '@formily/react';
|
||||||
|
|
||||||
export const select: ISchema = {
|
export const select: ISchema = {
|
||||||
|
name: 'select',
|
||||||
type: 'object',
|
type: 'object',
|
||||||
title: '下拉选择',
|
title: '下拉选择',
|
||||||
|
group: 'choices',
|
||||||
default: {
|
default: {
|
||||||
dataType: 'string',
|
dataType: 'string',
|
||||||
// name,
|
// name,
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import { ISchema } from '@formily/react';
|
import { ISchema } from '@formily/react';
|
||||||
|
|
||||||
export const string: ISchema = {
|
export const string: ISchema = {
|
||||||
|
name: 'string',
|
||||||
type: 'object',
|
type: 'object',
|
||||||
title: '单行文本',
|
title: '单行文本',
|
||||||
|
group: 'basic',
|
||||||
default: {
|
default: {
|
||||||
dataType: 'string',
|
dataType: 'string',
|
||||||
// name,
|
// name,
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import { ISchema } from '@formily/react';
|
import { ISchema } from '@formily/react';
|
||||||
|
|
||||||
export const subTable: ISchema = {
|
export const subTable: ISchema = {
|
||||||
|
name: 'subTable',
|
||||||
type: 'object',
|
type: 'object',
|
||||||
title: '子表格',
|
title: '子表格',
|
||||||
|
group: 'relation',
|
||||||
default: {
|
default: {
|
||||||
// name,
|
// name,
|
||||||
ui: {
|
ui: {
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
import { ISchema } from '@formily/react';
|
import { ISchema } from '@formily/react';
|
||||||
|
|
||||||
export const textarea: ISchema = {
|
export const textarea: ISchema = {
|
||||||
|
name: 'textarea',
|
||||||
type: 'object',
|
type: 'object',
|
||||||
title: '多行文本',
|
title: '多行文本',
|
||||||
|
group: 'basic',
|
||||||
default: {
|
default: {
|
||||||
dataType: 'text',
|
dataType: 'text',
|
||||||
// name,
|
// name,
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
import React, { useEffect } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
import {
|
import { connect, mapProps, mapReadPretty } from '@formily/react';
|
||||||
connect,
|
|
||||||
mapProps,
|
|
||||||
mapReadPretty,
|
|
||||||
} from '@formily/react';
|
|
||||||
import { LoadingOutlined } from '@ant-design/icons';
|
import { LoadingOutlined } from '@ant-design/icons';
|
||||||
import { useDynamicList } from 'ahooks';
|
import { useDynamicList } from 'ahooks';
|
||||||
import { Select } from 'antd';
|
import { Select } from 'antd';
|
||||||
|
@ -16,7 +16,7 @@ import { MenuOutlined, DragOutlined } from '@ant-design/icons';
|
|||||||
import get from 'lodash/get';
|
import get from 'lodash/get';
|
||||||
import { GridBlockContext } from '../grid';
|
import { GridBlockContext } from '../grid';
|
||||||
import { uid } from '@formily/shared';
|
import { uid } from '@formily/shared';
|
||||||
import { useDesignable } from '../DesignableSchemaField';
|
import { useDesignable } from '../';
|
||||||
import { AddNew } from '../add-new';
|
import { AddNew } from '../add-new';
|
||||||
import { BlockItem } from '../block-item';
|
import { BlockItem } from '../block-item';
|
||||||
import { DraggableBlockContext } from '../../components/drag-and-drop';
|
import { DraggableBlockContext } from '../../components/drag-and-drop';
|
||||||
|
@ -9,7 +9,7 @@ import {
|
|||||||
FormProvider,
|
FormProvider,
|
||||||
ISchema,
|
ISchema,
|
||||||
} from '@formily/react';
|
} from '@formily/react';
|
||||||
import { SchemaRenderer, useDesignable } from '../DesignableSchemaField';
|
import { SchemaRenderer, useDesignable } from '../';
|
||||||
import get from 'lodash/get';
|
import get from 'lodash/get';
|
||||||
import { Dropdown, Menu } from 'antd';
|
import { Dropdown, Menu } from 'antd';
|
||||||
import {
|
import {
|
||||||
@ -56,19 +56,14 @@ export const Form: any = observer((props: any) => {
|
|||||||
const schema = useFieldSchema();
|
const schema = useFieldSchema();
|
||||||
const { schema: designableSchema, refresh } = useDesignable();
|
const { schema: designableSchema, refresh } = useDesignable();
|
||||||
const formSchema: ISchema = schema['x-decorator'] === 'Form' ? {
|
const formSchema: ISchema = schema['x-decorator'] === 'Form' ? {
|
||||||
type: 'void',
|
type: 'object',
|
||||||
"x-component": 'Blank',
|
|
||||||
properties: {
|
properties: {
|
||||||
[schema.name]: {
|
[schema.name]: {
|
||||||
...schema.toJSON(),
|
...schema.toJSON(),
|
||||||
"x-decorator": 'Form.Decorator',
|
"x-decorator": 'Form.Decorator',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} : {
|
} : schema.toJSON();
|
||||||
...schema.toJSON(),
|
|
||||||
'x-component': 'Form.Blank',
|
|
||||||
'x-component-props': {},
|
|
||||||
};
|
|
||||||
return (
|
return (
|
||||||
<SchemaRenderer
|
<SchemaRenderer
|
||||||
scope={scope}
|
scope={scope}
|
||||||
|
@ -21,7 +21,7 @@ import {
|
|||||||
import './style.less';
|
import './style.less';
|
||||||
import cls from 'classnames';
|
import cls from 'classnames';
|
||||||
|
|
||||||
import { useDesignable, useSchemaPath } from '../DesignableSchemaField';
|
import { useDesignable, useSchemaPath } from '../';
|
||||||
import {
|
import {
|
||||||
useDrag,
|
useDrag,
|
||||||
useDrop,
|
useDrop,
|
||||||
|
@ -1 +1,2 @@
|
|||||||
export * from './DesignableSchemaField';
|
// export * from './DesignableSchemaField';
|
||||||
|
export * from '../components/schema-renderer';
|
||||||
|
@ -425,6 +425,7 @@ export default () => {
|
|||||||
<Layout>
|
<Layout>
|
||||||
<Layout.Header>
|
<Layout.Header>
|
||||||
<SchemaRenderer
|
<SchemaRenderer
|
||||||
|
debug={true}
|
||||||
schema={schema}
|
schema={schema}
|
||||||
scope={{ onSelect, sideMenuRef }}
|
scope={{ onSelect, sideMenuRef }}
|
||||||
/>
|
/>
|
||||||
|
@ -3,7 +3,6 @@ import { connect, mapReadPretty } from '@formily/react';
|
|||||||
import { Input } from 'antd';
|
import { Input } from 'antd';
|
||||||
import { PasswordProps } from 'antd/lib/input';
|
import { PasswordProps } from 'antd/lib/input';
|
||||||
import { PasswordStrength } from './PasswordStrength';
|
import { PasswordStrength } from './PasswordStrength';
|
||||||
import { Descriptions } from '../descriptions';
|
|
||||||
|
|
||||||
export interface IPasswordProps extends PasswordProps {
|
export interface IPasswordProps extends PasswordProps {
|
||||||
checkStrength: boolean;
|
checkStrength: boolean;
|
||||||
|
@ -14,7 +14,7 @@ import { LoadingOutlined } from '@ant-design/icons';
|
|||||||
import { SelectProps } from 'antd/lib/select';
|
import { SelectProps } from 'antd/lib/select';
|
||||||
import { isArr, isValid, toArr } from '@formily/shared';
|
import { isArr, isValid, toArr } from '@formily/shared';
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { useDesignable } from '../DesignableSchemaField';
|
import { useDesignable } from '../';
|
||||||
import { createContext } from 'react';
|
import { createContext } from 'react';
|
||||||
import { useContext } from 'react';
|
import { useContext } from 'react';
|
||||||
import { SelectedRowKeysContext, useTableContext } from '../table';
|
import { SelectedRowKeysContext, useTableContext } from '../table';
|
||||||
|
@ -33,7 +33,7 @@ import {
|
|||||||
SortableElement,
|
SortableElement,
|
||||||
} from 'react-sortable-hoc';
|
} from 'react-sortable-hoc';
|
||||||
import cls from 'classnames';
|
import cls from 'classnames';
|
||||||
import { getSchemaPath, useDesignable, useSchemaPath } from '../DesignableSchemaField';
|
import { getSchemaPath, useDesignable, useSchemaPath } from '../';
|
||||||
import './style.less';
|
import './style.less';
|
||||||
|
|
||||||
interface TableRowProps {
|
interface TableRowProps {
|
||||||
|
@ -29,8 +29,8 @@ group:
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Button } from 'antd'
|
import { Button } from 'antd'
|
||||||
import { UploadOutlined, InboxOutlined } from '@ant-design/icons'
|
import { UploadOutlined, InboxOutlined } from '@ant-design/icons'
|
||||||
|
import { SchemaRenderer } from '../';
|
||||||
import Upload from './';
|
import Upload from './';
|
||||||
import { SchemaRenderer, registerComponents } from '../';
|
|
||||||
|
|
||||||
const NormalUpload = (props) => {
|
const NormalUpload = (props) => {
|
||||||
return (
|
return (
|
||||||
@ -46,10 +46,6 @@ const NormalUpload = (props) => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
registerComponents({
|
|
||||||
NormalUpload,
|
|
||||||
});
|
|
||||||
|
|
||||||
const schema = {
|
const schema = {
|
||||||
type: 'object',
|
type: 'object',
|
||||||
properties: {
|
properties: {
|
||||||
@ -79,7 +75,7 @@ const schema = {
|
|||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
return (
|
return (
|
||||||
<SchemaRenderer schema={schema} />
|
<SchemaRenderer components={{ NormalUpload }} schema={schema} />
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
@ -12661,6 +12661,11 @@ moment-timezone@^0.5.31:
|
|||||||
resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
|
resolved "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3"
|
||||||
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
|
integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==
|
||||||
|
|
||||||
|
monaco-editor@^0.25.2:
|
||||||
|
version "0.25.2"
|
||||||
|
resolved "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.25.2.tgz#119e2b15bbd968a1a99c03cac9c329316d7c37e9"
|
||||||
|
integrity sha512-5iylzSJevCnzJn9UVsW8yOZ3yHjmAs4TfvH3zsbftKiFKmHG0xirGN6DK9Kk04VSWxYCZZAIafYJoNJJMAU1KA==
|
||||||
|
|
||||||
moo@^0.5.0:
|
moo@^0.5.0:
|
||||||
version "0.5.1"
|
version "0.5.1"
|
||||||
resolved "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4"
|
resolved "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4"
|
||||||
|
Loading…
Reference in New Issue
Block a user