-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a FormDataConsumer showing the issue
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
94 changes: 94 additions & 0 deletions
94
packages/ra-ui-materialui/src/form/FormDataConsumer.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
import * as React from 'react'; | ||
import { FormDataConsumer, required, ResourceContextProvider } from 'ra-core'; | ||
import fakeRestDataProvider from 'ra-data-fakerest'; | ||
import { AdminContext } from '../AdminContext'; | ||
import { AutocompleteInput, ReferenceInput, TextInput } from '../input'; | ||
import { SimpleForm } from './SimpleForm'; | ||
import { Create } from '../detail'; | ||
|
||
export default { title: 'ra-core/form/FormDataConsumer' }; | ||
|
||
export const Basic = () => ( | ||
<AdminContext dataProvider={dataProvider}> | ||
<ResourceContextProvider value="posts"> | ||
<Create> | ||
<SimpleForm> | ||
<TextInput source="title" /> | ||
<FormDataConsumer<any>> | ||
{({ formData }) => { | ||
console.log({ formData }); | ||
if (!!formData.title) { | ||
return ( | ||
<ReferenceInput | ||
source="userId" | ||
reference="users" | ||
> | ||
<AutocompleteInput | ||
shouldUnregister | ||
label="User" | ||
optionText={choice => | ||
`${choice.name} / (${choice.id})` | ||
} | ||
// optionValue="userId" | ||
noOptionsText="User does'nt exist" | ||
isRequired | ||
validate={[ | ||
required('User is Required.'), | ||
]} | ||
/> | ||
</ReferenceInput> | ||
); | ||
} else return null; | ||
}} | ||
</FormDataConsumer> | ||
<TextInput source="body" multiline rows={5} /> | ||
</SimpleForm> | ||
</Create> | ||
</ResourceContextProvider> | ||
</AdminContext> | ||
); | ||
|
||
const dataProvider = fakeRestDataProvider({ | ||
users: [ | ||
{ | ||
id: 1, | ||
name: 'Leanne Graham', | ||
}, | ||
{ | ||
id: 2, | ||
name: 'Ervin Howell', | ||
}, | ||
{ | ||
id: 3, | ||
name: 'Clementine Bauch', | ||
}, | ||
{ | ||
id: 4, | ||
name: 'Patricia Lebsack', | ||
}, | ||
{ | ||
id: 5, | ||
name: 'Chelsey Dietrich', | ||
}, | ||
{ | ||
id: 6, | ||
name: 'Mrs. Dennis Schulist', | ||
}, | ||
{ | ||
id: 7, | ||
name: 'Kurtis Weissnat', | ||
}, | ||
{ | ||
id: 8, | ||
name: 'Nicholas Runolfsdottir V', | ||
}, | ||
{ | ||
id: 9, | ||
name: 'Glenna Reichert', | ||
}, | ||
{ | ||
id: 10, | ||
name: 'Clementina DuBuque', | ||
}, | ||
], | ||
}); |