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

35 lines
1.0 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';
import { ActionDrawer } from './Action.Drawer';
import { VisibleContext } from './context';
2022-02-05 17:06:33 +08:00
import { useA } from './hooks';
import { ComposedAction } from './types';
export const Action: ComposedAction = observer((props) => {
const { useAction = useA, onClick, ...others } = props;
const [visible, setVisible] = useState(false);
const schema = useFieldSchema();
const field = useField();
const { run } = useAction();
return (
<VisibleContext.Provider value={[visible, setVisible]}>
<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 />
</VisibleContext.Provider>
);
});
Action.Drawer = ActionDrawer;
export default Action;