<EditBase>
The <EditBase>
component is a headless version of <Edit>
: it fetches a record based on the URL, prepares a form submit handler, and renders its children.
It does that by calling useEditController
, and by putting the result in an EditContext
.
Usage
Use <EditBase>
to create a custom Edition view, with exactly the content you add as child and nothing else (no title, Card, or list of actions as in the <Edit>
component).
import * as React from "react";
import { EditBase, SimpleForm, TextInput, SelectInput } from "react-admin";
import { Card } from "@mui/material";
export const BookEdit = () => {
<EditBase>
<div>
<Title title="Book Edition" />
<Card>
<SimpleForm>
<TextInput source="title" />
<TextInput source="author" />
<SelectInput source="availability" choices={[
{ id: "in_stock", name: "In stock" },
{ id: "out_of_stock", name: "Out of stock" },
{ id: "out_of_print", name: "Out of print" },
]} />
</SimpleForm>
</Card>
</div>
</EditBase>
);
};
You can customize the <EditBase>
component using the following props, documented in the <Edit>
component:
children
: the components that renders the formdisableAuthentication
: disable the authentication checkid
: the id of the record to editmutationMode
: switch to optimistic or pessimistic mutations (undoable by default)mutationOptions
: options for thedataProvider.update()
callqueryOptions
: options for thedataProvider.getOne()
callredirect
: change the redirect location after successful creationresource
: override the name of the resource to createtransform
: transform the form data before callingdataProvider.update()