-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.js
434 lines (396 loc) · 10.7 KB
/
index.js
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/**
* WordPress dependencies
*/
import { Button } from '@wordpress/components';
import {
store as coreStore,
privateApis as coreDataPrivateApis,
} from '@wordpress/core-data';
import { useState, useMemo, useCallback, useEffect } from '@wordpress/element';
import { privateApis as routerPrivateApis } from '@wordpress/router';
import { useSelect, useDispatch } from '@wordpress/data';
import { DataViews, filterSortAndPaginate } from '@wordpress/dataviews';
import { privateApis as editorPrivateApis } from '@wordpress/editor';
import { __ } from '@wordpress/i18n';
import { drawerRight } from '@wordpress/icons';
/**
* Internal dependencies
*/
import Page from '../page';
import {
useDefaultViews,
defaultLayouts,
} from '../sidebar-dataviews/default-views';
import {
OPERATOR_IS_ANY,
OPERATOR_IS_NONE,
LAYOUT_LIST,
} from '../../utils/constants';
import AddNewPostModal from '../add-new-post';
import { unlock } from '../../lock-unlock';
import { useEditPostAction } from '../dataviews-actions';
import { usePrevious } from '@wordpress/compose';
import usePostFields from '../post-fields';
const { usePostActions } = unlock( editorPrivateApis );
const { useLocation, useHistory } = unlock( routerPrivateApis );
const { useEntityRecordsWithPermissions } = unlock( coreDataPrivateApis );
const EMPTY_ARRAY = [];
const getDefaultView = ( defaultViews, activeView ) => {
return defaultViews.find( ( { slug } ) => slug === activeView )?.view;
};
const getCustomView = ( editedEntityRecord ) => {
if ( ! editedEntityRecord?.content ) {
return undefined;
}
const content = JSON.parse( editedEntityRecord.content );
if ( ! content ) {
return undefined;
}
return {
...content,
layout: defaultLayouts[ content.type ]?.layout,
};
};
/**
* This function abstracts working with default & custom views by
* providing a [ state, setState ] tuple based on the URL parameters.
*
* Consumers use the provided tuple to work with state
* and don't have to deal with the specifics of default & custom views.
*
* @param {string} postType Post type to retrieve default views for.
* @return {Array} The [ state, setState ] tuple.
*/
function useView( postType ) {
const {
params: { activeView = 'all', isCustom = 'false', layout },
} = useLocation();
const history = useHistory();
const defaultViews = useDefaultViews( { postType } );
const { editEntityRecord } = useDispatch( coreStore );
const editedEntityRecord = useSelect(
( select ) => {
if ( isCustom !== 'true' ) {
return undefined;
}
const { getEditedEntityRecord } = select( coreStore );
return getEditedEntityRecord(
'postType',
'wp_dataviews',
Number( activeView )
);
},
[ activeView, isCustom ]
);
const [ view, setView ] = useState( () => {
let initialView;
if ( isCustom === 'true' ) {
initialView = getCustomView( editedEntityRecord ) ?? {
type: layout ?? LAYOUT_LIST,
};
} else {
initialView = getDefaultView( defaultViews, activeView ) ?? {
type: layout ?? LAYOUT_LIST,
};
}
const type = layout ?? initialView.type;
return {
...initialView,
type,
};
} );
const setViewWithUrlUpdate = useCallback(
( newView ) => {
const { params } = history.getLocationWithParams();
if ( newView.type === LAYOUT_LIST && ! params?.layout ) {
// Skip updating the layout URL param if
// it is not present and the newView.type is LAYOUT_LIST.
} else if ( newView.type !== params?.layout ) {
history.push( {
...params,
layout: newView.type,
} );
}
setView( newView );
if ( isCustom === 'true' && editedEntityRecord?.id ) {
editEntityRecord(
'postType',
'wp_dataviews',
editedEntityRecord?.id,
{
content: JSON.stringify( newView ),
}
);
}
},
[ history, isCustom, editEntityRecord, editedEntityRecord?.id ]
);
// When layout URL param changes, update the view type
// without affecting any other config.
useEffect( () => {
setView( ( prevView ) => ( {
...prevView,
type: layout ?? LAYOUT_LIST,
} ) );
}, [ layout ] );
// When activeView or isCustom URL parameters change, reset the view.
useEffect( () => {
let newView;
if ( isCustom === 'true' ) {
newView = getCustomView( editedEntityRecord );
} else {
newView = getDefaultView( defaultViews, activeView );
}
if ( newView ) {
const type = layout ?? newView.type;
setView( {
...newView,
type,
} );
}
}, [ activeView, isCustom, layout, defaultViews, editedEntityRecord ] );
return [ view, setViewWithUrlUpdate, setViewWithUrlUpdate ];
}
const DEFAULT_STATUSES = 'draft,future,pending,private,publish'; // All but 'trash'.
function getItemId( item ) {
return item.id.toString();
}
export default function PostList( { postType } ) {
const [ view, setView ] = useView( postType );
const defaultViews = useDefaultViews( { postType } );
const history = useHistory();
const location = useLocation();
const {
postId,
quickEdit = false,
isCustom,
activeView = 'all',
} = location.params;
const [ selection, setSelection ] = useState( postId?.split( ',' ) ?? [] );
const onChangeSelection = useCallback(
( items ) => {
setSelection( items );
const { params } = history.getLocationWithParams();
if ( ( params.isCustom ?? 'false' ) === 'false' ) {
history.push( {
...params,
postId: items.join( ',' ),
} );
}
},
[ history ]
);
const getActiveViewFilters = ( views, match ) => {
const found = views.find( ( { slug } ) => slug === match );
return found?.filters ?? [];
};
const { isLoading: isLoadingFields, fields: _fields } = usePostFields();
const fields = useMemo( () => {
const activeViewFilters = getActiveViewFilters(
defaultViews,
activeView
).map( ( { field } ) => field );
return _fields.map( ( field ) => ( {
...field,
elements: activeViewFilters.includes( field.id )
? []
: field.elements,
} ) );
}, [ _fields, defaultViews, activeView ] );
const queryArgs = useMemo( () => {
const filters = {};
view.filters?.forEach( ( filter ) => {
if (
filter.field === 'status' &&
filter.operator === OPERATOR_IS_ANY
) {
filters.status = filter.value;
}
if (
filter.field === 'author' &&
filter.operator === OPERATOR_IS_ANY
) {
filters.author = filter.value;
} else if (
filter.field === 'author' &&
filter.operator === OPERATOR_IS_NONE
) {
filters.author_exclude = filter.value;
}
} );
// The bundled views want data filtered without displaying the filter.
const activeViewFilters = getActiveViewFilters(
defaultViews,
activeView
);
activeViewFilters.forEach( ( filter ) => {
if (
filter.field === 'status' &&
filter.operator === OPERATOR_IS_ANY
) {
filters.status = filter.value;
}
if (
filter.field === 'author' &&
filter.operator === OPERATOR_IS_ANY
) {
filters.author = filter.value;
} else if (
filter.field === 'author' &&
filter.operator === OPERATOR_IS_NONE
) {
filters.author_exclude = filter.value;
}
} );
// We want to provide a different default item for the status filter
// than the REST API provides.
if ( ! filters.status || filters.status === '' ) {
filters.status = DEFAULT_STATUSES;
}
return {
per_page: view.perPage,
page: view.page,
_embed: 'author',
order: view.sort?.direction,
orderby: view.sort?.field,
search: view.search,
...filters,
};
}, [ view, activeView, defaultViews ] );
const {
records,
isResolving: isLoadingData,
totalItems,
totalPages,
} = useEntityRecordsWithPermissions( 'postType', postType, queryArgs );
// The REST API sort the authors by ID, but we want to sort them by name.
const data = useMemo( () => {
if ( ! isLoadingFields && view?.sort?.field === 'author' ) {
return filterSortAndPaginate(
records,
{ sort: { ...view.sort } },
fields
).data;
}
return records;
}, [ records, fields, isLoadingFields, view?.sort ] );
const ids = data?.map( ( record ) => getItemId( record ) ) ?? [];
const prevIds = usePrevious( ids ) ?? [];
const deletedIds = prevIds.filter( ( id ) => ! ids.includes( id ) );
const postIdWasDeleted = deletedIds.includes( postId );
useEffect( () => {
if ( postIdWasDeleted ) {
history.push( {
...history.getLocationWithParams().params,
postId: undefined,
} );
}
}, [ postIdWasDeleted, history ] );
const paginationInfo = useMemo(
() => ( {
totalItems,
totalPages,
} ),
[ totalItems, totalPages ]
);
const { labels, canCreateRecord } = useSelect(
( select ) => {
const { getPostType, canUser } = select( coreStore );
return {
labels: getPostType( postType )?.labels,
canCreateRecord: canUser( 'create', {
kind: 'postType',
name: postType,
} ),
};
},
[ postType ]
);
const postTypeActions = usePostActions( {
postType,
context: 'list',
} );
const editAction = useEditPostAction();
const actions = useMemo(
() => [ editAction, ...postTypeActions ],
[ postTypeActions, editAction ]
);
const [ showAddPostModal, setShowAddPostModal ] = useState( false );
const openModal = () => setShowAddPostModal( true );
const closeModal = () => setShowAddPostModal( false );
const handleNewPage = ( { type, id } ) => {
history.push( {
postId: id,
postType: type,
canvas: 'edit',
} );
closeModal();
};
return (
<Page
title={ labels?.name }
actions={
labels?.add_new_item &&
canCreateRecord && (
<>
<Button
variant="primary"
onClick={ openModal }
__next40pxDefaultSize
>
{ labels.add_new_item }
</Button>
{ showAddPostModal && (
<AddNewPostModal
postType={ postType }
onSave={ handleNewPage }
onClose={ closeModal }
/>
) }
</>
)
}
>
<DataViews
key={ activeView + isCustom }
paginationInfo={ paginationInfo }
fields={ fields }
actions={ actions }
data={ data || EMPTY_ARRAY }
isLoading={ isLoadingData || isLoadingFields }
view={ view }
onChangeView={ setView }
selection={ selection }
onChangeSelection={ onChangeSelection }
isItemClickable={ ( item ) => item.status !== 'trash' }
onClickItem={ ( { id } ) => {
history.push( {
postId: id,
postType,
canvas: 'edit',
} );
} }
getItemId={ getItemId }
defaultLayouts={ defaultLayouts }
header={
window.__experimentalQuickEditDataViews &&
view.type !== LAYOUT_LIST &&
postType === 'page' && (
<Button
size="compact"
isPressed={ quickEdit }
icon={ drawerRight }
label={ __( 'Details' ) }
onClick={ () => {
history.push( {
...location.params,
quickEdit: quickEdit ? undefined : true,
} );
} }
/>
)
}
/>
</Page>
);
}