-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
selectors.js
815 lines (762 loc) · 21.9 KB
/
selectors.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
/**
* External dependencies
*/
import createSelector from 'rememo';
import { set, map, find, get, filter, compact } from 'lodash';
/**
* WordPress dependencies
*/
import { createRegistrySelector } from '@wordpress/data';
import { addQueryArgs } from '@wordpress/url';
/**
* Internal dependencies
*/
import { STORE_NAME } from './name';
import { getQueriedItems } from './queried-data';
import { DEFAULT_ENTITY_KEY } from './entities';
import { getNormalizedCommaSeparable } from './utils';
/**
* Shared reference to an empty array for cases where it is important to avoid
* returning a new array reference on every invocation, as in a connected or
* other pure component which performs `shouldComponentUpdate` check on props.
* This should be used as a last resort, since the normalized data should be
* maintained by the reducer result in state.
*
* @type {Array}
*/
const EMPTY_ARRAY = [];
/**
* Returns true if a request is in progress for embed preview data, or false
* otherwise.
*
* @param {Object} state Data state.
* @param {string} url URL the preview would be for.
*
* @return {boolean} Whether a request is in progress for an embed preview.
*/
export const isRequestingEmbedPreview = createRegistrySelector(
( select ) => ( state, url ) => {
return select( STORE_NAME ).isResolving( 'getEmbedPreview', [ url ] );
}
);
/**
* Returns all available authors.
*
* @param {Object} state Data state.
* @param {Object|undefined} query Optional object of query parameters to
* include with request.
* @return {Array} Authors list.
*/
export function getAuthors( state, query ) {
const path = addQueryArgs(
'/wp/v2/users/?who=authors&per_page=100',
query
);
return getUserQueryResults( state, path );
}
/**
* Returns all available authors.
*
* @param {Object} state Data state.
* @param {number} id The author id.
*
* @return {Array} Authors list.
*/
export function __unstableGetAuthor( state, id ) {
return get( state, [ 'users', 'byId', id ], null );
}
/**
* Returns the current user.
*
* @param {Object} state Data state.
*
* @return {Object} Current user object.
*/
export function getCurrentUser( state ) {
return state.currentUser;
}
/**
* Returns all the users returned by a query ID.
*
* @param {Object} state Data state.
* @param {string} queryID Query ID.
*
* @return {Array} Users list.
*/
export const getUserQueryResults = createSelector(
( state, queryID ) => {
const queryResults = state.users.queries[ queryID ];
return map( queryResults, ( id ) => state.users.byId[ id ] );
},
( state, queryID ) => [ state.users.queries[ queryID ], state.users.byId ]
);
/**
* Returns whether the entities for the give kind are loaded.
*
* @param {Object} state Data state.
* @param {string} kind Entity kind.
*
* @return {Array<Object>} Array of entities with config matching kind.
*/
export function getEntitiesByKind( state, kind ) {
return filter( state.entities.config, { kind } );
}
/**
* Returns the entity object given its kind and name.
*
* @param {Object} state Data state.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
*
* @return {Object} Entity
*/
export function getEntity( state, kind, name ) {
return find( state.entities.config, { kind, name } );
}
/**
* Returns the Entity's record object by key. Returns `null` if the value is not
* yet received, undefined if the value entity is known to not exist, or the
* entity object if it exists and is received.
*
* @param {Object} state State tree
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} key Record's key
* @param {?Object} query Optional query.
*
* @return {Object?} Record.
*/
export function getEntityRecord( state, kind, name, key, query ) {
const queriedState = get( state.entities.data, [
kind,
name,
'queriedData',
] );
if ( ! queriedState ) {
return undefined;
}
const context = query?.context ?? 'default';
if ( query === undefined ) {
// If expecting a complete item, validate that completeness.
if ( ! queriedState.itemIsComplete[ context ]?.[ key ] ) {
return undefined;
}
return queriedState.items[ context ][ key ];
}
const item = queriedState.items[ context ]?.[ key ];
if ( item && query._fields ) {
const filteredItem = {};
const fields = getNormalizedCommaSeparable( query._fields );
for ( let f = 0; f < fields.length; f++ ) {
const field = fields[ f ].split( '.' );
const value = get( item, field );
set( filteredItem, field, value );
}
return filteredItem;
}
return item;
}
/**
* Returns the Entity's record object by key. Doesn't trigger a resolver nor requests the entity from the API if the entity record isn't available in the local state.
*
* @param {Object} state State tree
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} key Record's key
*
* @return {Object|null} Record.
*/
export function __experimentalGetEntityRecordNoResolver(
state,
kind,
name,
key
) {
return getEntityRecord( state, kind, name, key );
}
/**
* Returns the entity's record object by key,
* with its attributes mapped to their raw values.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} key Record's key.
*
* @return {Object?} Object with the entity's raw attributes.
*/
export const getRawEntityRecord = createSelector(
( state, kind, name, key ) => {
const record = getEntityRecord( state, kind, name, key );
return (
record &&
Object.keys( record ).reduce( ( accumulator, _key ) => {
// Because edits are the "raw" attribute values,
// we return those from record selectors to make rendering,
// comparisons, and joins with edits easier.
accumulator[ _key ] = get(
record[ _key ],
'raw',
record[ _key ]
);
return accumulator;
}, {} )
);
},
( state ) => [ state.entities.data ]
);
/**
* Returns true if records have been received for the given set of parameters,
* or false otherwise.
*
* @param {Object} state State tree
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {?Object} query Optional terms query.
*
* @return {boolean} Whether entity records have been received.
*/
export function hasEntityRecords( state, kind, name, query ) {
return Array.isArray( getEntityRecords( state, kind, name, query ) );
}
/**
* Returns the Entity's records.
*
* @param {Object} state State tree
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {?Object} query Optional terms query.
*
* @return {?Array} Records.
*/
export function getEntityRecords( state, kind, name, query ) {
// Queried data state is prepopulated for all known entities. If this is not
// assigned for the given parameters, then it is known to not exist. Thus, a
// return value of an empty array is used instead of `null` (where `null` is
// otherwise used to represent an unknown state).
const queriedState = get( state.entities.data, [
kind,
name,
'queriedData',
] );
if ( ! queriedState ) {
return EMPTY_ARRAY;
}
return getQueriedItems( queriedState, query );
}
/**
* Returns the list of dirty entity records.
*
* @param {Object} state State tree.
*
* @return {[{ title: string, key: string, name: string, kind: string }]} The list of updated records
*/
export const __experimentalGetDirtyEntityRecords = createSelector(
( state ) => {
const {
entities: { data },
} = state;
const dirtyRecords = [];
Object.keys( data ).forEach( ( kind ) => {
Object.keys( data[ kind ] ).forEach( ( name ) => {
const primaryKeys = Object.keys(
data[ kind ][ name ].edits
).filter( ( primaryKey ) =>
hasEditsForEntityRecord( state, kind, name, primaryKey )
);
if ( primaryKeys.length ) {
const entity = getEntity( state, kind, name );
primaryKeys.forEach( ( primaryKey ) => {
const entityRecord = getEditedEntityRecord(
state,
kind,
name,
primaryKey
);
dirtyRecords.push( {
// We avoid using primaryKey because it's transformed into a string
// when it's used as an object key.
key:
entityRecord[
entity.key || DEFAULT_ENTITY_KEY
],
title: entity?.getTitle?.( entityRecord ) || '',
name,
kind,
} );
} );
}
} );
} );
return dirtyRecords;
},
( state ) => [ state.entities.data ]
);
/**
* Returns the list of entities currently being saved.
*
* @param {Object} state State tree.
*
* @return {[{ title: string, key: string, name: string, kind: string }]} The list of records being saved.
*/
export const __experimentalGetEntitiesBeingSaved = createSelector(
( state ) => {
const {
entities: { data },
} = state;
const recordsBeingSaved = [];
Object.keys( data ).forEach( ( kind ) => {
Object.keys( data[ kind ] ).forEach( ( name ) => {
const primaryKeys = Object.keys(
data[ kind ][ name ].saving
).filter( ( primaryKey ) =>
isSavingEntityRecord( state, kind, name, primaryKey )
);
if ( primaryKeys.length ) {
const entity = getEntity( state, kind, name );
primaryKeys.forEach( ( primaryKey ) => {
const entityRecord = getEditedEntityRecord(
state,
kind,
name,
primaryKey
);
recordsBeingSaved.push( {
// We avoid using primaryKey because it's transformed into a string
// when it's used as an object key.
key:
entityRecord[
entity.key || DEFAULT_ENTITY_KEY
],
title: entity?.getTitle?.( entityRecord ) || '',
name,
kind,
} );
} );
}
} );
} );
return recordsBeingSaved;
},
( state ) => [ state.entities.data ]
);
/**
* Returns the specified entity record's edits.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {Object?} The entity record's edits.
*/
export function getEntityRecordEdits( state, kind, name, recordId ) {
return get( state.entities.data, [ kind, name, 'edits', recordId ] );
}
/**
* Returns the specified entity record's non transient edits.
*
* Transient edits don't create an undo level, and
* are not considered for change detection.
* They are defined in the entity's config.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {Object?} The entity record's non transient edits.
*/
export const getEntityRecordNonTransientEdits = createSelector(
( state, kind, name, recordId ) => {
const { transientEdits } = getEntity( state, kind, name ) || {};
const edits = getEntityRecordEdits( state, kind, name, recordId ) || {};
if ( ! transientEdits ) {
return edits;
}
return Object.keys( edits ).reduce( ( acc, key ) => {
if ( ! transientEdits[ key ] ) {
acc[ key ] = edits[ key ];
}
return acc;
}, {} );
},
( state ) => [ state.entities.config, state.entities.data ]
);
/**
* Returns true if the specified entity record has edits,
* and false otherwise.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {boolean} Whether the entity record has edits or not.
*/
export function hasEditsForEntityRecord( state, kind, name, recordId ) {
return (
isSavingEntityRecord( state, kind, name, recordId ) ||
Object.keys(
getEntityRecordNonTransientEdits( state, kind, name, recordId )
).length > 0
);
}
/**
* Returns the specified entity record, merged with its edits.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {Object?} The entity record, merged with its edits.
*/
export const getEditedEntityRecord = createSelector(
( state, kind, name, recordId ) => ( {
...getRawEntityRecord( state, kind, name, recordId ),
...getEntityRecordEdits( state, kind, name, recordId ),
} ),
( state ) => [ state.entities.data ]
);
/**
* Returns true if the specified entity record is autosaving, and false otherwise.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {boolean} Whether the entity record is autosaving or not.
*/
export function isAutosavingEntityRecord( state, kind, name, recordId ) {
const { pending, isAutosave } = get(
state.entities.data,
[ kind, name, 'saving', recordId ],
{}
);
return Boolean( pending && isAutosave );
}
/**
* Returns true if the specified entity record is saving, and false otherwise.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {boolean} Whether the entity record is saving or not.
*/
export function isSavingEntityRecord( state, kind, name, recordId ) {
return get(
state.entities.data,
[ kind, name, 'saving', recordId, 'pending' ],
false
);
}
/**
* Returns true if the specified entity record is deleting, and false otherwise.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {boolean} Whether the entity record is deleting or not.
*/
export function isDeletingEntityRecord( state, kind, name, recordId ) {
return get(
state.entities.data,
[ kind, name, 'deleting', recordId, 'pending' ],
false
);
}
/**
* Returns the specified entity record's last save error.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {Object?} The entity record's save error.
*/
export function getLastEntitySaveError( state, kind, name, recordId ) {
return get( state.entities.data, [
kind,
name,
'saving',
recordId,
'error',
] );
}
/**
* Returns the specified entity record's last delete error.
*
* @param {Object} state State tree.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {number} recordId Record ID.
*
* @return {Object?} The entity record's save error.
*/
export function getLastEntityDeleteError( state, kind, name, recordId ) {
return get( state.entities.data, [
kind,
name,
'deleting',
recordId,
'error',
] );
}
/**
* Returns the current undo offset for the
* entity records edits history. The offset
* represents how many items from the end
* of the history stack we are at. 0 is the
* last edit, -1 is the second last, and so on.
*
* @param {Object} state State tree.
*
* @return {number} The current undo offset.
*/
function getCurrentUndoOffset( state ) {
return state.undo.offset;
}
/**
* Returns the previous edit from the current undo offset
* for the entity records edits history, if any.
*
* @param {Object} state State tree.
*
* @return {Object?} The edit.
*/
export function getUndoEdit( state ) {
return state.undo[ state.undo.length - 2 + getCurrentUndoOffset( state ) ];
}
/**
* Returns the next edit from the current undo offset
* for the entity records edits history, if any.
*
* @param {Object} state State tree.
*
* @return {Object?} The edit.
*/
export function getRedoEdit( state ) {
return state.undo[ state.undo.length + getCurrentUndoOffset( state ) ];
}
/**
* Returns true if there is a previous edit from the current undo offset
* for the entity records edits history, and false otherwise.
*
* @param {Object} state State tree.
*
* @return {boolean} Whether there is a previous edit or not.
*/
export function hasUndo( state ) {
return Boolean( getUndoEdit( state ) );
}
/**
* Returns true if there is a next edit from the current undo offset
* for the entity records edits history, and false otherwise.
*
* @param {Object} state State tree.
*
* @return {boolean} Whether there is a next edit or not.
*/
export function hasRedo( state ) {
return Boolean( getRedoEdit( state ) );
}
/**
* Return the current theme.
*
* @param {Object} state Data state.
*
* @return {Object} The current theme.
*/
export function getCurrentTheme( state ) {
return state.themes[ state.currentTheme ];
}
/**
* Return theme supports data in the index.
*
* @param {Object} state Data state.
*
* @return {*} Index data.
*/
export function getThemeSupports( state ) {
return state.themeSupports;
}
/**
* Returns the embed preview for the given URL.
*
* @param {Object} state Data state.
* @param {string} url Embedded URL.
*
* @return {*} Undefined if the preview has not been fetched, otherwise, the preview fetched from the embed preview API.
*/
export function getEmbedPreview( state, url ) {
return state.embedPreviews[ url ];
}
/**
* Determines if the returned preview is an oEmbed link fallback.
*
* WordPress can be configured to return a simple link to a URL if it is not embeddable.
* We need to be able to determine if a URL is embeddable or not, based on what we
* get back from the oEmbed preview API.
*
* @param {Object} state Data state.
* @param {string} url Embedded URL.
*
* @return {boolean} Is the preview for the URL an oEmbed link fallback.
*/
export function isPreviewEmbedFallback( state, url ) {
const preview = state.embedPreviews[ url ];
const oEmbedLinkCheck = '<a href="' + url + '">' + url + '</a>';
if ( ! preview ) {
return false;
}
return preview.html === oEmbedLinkCheck;
}
/**
* Returns whether the current user can perform the given action on the given
* REST resource.
*
* Calling this may trigger an OPTIONS request to the REST API via the
* `canUser()` resolver.
*
* https://developer.wordpress.org/rest-api/reference/
*
* @param {Object} state Data state.
* @param {string} action Action to check. One of: 'create', 'read', 'update', 'delete'.
* @param {string} resource REST resource to check, e.g. 'media' or 'posts'.
* @param {string=} id Optional ID of the rest resource to check.
*
* @return {boolean|undefined} Whether or not the user can perform the action,
* or `undefined` if the OPTIONS request is still being made.
*/
export function canUser( state, action, resource, id ) {
const key = compact( [ action, resource, id ] ).join( '/' );
return get( state, [ 'userPermissions', key ] );
}
/**
* Returns whether the current user can edit the given entity.
*
* Calling this may trigger an OPTIONS request to the REST API via the
* `canUser()` resolver.
*
* https://developer.wordpress.org/rest-api/reference/
*
* @param {Object} state Data state.
* @param {string} kind Entity kind.
* @param {string} name Entity name.
* @param {string} recordId Record's id.
* @return {boolean|undefined} Whether or not the user can edit,
* or `undefined` if the OPTIONS request is still being made.
*/
export function canUserEditEntityRecord( state, kind, name, recordId ) {
const entity = getEntity( state, kind, name );
if ( ! entity ) {
return false;
}
const resource = entity.__unstable_rest_base;
return canUser( state, 'update', resource, recordId );
}
/**
* Returns the latest autosaves for the post.
*
* May return multiple autosaves since the backend stores one autosave per
* author for each post.
*
* @param {Object} state State tree.
* @param {string} postType The type of the parent post.
* @param {number} postId The id of the parent post.
*
* @return {?Array} An array of autosaves for the post, or undefined if there is none.
*/
export function getAutosaves( state, postType, postId ) {
return state.autosaves[ postId ];
}
/**
* Returns the autosave for the post and author.
*
* @param {Object} state State tree.
* @param {string} postType The type of the parent post.
* @param {number} postId The id of the parent post.
* @param {number} authorId The id of the author.
*
* @return {?Object} The autosave for the post and author.
*/
export function getAutosave( state, postType, postId, authorId ) {
if ( authorId === undefined ) {
return;
}
const autosaves = state.autosaves[ postId ];
return find( autosaves, { author: authorId } );
}
/**
* Returns true if the REST request for autosaves has completed.
*
* @param {Object} state State tree.
* @param {string} postType The type of the parent post.
* @param {number} postId The id of the parent post.
*
* @return {boolean} True if the REST request was completed. False otherwise.
*/
export const hasFetchedAutosaves = createRegistrySelector(
( select ) => ( state, postType, postId ) => {
return select( STORE_NAME ).hasFinishedResolution( 'getAutosaves', [
postType,
postId,
] );
}
);
/**
* Returns a new reference when edited values have changed. This is useful in
* inferring where an edit has been made between states by comparison of the
* return values using strict equality.
*
* @example
*
* ```
* const hasEditOccurred = (
* getReferenceByDistinctEdits( beforeState ) !==
* getReferenceByDistinctEdits( afterState )
* );
* ```
*
* @param {Object} state Editor state.
*
* @return {*} A value whose reference will change only when an edit occurs.
*/
export const getReferenceByDistinctEdits = createSelector(
() => [],
( state ) => [
state.undo.length,
state.undo.offset,
state.undo.flattenedUndo,
]
);
/**
* Retrieve the frontend template used for a given link.
*
* @param {Object} state Editor state.
* @param {string} link Link.
*
* @return {Object?} The template record.
*/
export function __experimentalGetTemplateForLink( state, link ) {
const records = getEntityRecords( state, 'postType', 'wp_template', {
'find-template': link,
} );
const template = records?.length ? records[ 0 ] : null;
if ( template ) {
return getEditedEntityRecord(
state,
'postType',
'wp_template',
template.id
);
}
return template;
}