@@ -9,10 +9,14 @@ import {useMemo} from 'react'
9
9
import { useObservable } from 'react-rx'
10
10
import { combineLatest , from , type Observable , of } from 'rxjs'
11
11
import {
12
+ catchError ,
13
+ concatMap ,
12
14
distinctUntilChanged ,
15
+ expand ,
13
16
filter ,
14
17
map ,
15
18
mergeMap ,
19
+ reduce ,
16
20
startWith ,
17
21
switchAll ,
18
22
switchMap ,
@@ -48,7 +52,11 @@ export interface DocumentInRelease {
48
52
}
49
53
}
50
54
51
- type ReleaseDocumentsObservableResult = Observable < { loading : boolean ; results : DocumentInRelease [ ] } >
55
+ type ReleaseDocumentsObservableResult = Observable < {
56
+ loading : boolean
57
+ results : DocumentInRelease [ ]
58
+ error : Error | null
59
+ } >
52
60
53
61
const getActiveReleaseDocumentsObservable = ( {
54
62
schema,
@@ -153,7 +161,10 @@ const getActiveReleaseDocumentsObservable = ({
153
161
} ) ) ,
154
162
)
155
163
} ) ,
156
- map ( ( results ) => ( { loading : false , results} ) ) ,
164
+ map ( ( results ) => ( { loading : false , results, error : null } ) ) ,
165
+ catchError ( ( error ) => {
166
+ return of ( { loading : false , results : [ ] , error} )
167
+ } ) ,
157
168
)
158
169
}
159
170
@@ -172,49 +183,73 @@ const getPublishedArchivedReleaseDocumentsObservable = ({
172
183
const observableClient = client . observable
173
184
const dataset = client . config ( ) . dataset
174
185
175
- if ( ! release . finalDocumentStates ?. length ) return of ( { loading : false , results : [ ] } )
186
+ if ( ! release . finalDocumentStates ?. length ) return of ( { loading : false , results : [ ] , error : null } )
176
187
177
- return from ( release . finalDocumentStates || [ ] ) . pipe (
178
- mergeMap ( ( { id : documentId } ) => {
179
- const document$ = observableClient
180
- . request < { documents : DocumentInRelease [ 'document' ] [ ] } > ( {
181
- url : `/data/history/${ dataset } /documents/${ documentId } ?lastRevision=true` ,
182
- } )
183
- . pipe ( map ( ( { documents : [ document ] } ) => document ) )
188
+ function batchRequestDocumentFromHistory ( startIndex : number ) {
189
+ const finalIndex = startIndex + 10
190
+ return observableClient
191
+ . request < { documents : DocumentInRelease [ 'document' ] [ ] } > ( {
192
+ url : `/data/history/${ dataset } /documents/${ release . finalDocumentStates
193
+ ?. slice ( startIndex , finalIndex )
194
+ . map ( ( d ) => d . id )
195
+ . join ( ',' ) } ?lastRevision=true`,
196
+ } )
197
+ . pipe ( map ( ( { documents} ) => ( { documents, finalIndex} ) ) )
198
+ }
199
+
200
+ const documents$ = batchRequestDocumentFromHistory ( 0 ) . pipe (
201
+ expand ( ( response ) => {
202
+ if ( release . finalDocumentStates && response . finalIndex < release . finalDocumentStates . length ) {
203
+ // Continue with next batch
204
+ return batchRequestDocumentFromHistory ( response . finalIndex )
205
+ }
206
+ // End recursion by emitting an empty observable
207
+ return of ( )
208
+ } ) ,
209
+ reduce (
210
+ ( documents : DocumentInRelease [ 'document' ] [ ] , batch ) => documents . concat ( batch . documents ) ,
211
+ [ ] ,
212
+ ) ,
213
+ )
184
214
185
- const previewValues$ = document$ . pipe (
186
- switchMap ( ( document ) => {
215
+ return documents$ . pipe (
216
+ mergeMap ( ( documents ) => {
217
+ return from ( documents ) . pipe (
218
+ concatMap ( ( document ) => {
187
219
const schemaType = schema . get ( document . _type )
188
220
if ( ! schemaType ) {
189
221
throw new Error ( `Schema type not found for document type ${ document . _type } ` )
190
222
}
191
-
192
- return documentPreviewStore . observeForPreview ( document , schemaType ) . pipe (
223
+ const previewValues$ = documentPreviewStore . observeForPreview ( document , schemaType ) . pipe (
193
224
take ( 1 ) ,
194
225
map ( ( { snapshot} ) => ( {
195
226
isLoading : false ,
196
227
values : snapshot ,
197
228
} ) ) ,
198
229
startWith ( { isLoading : true , values : { } } ) ,
230
+ filter ( ( { isLoading} ) => ! isLoading ) ,
199
231
)
200
- } ) ,
201
- filter ( ( { isLoading} ) => ! isLoading ) ,
202
- )
203
232
204
- return combineLatest ( [ document$ , previewValues$ ] ) . pipe (
205
- map ( ( [ document , previewValues ] ) => ( {
206
- document,
207
- previewValues,
208
- memoKey : uuid ( ) ,
209
- validation : { validation : [ ] , hasError : false , isValidating : false } ,
233
+ return previewValues$ . pipe (
234
+ map ( ( previewValues ) => ( {
235
+ document,
236
+ previewValues,
237
+ memoKey : uuid ( ) ,
238
+ validation : { validation : [ ] , hasError : false , isValidating : false } ,
239
+ } ) ) ,
240
+ )
241
+ } ) ,
242
+ toArray ( ) ,
243
+ map ( ( results ) => ( {
244
+ loading : false ,
245
+ results,
246
+ error : null ,
210
247
} ) ) ,
211
248
)
212
249
} ) ,
213
- toArray ( ) ,
214
- map ( ( results ) => ( {
215
- loading : false ,
216
- results,
217
- } ) ) ,
250
+ catchError ( ( error ) => {
251
+ return of ( { loading : false , results : [ ] , error} )
252
+ } ) ,
218
253
)
219
254
}
220
255
@@ -257,12 +292,13 @@ const getReleaseDocumentsObservable = ({
257
292
releaseId,
258
293
} )
259
294
} ) ,
260
- startWith ( { loading : true , results : [ ] } ) ,
295
+ startWith ( { loading : true , results : [ ] , error : null } ) ,
261
296
)
262
297
263
298
export function useBundleDocuments ( releaseId : string ) : {
264
299
loading : boolean
265
300
results : DocumentInRelease [ ]
301
+ error : null | Error
266
302
} {
267
303
const documentPreviewStore = useDocumentPreviewStore ( )
268
304
const { getClient, i18n} = useSource ( )
@@ -282,5 +318,5 @@ export function useBundleDocuments(releaseId: string): {
282
318
[ schema , documentPreviewStore , getClient , releaseId , i18n , releasesState$ ] ,
283
319
)
284
320
285
- return useObservable ( releaseDocumentsObservable , { loading : true , results : [ ] } )
321
+ return useObservable ( releaseDocumentsObservable , { loading : true , results : [ ] , error : null } )
286
322
}
0 commit comments