-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathShow.tsx
82 lines (79 loc) · 2.86 KB
/
Show.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import * as React from 'react';
import { ReactElement } from 'react';
import { ShowBase, RaRecord, ShowBaseProps } from 'ra-core';
import { ShowView, ShowViewProps } from './ShowView';
import { Loading } from '../layout';
/**
* Page component for the Show view
*
* The `<Show>` component handles the headless logic of the Show page:
* - it calls useShowController to fetch the record from the data provider,
* - it creates a ShowContext and a RecordContext,
* - it computes the default page title
* - it renders the page layout with the correct title and actions
*
* `<Show>` is not responsible for rendering the actual page -
* that's the job of its child component (usually `<SimpleShowLayout>`).
*
* @example
*
* // in src/posts.js
* import * as React from "react";
* import { Show, SimpleShowLayout, TextField } from 'react-admin';
*
* export const PostShow = () => (
* <Show>
* <SimpleShowLayout>
* <TextField source="title" />
* </SimpleShowLayout>
* </Show>
* );
*
* // in src/App.js
* import * as React from "react";
* import { Admin, Resource } from 'react-admin';
*
* import { PostShow } from './posts';
*
* const App = () => (
* <Admin dataProvider={...}>
* <Resource name="posts" show={PostShow} />
* </Admin>
* );
* export default App;
*
* @param {ShowProps} props
* @param {ReactElement|false} props.actions An element to display above the page content, or false to disable actions.
* @param {string} props.className A className to apply to the page content.
* @param {ElementType} props.component The component to use as root component (div by default).
* @param {boolean} props.emptyWhileLoading Do not display the page content while loading the initial data.
* @param {string} props.id The id of the resource to display (grabbed from the route params if not defined).
* @param {Object} props.queryClient Options to pass to the react-query useQuery hook.
* @param {string} props.resource The resource to fetch from the data provider (grabbed from the ResourceContext if not defined).
* @param {Object} props.sx Custom style object.
* @param {ElementType|string} props.title The title of the page. Defaults to `#{resource} #${id}`.
*
* @see ShowView for the actual rendering
*/
export const Show = <RecordType extends RaRecord = any>({
id,
resource,
queryOptions,
disableAuthentication,
loading = defaultLoading,
...rest
}: ShowProps<RecordType>): ReactElement => (
<ShowBase<RecordType>
id={id}
disableAuthentication={disableAuthentication}
queryOptions={queryOptions}
resource={resource}
loading={loading}
>
<ShowView {...rest} />
</ShowBase>
);
export interface ShowProps<RecordType extends RaRecord = any>
extends ShowBaseProps<RecordType>,
Omit<ShowViewProps, 'children'> {}
const defaultLoading = <Loading />;