<EditBase>
<EditBase>
is a headless variant of <Edit>
: it fetches a record based on the URL, prepares a form submit handler, and renders its children inside an EditContext
. Use it to build a custom edition page layout.
Contrary to <Edit>
, it does not render the page layout, so no title, no actions, and no <Card>
.
<EditBase>
relies on the useEditController
hook.
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 { EditBase, SelectInput, SimpleForm, TextInput, Title } from "react-admin";
import { Card, CardContent, Container } from "@mui/material";
export const BookEdit = () => (
<EditBase>
<Container>
<Title title="Book Edition" />
<Card>
<CardContent>
<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>
</CardContent>
</Card>
</Container>
</EditBase>
);
Props
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()