feat: improve code
This commit is contained in:
parent
449c307eb9
commit
1f8c5f510b
@ -41,6 +41,7 @@
|
|||||||
"@typescript-eslint/eslint-plugin": "^4.9.1",
|
"@typescript-eslint/eslint-plugin": "^4.9.1",
|
||||||
"@typescript-eslint/parser": "^4.8.2",
|
"@typescript-eslint/parser": "^4.8.2",
|
||||||
"antd": "^4.18.5",
|
"antd": "^4.18.5",
|
||||||
|
"classnames": "^2.3.1",
|
||||||
"concurrently": "^7.0.0",
|
"concurrently": "^7.0.0",
|
||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
"dotenv": "^10.0.0",
|
"dotenv": "^10.0.0",
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
"ahooks": "^3.0.5",
|
"ahooks": "^3.0.5",
|
||||||
"antd": "^4.18.5",
|
"antd": "^4.18.5",
|
||||||
"axios": "^0.24.0",
|
"axios": "^0.24.0",
|
||||||
|
"classnames": "^2.3.1",
|
||||||
"file-saver": "^2.0.5",
|
"file-saver": "^2.0.5",
|
||||||
"i18next": "^21.6.0",
|
"i18next": "^21.6.0",
|
||||||
"marked": "^4.0.12",
|
"marked": "^4.0.12",
|
||||||
|
@ -29,6 +29,7 @@ const InternalField: React.FC = (props) => {
|
|||||||
setFieldProps('title', uiSchema.title);
|
setFieldProps('title', uiSchema.title);
|
||||||
setFieldProps('description', uiSchema.description);
|
setFieldProps('description', uiSchema.description);
|
||||||
setFieldProps('initialValue', uiSchema.default);
|
setFieldProps('initialValue', uiSchema.default);
|
||||||
|
field.readPretty = uiSchema['x-read-pretty'];
|
||||||
setRequired();
|
setRequired();
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
field.dataSource = uiSchema.enum;
|
field.dataSource = uiSchema.enum;
|
||||||
|
@ -16,6 +16,7 @@ export interface FieldOptions {
|
|||||||
|
|
||||||
export interface CollectionOptions {
|
export interface CollectionOptions {
|
||||||
name?: string;
|
name?: string;
|
||||||
|
title?: string;
|
||||||
filterTargetKey?: string;
|
filterTargetKey?: string;
|
||||||
targetKey?: string;
|
targetKey?: string;
|
||||||
fields?: FieldOptions[];
|
fields?: FieldOptions[];
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { useCollection } from '../../../collection-manager';
|
||||||
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
||||||
|
|
||||||
export const FormDesigner = () => {
|
export const FormDesigner = () => {
|
||||||
|
const { name, title } = useCollection();
|
||||||
return (
|
return (
|
||||||
<GeneralSchemaDesigner>
|
<GeneralSchemaDesigner title={title || name}>
|
||||||
<SchemaSettings.Remove
|
<SchemaSettings.Remove
|
||||||
removeParentsIfNoChildren
|
removeParentsIfNoChildren
|
||||||
breakRemoveOn={{
|
breakRemoveOn={{
|
||||||
|
@ -6,6 +6,7 @@ import { Spin } from 'antd';
|
|||||||
import React, { useMemo } from 'react';
|
import React, { useMemo } from 'react';
|
||||||
import { useAttach, useComponent } from '../..';
|
import { useAttach, useComponent } from '../..';
|
||||||
import { useRequest } from '../../../api-client';
|
import { useRequest } from '../../../api-client';
|
||||||
|
import { useCollection } from '../../../collection-manager';
|
||||||
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
||||||
|
|
||||||
type Opts = Options<any, any> & { uid?: string };
|
type Opts = Options<any, any> & { uid?: string };
|
||||||
@ -100,8 +101,9 @@ export const Form: React.FC<FormProps> & { Designer?: any } = observer((props) =
|
|||||||
});
|
});
|
||||||
|
|
||||||
Form.Designer = () => {
|
Form.Designer = () => {
|
||||||
|
const { name, title } = useCollection();
|
||||||
return (
|
return (
|
||||||
<GeneralSchemaDesigner>
|
<GeneralSchemaDesigner title={title || name}>
|
||||||
<SchemaSettings.Remove />
|
<SchemaSettings.Remove />
|
||||||
</GeneralSchemaDesigner>
|
</GeneralSchemaDesigner>
|
||||||
);
|
);
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { useCollection } from '../../../collection-manager';
|
||||||
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
import { GeneralSchemaDesigner, SchemaSettings } from '../../../schema-settings';
|
||||||
|
|
||||||
export const VoidTableDesigner = () => {
|
export const VoidTableDesigner = () => {
|
||||||
|
const { name, title } = useCollection();
|
||||||
return (
|
return (
|
||||||
<GeneralSchemaDesigner>
|
<GeneralSchemaDesigner title={title || name}>
|
||||||
<SchemaSettings.Remove
|
<SchemaSettings.Remove
|
||||||
removeParentsIfNoChildren
|
removeParentsIfNoChildren
|
||||||
breakRemoveOn={{
|
breakRemoveOn={{
|
||||||
|
@ -12,7 +12,7 @@ export const GridFormItemInitializers = (props: any) => {
|
|||||||
items={[
|
items={[
|
||||||
{
|
{
|
||||||
type: 'itemGroup',
|
type: 'itemGroup',
|
||||||
title: 'Display fields',
|
title: t('Display fields'),
|
||||||
children: useFormItemInitializerFields(),
|
children: useFormItemInitializerFields(),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -20,7 +20,7 @@ export const GridFormItemInitializers = (props: any) => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'item',
|
type: 'item',
|
||||||
title: 'Add text',
|
title: t('Add text'),
|
||||||
component: 'GeneralInitializer',
|
component: 'GeneralInitializer',
|
||||||
schema: {
|
schema: {
|
||||||
type: 'void',
|
type: 'void',
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { ISchema, observer } from '@formily/react';
|
import { ISchema, observer } from '@formily/react';
|
||||||
import { Button, Dropdown, Menu } from 'antd';
|
import { Button, Dropdown, Menu } from 'antd';
|
||||||
import React, { createContext, useContext, useState } from 'react';
|
import React, { createContext, useContext, useState } from 'react';
|
||||||
import { useDesignable } from '../schema-component/hooks';
|
import { useCompile, useDesignable } from '../schema-component/hooks';
|
||||||
import { initializes, items } from './Initializers';
|
import { initializes, items } from './Initializers';
|
||||||
import {
|
import {
|
||||||
SchemaInitializerButtonProps,
|
SchemaInitializerButtonProps,
|
||||||
@ -31,6 +31,7 @@ SchemaInitializer.Button = observer((props: SchemaInitializerButtonProps) => {
|
|||||||
style,
|
style,
|
||||||
...others
|
...others
|
||||||
} = props;
|
} = props;
|
||||||
|
const compile = useCompile();
|
||||||
let { insertAdjacent, findComponent, designable } = useDesignable();
|
let { insertAdjacent, findComponent, designable } = useDesignable();
|
||||||
const [visible, setVisible] = useState(false);
|
const [visible, setVisible] = useState(false);
|
||||||
const insertSchema = (schema) => {
|
const insertSchema = (schema) => {
|
||||||
@ -59,14 +60,21 @@ SchemaInitializer.Button = observer((props: SchemaInitializerButtonProps) => {
|
|||||||
insert: insertSchema,
|
insert: insertSchema,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Component {...item} item={item} insert={insertSchema} />
|
<Component
|
||||||
|
{...item}
|
||||||
|
item={{
|
||||||
|
...item,
|
||||||
|
title: compile(item.title),
|
||||||
|
}}
|
||||||
|
insert={insertSchema}
|
||||||
|
/>
|
||||||
</SchemaInitializerItemContext.Provider>
|
</SchemaInitializerItemContext.Provider>
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
item?.children?.length > 0 && (
|
item?.children?.length > 0 && (
|
||||||
<Menu.ItemGroup key={`item-group-${indexA}`} title={item.title}>
|
<Menu.ItemGroup key={`item-group-${indexA}`} title={compile(item.title)}>
|
||||||
{item?.children?.map((child, indexB) => {
|
{item?.children?.map((child, indexB) => {
|
||||||
if (!child.component) {
|
if (!child.component) {
|
||||||
return null;
|
return null;
|
||||||
@ -83,7 +91,14 @@ SchemaInitializer.Button = observer((props: SchemaInitializerButtonProps) => {
|
|||||||
insert: insertSchema,
|
insert: insertSchema,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Component {...child} item={child} insert={insertSchema} />
|
<Component
|
||||||
|
{...child}
|
||||||
|
item={{
|
||||||
|
...child,
|
||||||
|
title: compile(child.title),
|
||||||
|
}}
|
||||||
|
insert={insertSchema}
|
||||||
|
/>
|
||||||
</SchemaInitializerItemContext.Provider>
|
</SchemaInitializerItemContext.Provider>
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -117,7 +132,7 @@ SchemaInitializer.Button = observer((props: SchemaInitializerButtonProps) => {
|
|||||||
color: '#f18b62',
|
color: '#f18b62',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{props.children || props.title}
|
{compile(props.children || props.title)}
|
||||||
</Button>
|
</Button>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
);
|
);
|
||||||
@ -125,6 +140,7 @@ SchemaInitializer.Button = observer((props: SchemaInitializerButtonProps) => {
|
|||||||
|
|
||||||
SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
||||||
const { index, info } = useContext(SchemaInitializerItemContext);
|
const { index, info } = useContext(SchemaInitializerItemContext);
|
||||||
|
const compile = useCompile();
|
||||||
const { items = [], children = info?.title, icon, onClick, ...others } = props;
|
const { items = [], children = info?.title, icon, onClick, ...others } = props;
|
||||||
if (items?.length > 0) {
|
if (items?.length > 0) {
|
||||||
const renderMenuItem = (items: SchemaInitializerItemOptions[]) => {
|
const renderMenuItem = (items: SchemaInitializerItemOptions[]) => {
|
||||||
@ -138,7 +154,7 @@ SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
|||||||
if (item.type === 'itemGroup') {
|
if (item.type === 'itemGroup') {
|
||||||
return (
|
return (
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
<Menu.ItemGroup eventKey={`item-group-${indexA}`} key={`item-group-${indexA}`} title={item.title}>
|
<Menu.ItemGroup eventKey={`item-group-${indexA}`} key={`item-group-${indexA}`} title={compile(item.title)}>
|
||||||
{renderMenuItem(item.children)}
|
{renderMenuItem(item.children)}
|
||||||
</Menu.ItemGroup>
|
</Menu.ItemGroup>
|
||||||
);
|
);
|
||||||
@ -146,7 +162,7 @@ SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
|||||||
if (item.type === 'subMenu') {
|
if (item.type === 'subMenu') {
|
||||||
return (
|
return (
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
<Menu.SubMenu eventKey={`sub-menu-${indexA}`} key={`sub-menu-${indexA}`} title={item.title}>
|
<Menu.SubMenu eventKey={`sub-menu-${indexA}`} key={`sub-menu-${indexA}`} title={compile(item.title)}>
|
||||||
{renderMenuItem(item.children)}
|
{renderMenuItem(item.children)}
|
||||||
</Menu.SubMenu>
|
</Menu.SubMenu>
|
||||||
);
|
);
|
||||||
@ -159,14 +175,14 @@ SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
|||||||
onClick({ ...info, item });
|
onClick({ ...info, item });
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{item.title}
|
{compile(item.title)}
|
||||||
</Menu.Item>
|
</Menu.Item>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
<Menu.SubMenu eventKey={index} key={index} title={children} icon={icon}>
|
<Menu.SubMenu eventKey={index} key={index} title={compile(children)} icon={icon}>
|
||||||
{renderMenuItem(items)}
|
{renderMenuItem(items)}
|
||||||
</Menu.SubMenu>
|
</Menu.SubMenu>
|
||||||
);
|
);
|
||||||
@ -180,7 +196,7 @@ SchemaInitializer.Item = (props: SchemaInitializerItemProps) => {
|
|||||||
}}
|
}}
|
||||||
{...others}
|
{...others}
|
||||||
>
|
>
|
||||||
{children}
|
{compile(children)}
|
||||||
</Menu.Item>
|
</Menu.Item>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -1,11 +1,29 @@
|
|||||||
import { DragOutlined, MenuOutlined } from '@ant-design/icons';
|
import { DragOutlined, MenuOutlined } from '@ant-design/icons';
|
||||||
|
import { css } from '@emotion/css';
|
||||||
import { useField, useFieldSchema } from '@formily/react';
|
import { useField, useFieldSchema } from '@formily/react';
|
||||||
import { Space } from 'antd';
|
import { Space } from 'antd';
|
||||||
|
import classNames from 'classnames';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { DragHandler, useDesignable } from '../schema-component';
|
import { DragHandler, useDesignable } from '../schema-component';
|
||||||
import { SchemaSettings } from './SchemaSettings';
|
import { SchemaSettings } from './SchemaSettings';
|
||||||
|
|
||||||
|
const titleCss = css`
|
||||||
|
pointer-events: none;
|
||||||
|
position: absolute;
|
||||||
|
font-size: 12px;
|
||||||
|
background: #f18b62;
|
||||||
|
color: #fff;
|
||||||
|
padding: 0 5px;
|
||||||
|
line-height: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border-bottom-right-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
top: 2px;
|
||||||
|
left: 2px;
|
||||||
|
`;
|
||||||
|
|
||||||
export const GeneralSchemaDesigner = (props: any) => {
|
export const GeneralSchemaDesigner = (props: any) => {
|
||||||
|
const { title } = props;
|
||||||
const { dn, designable } = useDesignable();
|
const { dn, designable } = useDesignable();
|
||||||
const field = useField();
|
const field = useField();
|
||||||
const fieldSchema = useFieldSchema();
|
const fieldSchema = useFieldSchema();
|
||||||
@ -19,6 +37,7 @@ export const GeneralSchemaDesigner = (props: any) => {
|
|||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className={'general-schema-designer'}>
|
<div className={'general-schema-designer'}>
|
||||||
|
{title && <div className={classNames('general-schema-designer-title', titleCss)}>{title}</div>}
|
||||||
<div className={'general-schema-designer-icons'}>
|
<div className={'general-schema-designer-icons'}>
|
||||||
<Space size={2} align={'center'}>
|
<Space size={2} align={'center'}>
|
||||||
<DragHandler>
|
<DragHandler>
|
||||||
|
@ -1,17 +1,29 @@
|
|||||||
import { Menu } from 'antd';
|
import { Menu } from 'antd';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { useTranslation } from 'react-i18next';
|
||||||
import { useHistory } from 'react-router-dom';
|
import { useHistory } from 'react-router-dom';
|
||||||
|
import { useDesignable } from '..';
|
||||||
import { ProfileAction } from './ProfileAction';
|
import { ProfileAction } from './ProfileAction';
|
||||||
|
|
||||||
export const CurrentUser = () => {
|
export const CurrentUser = () => {
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
const { reset } = useDesignable();
|
||||||
|
const { i18n } = useTranslation();
|
||||||
return (
|
return (
|
||||||
<div style={{ display: 'inline-block' }}>
|
<div style={{ display: 'inline-block' }}>
|
||||||
<Menu selectable={false} mode={'horizontal'} theme={'dark'}>
|
<Menu selectable={false} mode={'horizontal'} theme={'dark'}>
|
||||||
<Menu.SubMenu key={'current-user'} title={'超级管理员'}>
|
<Menu.SubMenu key={'current-user'} title={'超级管理员'}>
|
||||||
<ProfileAction />
|
<ProfileAction />
|
||||||
<Menu.Item>切换角色</Menu.Item>
|
<Menu.Item>切换角色</Menu.Item>
|
||||||
<Menu.Item>语言设置</Menu.Item>
|
<Menu.Item
|
||||||
|
onClick={() => {
|
||||||
|
i18n.changeLanguage(i18n.language === 'en-US' ? 'zh-CN' : 'en-US');
|
||||||
|
// reset();
|
||||||
|
window.location.reload();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
语言设置
|
||||||
|
</Menu.Item>
|
||||||
<Menu.Divider />
|
<Menu.Divider />
|
||||||
<Menu.Item
|
<Menu.Item
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user