tachybase_todo/packages/client/src/schema-component/antd/action/Action.tsx

41 lines
1.3 KiB
TypeScript
Raw Normal View History

import { observer, RecursionField, useField, useFieldSchema } from '@formily/react';
2022-02-05 17:06:33 +08:00
import { Button } from 'antd';
import React, { useState } from 'react';
2022-02-10 12:06:48 +08:00
import ActionContainer from './Action.Container';
2022-02-05 17:06:33 +08:00
import { ActionDrawer } from './Action.Drawer';
2022-02-10 12:06:48 +08:00
import { ActionModal } from './Action.Modal';
import { ActionPage } from './Action.Page';
import { ActionContext } from './context';
2022-02-05 17:06:33 +08:00
import { useA } from './hooks';
import { ComposedAction } from './types';
2022-02-10 12:06:48 +08:00
export const Action: ComposedAction = observer((props: any) => {
const { openMode, containerRefKey, useAction = useA, onClick, ...others } = props;
const [visible, setVisible] = useState(false);
const schema = useFieldSchema();
const field = useField();
const { run } = useAction();
return (
2022-02-10 12:06:48 +08:00
<ActionContext.Provider value={{ visible, setVisible, openMode, containerRefKey }}>
<Button
{...others}
onClick={(e) => {
onClick && onClick(e);
setVisible(true);
run();
}}
>
2022-02-05 17:06:33 +08:00
{field.title}
</Button>
<RecursionField basePath={field.address} schema={schema} onlyRenderProperties />
2022-02-10 12:06:48 +08:00
</ActionContext.Provider>
);
});
Action.Drawer = ActionDrawer;
2022-02-10 12:06:48 +08:00
Action.Modal = ActionModal;
Action.Container = ActionContainer;
Action.Page = ActionPage;
export default Action;