自定义删除按钮 react-admin

Cutomize Delete button react-admin

有什么方法可以自定义 react-admin 中的 DeleteButton 按钮来添加确认消息,例如 'Do you want to delete item?'。目前点击 DeleteButton 它会直接删除该项目而不要求确认。我尝试将 title 属性添加到删除按钮,但它没有被触发。 这是我的代码

//This worked with admin-on-rest, but not working with react-admin
const CategoryDeleteTitle = translate(({ record, translate }) => <span>
        {translate('Delete')}&nbsp;
        {record && `${record.code} ${record.name}`}
    </span>);

const EditActions = ({ basePath, data, resource }) => (
    <CardActions>
        <ShowButton basePath={basePath} record={data} />
        <ListButton basePath={basePath} />
        <DeleteButton title={<CategoryTitle />} basePath={basePath} record={data} resource={resource} />

    </CardActions>
);

export const CategoryEdit = (props) => (
    <Edit actions={<EditActions />} title={<CategoryTitle />} {...props}>
        <SimpleForm>
            <DisabledInput source="id" />
            <TextInput source="name" />
        </SimpleForm>
    </Edit>
);

我们现在以乐观的方式处理删除,提供撤消机制而不是确认对话框。

如果这不适合你,你可以按照UPGRADE GUIDE which leads to this page of the documentation: https://marmelab.com/react-admin/CreateEdit.html#actions

请注意,您必须使用 react-modals 之类的方法创建和处理确认对话框,并自行发送 DELETE 操作。

您可以将此 gist 用于自定义操作,例如:

const UserEditActions = ({ basePath, data, resource }) => (
    <CardActions>
        <ListButton basePath={basePath} />
        <DeleteButtonWithConfirmation basePath={basePath} record={data} resource={resource} undoable={false} />
        <RefreshButton />
      </CardActions>
    );

export const UserEdit = ({ ...props }) => (
  <Edit {...props} actions={<UserEditActions />} >
    <CreateEditForm title={<EntityTitle label="User" />} />
  </Edit>
);

在 react-admin v3 中,现在有一个 DeleteWithConfirmButton :-)

根据文档“https://marmelab.com/react-admin/CreateEdit.html”创建:

const CustomToolbar = props => (
    <Toolbar {...props} classes={useStyles()}>
        <SaveButton />
        <DeleteButton undoable={false} />
    </Toolbar>
);

从您需要的 react-admin 按钮导入,如下所示:

import {
    Toolbar,
    SaveButton,
    DeleteWithConfirmButton
} from 'react-admin';

在此处查看所有可用名称 https://github.com/marmelab/react-admin/tree/master/packages/ra-ui-materialui/src/button,并像这样更改 ImportedButton 上的 DeleteButton:

 export const CustomToolbar = props => (
    <Toolbar {...props} classes={useStyles()}>
        <SaveButton/>
        <DeleteWithConfirmButton/>
    </Toolbar>
);

并在需要的地方更改代码<SimpleForm toolbar={<CustomToolbar />}>