-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathuseShowController.ts
207 lines (194 loc) · 5.99 KB
/
useShowController.ts
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import { useParams } from 'react-router-dom';
import { useAuthenticated, useRequireAccess } from '../../auth';
import { RaRecord } from '../../types';
import {
useGetOne,
useRefresh,
UseGetOneHookValue,
UseGetOneOptions,
} from '../../dataProvider';
import { useTranslate } from '../../i18n';
import { useRedirect } from '../../routing';
import { useNotify } from '../../notification';
import {
useResourceContext,
useGetResourceLabel,
useGetRecordRepresentation,
} from '../../core';
/**
* Prepare data for the Show view.
*
* useShowController does a few things:
* - it grabs the id from the URL and the resource name from the ResourceContext,
* - it fetches the record via useGetOne,
* - it prepares the page title.
*
* @param {Object} props The props passed to the Show component.
*
* @return {Object} controllerProps Fetched data and callbacks for the Show view
*
* @example
*
* import { useShowController } from 'react-admin';
* import ShowView from './ShowView';
*
* const MyShow = () => {
* const controllerProps = useShowController();
* return <ShowView {...controllerProps} />;
* };
*
* @example // useShowController can also take its parameters from props
*
* import { useShowController } from 'react-admin';
* import ShowView from './ShowView';
*
* const MyShow = () => {
* const controllerProps = useShowController({ resource: 'posts', id: 1234 });
* return <ShowView {...controllerProps} />;
* };
*/
export const useShowController = <
RecordType extends RaRecord = any,
ErrorType = Error,
>(
props: ShowControllerProps<RecordType, ErrorType> = {}
): ShowControllerResult<RecordType, ErrorType> => {
const {
disableAuthentication = false,
id: propsId,
queryOptions = {},
} = props;
const resource = useResourceContext(props);
if (!resource) {
throw new Error(
`useShowController requires a non-empty resource prop or context`
);
}
const { isPending: isPendingAuthenticated } = useAuthenticated({
enabled: !disableAuthentication,
});
const { isPending: isPendingCanAccess } = useRequireAccess<RecordType>({
action: 'show',
resource,
// If disableAuthentication is true then isPendingAuthenticated will always be true so this hook is disabled
enabled: !isPendingAuthenticated,
});
const getRecordRepresentation = useGetRecordRepresentation(resource);
const translate = useTranslate();
const notify = useNotify();
const redirect = useRedirect();
const refresh = useRefresh();
const { id: routeId } = useParams<'id'>();
if (!routeId && !propsId) {
throw new Error(
'useShowController requires an id prop or a route with an /:id? parameter.'
);
}
const id = propsId != null ? propsId : routeId;
const { meta, ...otherQueryOptions } = queryOptions;
const {
data: record,
error,
isLoading,
isFetching,
isPending,
refetch,
} = useGetOne<RecordType, ErrorType>(
resource,
{ id, meta },
{
enabled:
(!isPendingAuthenticated && !isPendingCanAccess) ||
disableAuthentication,
onError: () => {
notify('ra.notification.item_doesnt_exist', {
type: 'error',
});
redirect('list', resource);
refresh();
},
retry: false,
...otherQueryOptions,
}
);
// eslint-disable-next-line eqeqeq
if (record && record.id && record.id != id) {
throw new Error(
`useShowController: Fetched record's id attribute (${record.id}) must match the requested 'id' (${id})`
);
}
const getResourceLabel = useGetResourceLabel();
const recordRepresentation = getRecordRepresentation(record);
const defaultTitle = translate('ra.page.show', {
name: getResourceLabel(resource, 1),
id,
record,
recordRepresentation:
typeof recordRepresentation === 'string'
? recordRepresentation
: '',
});
return {
defaultTitle,
error,
isLoading,
isFetching,
isPending,
record,
refetch,
resource,
} as ShowControllerResult<RecordType, ErrorType>;
};
export interface ShowControllerProps<
RecordType extends RaRecord = any,
ErrorType = Error,
> {
disableAuthentication?: boolean;
id?: RecordType['id'];
queryOptions?: UseGetOneOptions<RecordType, ErrorType>;
resource?: string;
}
export interface ShowControllerBaseResult<RecordType extends RaRecord = any> {
defaultTitle?: string;
isFetching: boolean;
isLoading: boolean;
resource: string;
record?: RecordType;
refetch: UseGetOneHookValue<RecordType>['refetch'];
}
export interface ShowControllerLoadingResult<RecordType extends RaRecord = any>
extends ShowControllerBaseResult<RecordType> {
record: undefined;
error: null;
isPending: true;
}
export interface ShowControllerLoadingErrorResult<
RecordType extends RaRecord = any,
TError = Error,
> extends ShowControllerBaseResult<RecordType> {
record: undefined;
error: TError;
isPending: false;
}
export interface ShowControllerRefetchErrorResult<
RecordType extends RaRecord = any,
TError = Error,
> extends ShowControllerBaseResult<RecordType> {
record: RecordType;
error: TError;
isPending: false;
}
export interface ShowControllerSuccessResult<RecordType extends RaRecord = any>
extends ShowControllerBaseResult<RecordType> {
record: RecordType;
error: null;
isPending: false;
}
export type ShowControllerResult<
RecordType extends RaRecord = any,
ErrorType = Error,
> =
| ShowControllerLoadingResult<RecordType>
| ShowControllerLoadingErrorResult<RecordType, ErrorType>
| ShowControllerRefetchErrorResult<RecordType, ErrorType>
| ShowControllerSuccessResult<RecordType>;