@wordpress/data 6.6.0 → 6.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * External dependencies
3
3
  */
4
- import { merge, isPlainObject, identity } from 'lodash';
4
+ import { merge, isPlainObject } from 'lodash';
5
5
  /**
6
6
  * Internal dependencies
7
7
  */
@@ -208,371 +208,8 @@ function persistencePlugin(registry, pluginOptions) {
208
208
 
209
209
  };
210
210
  }
211
- /**
212
- * Move the 'features' object in local storage from the sourceStoreName to the
213
- * preferences store.
214
- *
215
- * @param {Object} persistence The persistence interface.
216
- * @param {string} sourceStoreName The name of the store that has persisted
217
- * preferences to migrate to the preferences
218
- * package.
219
- */
220
-
221
-
222
- export function migrateFeaturePreferencesToPreferencesStore(persistence, sourceStoreName) {
223
- var _state$interfaceStore, _state$interfaceStore2, _state$interfaceStore3, _state$sourceStoreNam, _state$sourceStoreNam2;
224
-
225
- const preferencesStoreName = 'core/preferences';
226
- const interfaceStoreName = 'core/interface';
227
- const state = persistence.get(); // Features most recently (and briefly) lived in the interface package.
228
- // If data exists there, prioritize using that for the migration. If not
229
- // also check the original package as the user may have updated from an
230
- // older block editor version.
231
-
232
- const interfaceFeatures = (_state$interfaceStore = state[interfaceStoreName]) === null || _state$interfaceStore === void 0 ? void 0 : (_state$interfaceStore2 = _state$interfaceStore.preferences) === null || _state$interfaceStore2 === void 0 ? void 0 : (_state$interfaceStore3 = _state$interfaceStore2.features) === null || _state$interfaceStore3 === void 0 ? void 0 : _state$interfaceStore3[sourceStoreName];
233
- const sourceFeatures = (_state$sourceStoreNam = state[sourceStoreName]) === null || _state$sourceStoreNam === void 0 ? void 0 : (_state$sourceStoreNam2 = _state$sourceStoreNam.preferences) === null || _state$sourceStoreNam2 === void 0 ? void 0 : _state$sourceStoreNam2.features;
234
- const featuresToMigrate = interfaceFeatures ? interfaceFeatures : sourceFeatures;
235
-
236
- if (featuresToMigrate) {
237
- var _state$preferencesSto;
238
-
239
- const existingPreferences = (_state$preferencesSto = state[preferencesStoreName]) === null || _state$preferencesSto === void 0 ? void 0 : _state$preferencesSto.preferences; // Avoid migrating features again if they've previously been migrated.
240
-
241
- if (!(existingPreferences !== null && existingPreferences !== void 0 && existingPreferences[sourceStoreName])) {
242
- // Set the feature values in the interface store, the features
243
- // object is keyed by 'scope', which matches the store name for
244
- // the source.
245
- persistence.set(preferencesStoreName, {
246
- preferences: { ...existingPreferences,
247
- [sourceStoreName]: featuresToMigrate
248
- }
249
- }); // Remove migrated feature preferences from `interface`.
250
-
251
- if (interfaceFeatures) {
252
- var _state$interfaceStore4, _state$interfaceStore5;
253
-
254
- const otherInterfaceState = state[interfaceStoreName];
255
- const otherInterfaceScopes = (_state$interfaceStore4 = state[interfaceStoreName]) === null || _state$interfaceStore4 === void 0 ? void 0 : (_state$interfaceStore5 = _state$interfaceStore4.preferences) === null || _state$interfaceStore5 === void 0 ? void 0 : _state$interfaceStore5.features;
256
- persistence.set(interfaceStoreName, { ...otherInterfaceState,
257
- preferences: {
258
- features: { ...otherInterfaceScopes,
259
- [sourceStoreName]: undefined
260
- }
261
- }
262
- });
263
- } // Remove migrated feature preferences from the source.
264
-
265
-
266
- if (sourceFeatures) {
267
- var _state$sourceStoreNam3;
268
-
269
- const otherSourceState = state[sourceStoreName];
270
- const sourcePreferences = (_state$sourceStoreNam3 = state[sourceStoreName]) === null || _state$sourceStoreNam3 === void 0 ? void 0 : _state$sourceStoreNam3.preferences;
271
- persistence.set(sourceStoreName, { ...otherSourceState,
272
- preferences: { ...sourcePreferences,
273
- features: undefined
274
- }
275
- });
276
- }
277
- }
278
- }
279
- }
280
- /**
281
- * Migrates an individual item inside the `preferences` object for a store.
282
- *
283
- * @param {Object} persistence The persistence interface.
284
- * @param {Object} migrate An options object that contains details of the migration.
285
- * @param {string} migrate.from The name of the store to migrate from.
286
- * @param {string} migrate.scope The scope in the preferences store to migrate to.
287
- * @param {string} key The key in the preferences object to migrate.
288
- * @param {?Function} convert A function that converts preferences from one format to another.
289
- */
290
-
291
- export function migrateIndividualPreferenceToPreferencesStore(persistence, _ref, key) {
292
- var _state$sourceStoreNam4, _state$sourceStoreNam5, _state$preferencesSto2, _state$preferencesSto3, _state$preferencesSto4, _state$preferencesSto5, _state$preferencesSto6, _state$preferencesSto7, _state$sourceStoreNam6;
293
-
294
- let {
295
- from: sourceStoreName,
296
- scope
297
- } = _ref;
298
- let convert = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : identity;
299
- const preferencesStoreName = 'core/preferences';
300
- const state = persistence.get();
301
- const sourcePreference = (_state$sourceStoreNam4 = state[sourceStoreName]) === null || _state$sourceStoreNam4 === void 0 ? void 0 : (_state$sourceStoreNam5 = _state$sourceStoreNam4.preferences) === null || _state$sourceStoreNam5 === void 0 ? void 0 : _state$sourceStoreNam5[key]; // There's nothing to migrate, exit early.
302
-
303
- if (sourcePreference === undefined) {
304
- return;
305
- }
306
-
307
- const targetPreference = (_state$preferencesSto2 = state[preferencesStoreName]) === null || _state$preferencesSto2 === void 0 ? void 0 : (_state$preferencesSto3 = _state$preferencesSto2.preferences) === null || _state$preferencesSto3 === void 0 ? void 0 : (_state$preferencesSto4 = _state$preferencesSto3[scope]) === null || _state$preferencesSto4 === void 0 ? void 0 : _state$preferencesSto4[key]; // There's existing data at the target, so don't overwrite it, exit early.
308
-
309
- if (targetPreference) {
310
- return;
311
- }
312
-
313
- const otherScopes = (_state$preferencesSto5 = state[preferencesStoreName]) === null || _state$preferencesSto5 === void 0 ? void 0 : _state$preferencesSto5.preferences;
314
- const otherPreferences = (_state$preferencesSto6 = state[preferencesStoreName]) === null || _state$preferencesSto6 === void 0 ? void 0 : (_state$preferencesSto7 = _state$preferencesSto6.preferences) === null || _state$preferencesSto7 === void 0 ? void 0 : _state$preferencesSto7[scope]; // Pass an object with the key and value as this allows the convert
315
- // function to convert to a data structure that has different keys.
316
-
317
- const convertedPreferences = convert({
318
- [key]: sourcePreference
319
- });
320
- persistence.set(preferencesStoreName, {
321
- preferences: { ...otherScopes,
322
- [scope]: { ...otherPreferences,
323
- ...convertedPreferences
324
- }
325
- }
326
- }); // Remove migrated feature preferences from the source.
327
-
328
- const otherSourceState = state[sourceStoreName];
329
- const allSourcePreferences = (_state$sourceStoreNam6 = state[sourceStoreName]) === null || _state$sourceStoreNam6 === void 0 ? void 0 : _state$sourceStoreNam6.preferences;
330
- persistence.set(sourceStoreName, { ...otherSourceState,
331
- preferences: { ...allSourcePreferences,
332
- [key]: undefined
333
- }
334
- });
335
- }
336
- /**
337
- * Convert from:
338
- * ```
339
- * {
340
- * panels: {
341
- * tags: {
342
- * enabled: true,
343
- * opened: true,
344
- * },
345
- * permalinks: {
346
- * enabled: false,
347
- * opened: false,
348
- * },
349
- * },
350
- * }
351
- * ```
352
- *
353
- * to:
354
- * {
355
- * inactivePanels: [
356
- * 'permalinks',
357
- * ],
358
- * openPanels: [
359
- * 'tags',
360
- * ],
361
- * }
362
- *
363
- * @param {Object} preferences A preferences object.
364
- *
365
- * @return {Object} The converted data.
366
- */
367
-
368
- export function convertEditPostPanels(preferences) {
369
- var _preferences$panels;
370
-
371
- const panels = (_preferences$panels = preferences === null || preferences === void 0 ? void 0 : preferences.panels) !== null && _preferences$panels !== void 0 ? _preferences$panels : {};
372
- return Object.keys(panels).reduce((convertedData, panelName) => {
373
- const panel = panels[panelName];
374
-
375
- if ((panel === null || panel === void 0 ? void 0 : panel.enabled) === false) {
376
- convertedData.inactivePanels.push(panelName);
377
- }
378
211
 
379
- if ((panel === null || panel === void 0 ? void 0 : panel.opened) === true) {
380
- convertedData.openPanels.push(panelName);
381
- }
382
-
383
- return convertedData;
384
- }, {
385
- inactivePanels: [],
386
- openPanels: []
387
- });
388
- }
389
- export function migrateThirdPartyFeaturePreferencesToPreferencesStore(persistence) {
390
- var _state$interfaceStore6, _state$interfaceStore7;
391
-
392
- const interfaceStoreName = 'core/interface';
393
- const preferencesStoreName = 'core/preferences';
394
- let state = persistence.get();
395
- const interfaceScopes = (_state$interfaceStore6 = state[interfaceStoreName]) === null || _state$interfaceStore6 === void 0 ? void 0 : (_state$interfaceStore7 = _state$interfaceStore6.preferences) === null || _state$interfaceStore7 === void 0 ? void 0 : _state$interfaceStore7.features;
396
-
397
- for (const scope in interfaceScopes) {
398
- var _state$preferencesSto8, _state$interfaceStore8, _state$interfaceStore9;
399
-
400
- // Don't migrate any core 'scopes'.
401
- if (scope.startsWith('core')) {
402
- continue;
403
- } // Skip this scope if there are no features to migrate.
404
-
405
-
406
- const featuresToMigrate = interfaceScopes[scope];
407
-
408
- if (!featuresToMigrate) {
409
- continue;
410
- }
411
-
412
- const existingPreferences = (_state$preferencesSto8 = state[preferencesStoreName]) === null || _state$preferencesSto8 === void 0 ? void 0 : _state$preferencesSto8.preferences; // Add the data to the preferences store structure.
413
-
414
- persistence.set(preferencesStoreName, {
415
- preferences: { ...existingPreferences,
416
- [scope]: featuresToMigrate
417
- }
418
- }); // Remove the data from the interface store structure.
419
- // Call `persistence.get` again to make sure `state` is up-to-date with
420
- // any changes from the previous iteration of this loop.
421
-
422
- state = persistence.get();
423
- const otherInterfaceState = state[interfaceStoreName];
424
- const otherInterfaceScopes = (_state$interfaceStore8 = state[interfaceStoreName]) === null || _state$interfaceStore8 === void 0 ? void 0 : (_state$interfaceStore9 = _state$interfaceStore8.preferences) === null || _state$interfaceStore9 === void 0 ? void 0 : _state$interfaceStore9.features;
425
- persistence.set(interfaceStoreName, { ...otherInterfaceState,
426
- preferences: {
427
- features: { ...otherInterfaceScopes,
428
- [scope]: undefined
429
- }
430
- }
431
- });
432
- }
433
- }
434
- /**
435
- * Migrates interface 'enableItems' data to the preferences store.
436
- *
437
- * The interface package stores this data in this format:
438
- * ```js
439
- * {
440
- * enableItems: {
441
- * singleEnableItems: {
442
- * complementaryArea: {
443
- * 'core/edit-post': 'edit-post/document',
444
- * 'core/edit-site': 'edit-site/global-styles',
445
- * }
446
- * },
447
- * multipleEnableItems: {
448
- * pinnedItems: {
449
- * 'core/edit-post': {
450
- * 'plugin-1': true,
451
- * },
452
- * 'core/edit-site': {
453
- * 'plugin-2': true,
454
- * },
455
- * },
456
- * }
457
- * }
458
- * }
459
- * ```
460
- * and it should be migrated it to:
461
- * ```js
462
- * {
463
- * 'core/edit-post': {
464
- * complementaryArea: 'edit-post/document',
465
- * pinnedItems: {
466
- * 'plugin-1': true,
467
- * },
468
- * },
469
- * 'core/edit-site': {
470
- * complementaryArea: 'edit-site/global-styles',
471
- * pinnedItems: {
472
- * 'plugin-2': true,
473
- * },
474
- * },
475
- * }
476
- * ```
477
- *
478
- * @param {Object} persistence The persistence interface.
479
- */
480
-
481
- export function migrateInterfaceEnableItemsToPreferencesStore(persistence) {
482
- var _state$interfaceStore10, _state$preferencesSto9, _state$preferencesSto10, _sourceEnableItems$si, _sourceEnableItems$si2, _sourceEnableItems$mu, _sourceEnableItems$mu2;
483
-
484
- const interfaceStoreName = 'core/interface';
485
- const preferencesStoreName = 'core/preferences';
486
- const state = persistence.get();
487
- const sourceEnableItems = (_state$interfaceStore10 = state[interfaceStoreName]) === null || _state$interfaceStore10 === void 0 ? void 0 : _state$interfaceStore10.enableItems; // There's nothing to migrate, exit early.
488
-
489
- if (!sourceEnableItems) {
490
- return;
491
- }
492
-
493
- const allPreferences = (_state$preferencesSto9 = (_state$preferencesSto10 = state[preferencesStoreName]) === null || _state$preferencesSto10 === void 0 ? void 0 : _state$preferencesSto10.preferences) !== null && _state$preferencesSto9 !== void 0 ? _state$preferencesSto9 : {}; // First convert complementaryAreas into the right format.
494
- // Use the existing preferences as the accumulator so that the data is
495
- // merged.
496
-
497
- const sourceComplementaryAreas = (_sourceEnableItems$si = sourceEnableItems === null || sourceEnableItems === void 0 ? void 0 : (_sourceEnableItems$si2 = sourceEnableItems.singleEnableItems) === null || _sourceEnableItems$si2 === void 0 ? void 0 : _sourceEnableItems$si2.complementaryArea) !== null && _sourceEnableItems$si !== void 0 ? _sourceEnableItems$si : {};
498
- const convertedComplementaryAreas = Object.keys(sourceComplementaryAreas).reduce((accumulator, scope) => {
499
- var _accumulator$scope;
500
-
501
- const data = sourceComplementaryAreas[scope]; // Don't overwrite any existing data in the preferences store.
502
-
503
- if ((_accumulator$scope = accumulator[scope]) !== null && _accumulator$scope !== void 0 && _accumulator$scope.complementaryArea) {
504
- return accumulator;
505
- }
506
-
507
- return { ...accumulator,
508
- [scope]: { ...accumulator[scope],
509
- complementaryArea: data
510
- }
511
- };
512
- }, allPreferences); // Next feed the converted complementary areas back into a reducer that
513
- // converts the pinned items, resulting in the fully migrated data.
514
-
515
- const sourcePinnedItems = (_sourceEnableItems$mu = sourceEnableItems === null || sourceEnableItems === void 0 ? void 0 : (_sourceEnableItems$mu2 = sourceEnableItems.multipleEnableItems) === null || _sourceEnableItems$mu2 === void 0 ? void 0 : _sourceEnableItems$mu2.pinnedItems) !== null && _sourceEnableItems$mu !== void 0 ? _sourceEnableItems$mu : {};
516
- const allConvertedData = Object.keys(sourcePinnedItems).reduce((accumulator, scope) => {
517
- var _accumulator$scope2;
518
-
519
- const data = sourcePinnedItems[scope]; // Don't overwrite any existing data in the preferences store.
520
-
521
- if ((_accumulator$scope2 = accumulator[scope]) !== null && _accumulator$scope2 !== void 0 && _accumulator$scope2.pinnedItems) {
522
- return accumulator;
523
- }
524
-
525
- return { ...accumulator,
526
- [scope]: { ...accumulator[scope],
527
- pinnedItems: data
528
- }
529
- };
530
- }, convertedComplementaryAreas);
531
- persistence.set(preferencesStoreName, {
532
- preferences: allConvertedData
533
- }); // Remove migrated preferences.
534
-
535
- const otherInterfaceItems = state[interfaceStoreName];
536
- persistence.set(interfaceStoreName, { ...otherInterfaceItems,
537
- enableItems: undefined
538
- });
539
- }
540
-
541
- persistencePlugin.__unstableMigrate = pluginOptions => {
542
- const persistence = createPersistenceInterface(pluginOptions); // Boolean feature preferences.
543
-
544
- migrateFeaturePreferencesToPreferencesStore(persistence, 'core/edit-widgets');
545
- migrateFeaturePreferencesToPreferencesStore(persistence, 'core/customize-widgets');
546
- migrateFeaturePreferencesToPreferencesStore(persistence, 'core/edit-post');
547
- migrateFeaturePreferencesToPreferencesStore(persistence, 'core/edit-site');
548
- migrateThirdPartyFeaturePreferencesToPreferencesStore(persistence); // Other ad-hoc preferences.
549
-
550
- migrateIndividualPreferenceToPreferencesStore(persistence, {
551
- from: 'core/edit-post',
552
- scope: 'core/edit-post'
553
- }, 'hiddenBlockTypes');
554
- migrateIndividualPreferenceToPreferencesStore(persistence, {
555
- from: 'core/edit-post',
556
- scope: 'core/edit-post'
557
- }, 'editorMode');
558
- migrateIndividualPreferenceToPreferencesStore(persistence, {
559
- from: 'core/edit-post',
560
- scope: 'core/edit-post'
561
- }, 'preferredStyleVariations');
562
- migrateIndividualPreferenceToPreferencesStore(persistence, {
563
- from: 'core/edit-post',
564
- scope: 'core/edit-post'
565
- }, 'panels', convertEditPostPanels);
566
- migrateIndividualPreferenceToPreferencesStore(persistence, {
567
- from: 'core/editor',
568
- scope: 'core/edit-post'
569
- }, 'isPublishSidebarEnabled');
570
- migrateIndividualPreferenceToPreferencesStore(persistence, {
571
- from: 'core/edit-site',
572
- scope: 'core/edit-site'
573
- }, 'editorMode');
574
- migrateInterfaceEnableItemsToPreferencesStore(persistence);
575
- };
212
+ persistencePlugin.__unstableMigrate = () => {};
576
213
 
577
214
  export default persistencePlugin;
578
215
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["@wordpress/data/src/plugins/persistence/index.js"],"names":["merge","isPlainObject","identity","defaultStorage","combineReducers","DEFAULT_STORAGE","DEFAULT_STORAGE_KEY","withLazySameState","reducer","state","action","nextState","createPersistenceInterface","options","storage","storageKey","data","getData","undefined","persisted","getItem","JSON","parse","error","setData","key","value","setItem","stringify","get","set","persistencePlugin","registry","pluginOptions","persistence","createPersistOnChange","getState","storeName","keys","getPersistedState","Array","isArray","reducers","reduce","accumulator","Object","assign","lastState","registerStore","persist","persistedState","initialState","type","store","subscribe","migrateFeaturePreferencesToPreferencesStore","sourceStoreName","preferencesStoreName","interfaceStoreName","interfaceFeatures","preferences","features","sourceFeatures","featuresToMigrate","existingPreferences","otherInterfaceState","otherInterfaceScopes","otherSourceState","sourcePreferences","migrateIndividualPreferenceToPreferencesStore","from","scope","convert","sourcePreference","targetPreference","otherScopes","otherPreferences","convertedPreferences","allSourcePreferences","convertEditPostPanels","panels","convertedData","panelName","panel","enabled","inactivePanels","push","opened","openPanels","migrateThirdPartyFeaturePreferencesToPreferencesStore","interfaceScopes","startsWith","migrateInterfaceEnableItemsToPreferencesStore","sourceEnableItems","enableItems","allPreferences","sourceComplementaryAreas","singleEnableItems","complementaryArea","convertedComplementaryAreas","sourcePinnedItems","multipleEnableItems","pinnedItems","allConvertedData","otherInterfaceItems","__unstableMigrate"],"mappings":"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","sourcesContent":["/**\n * External dependencies\n */\nimport { merge, isPlainObject, identity } from 'lodash';\n\n/**\n * Internal dependencies\n */\nimport defaultStorage from './storage/default';\nimport { combineReducers } from '../../';\n\n/** @typedef {import('../../registry').WPDataRegistry} WPDataRegistry */\n\n/** @typedef {import('../../registry').WPDataPlugin} WPDataPlugin */\n\n/**\n * @typedef {Object} WPDataPersistencePluginOptions Persistence plugin options.\n *\n * @property {Storage} storage Persistent storage implementation. This must\n * at least implement `getItem` and `setItem` of\n * the Web Storage API.\n * @property {string} storageKey Key on which to set in persistent storage.\n *\n */\n\n/**\n * Default plugin storage.\n *\n * @type {Storage}\n */\nconst DEFAULT_STORAGE = defaultStorage;\n\n/**\n * Default plugin storage key.\n *\n * @type {string}\n */\nconst DEFAULT_STORAGE_KEY = 'WP_DATA';\n\n/**\n * Higher-order reducer which invokes the original reducer only if state is\n * inequal from that of the action's `nextState` property, otherwise returning\n * the original state reference.\n *\n * @param {Function} reducer Original reducer.\n *\n * @return {Function} Enhanced reducer.\n */\nexport const withLazySameState = ( reducer ) => ( state, action ) => {\n\tif ( action.nextState === state ) {\n\t\treturn state;\n\t}\n\n\treturn reducer( state, action );\n};\n\n/**\n * Creates a persistence interface, exposing getter and setter methods (`get`\n * and `set` respectively).\n *\n * @param {WPDataPersistencePluginOptions} options Plugin options.\n *\n * @return {Object} Persistence interface.\n */\nexport function createPersistenceInterface( options ) {\n\tconst {\n\t\tstorage = DEFAULT_STORAGE,\n\t\tstorageKey = DEFAULT_STORAGE_KEY,\n\t} = options;\n\n\tlet data;\n\n\t/**\n\t * Returns the persisted data as an object, defaulting to an empty object.\n\t *\n\t * @return {Object} Persisted data.\n\t */\n\tfunction getData() {\n\t\tif ( data === undefined ) {\n\t\t\t// If unset, getItem is expected to return null. Fall back to\n\t\t\t// empty object.\n\t\t\tconst persisted = storage.getItem( storageKey );\n\t\t\tif ( persisted === null ) {\n\t\t\t\tdata = {};\n\t\t\t} else {\n\t\t\t\ttry {\n\t\t\t\t\tdata = JSON.parse( persisted );\n\t\t\t\t} catch ( error ) {\n\t\t\t\t\t// Similarly, should any error be thrown during parse of\n\t\t\t\t\t// the string (malformed JSON), fall back to empty object.\n\t\t\t\t\tdata = {};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn data;\n\t}\n\n\t/**\n\t * Merges an updated reducer state into the persisted data.\n\t *\n\t * @param {string} key Key to update.\n\t * @param {*} value Updated value.\n\t */\n\tfunction setData( key, value ) {\n\t\tdata = { ...data, [ key ]: value };\n\t\tstorage.setItem( storageKey, JSON.stringify( data ) );\n\t}\n\n\treturn {\n\t\tget: getData,\n\t\tset: setData,\n\t};\n}\n\n/**\n * Data plugin to persist store state into a single storage key.\n *\n * @param {WPDataRegistry} registry Data registry.\n * @param {?WPDataPersistencePluginOptions} pluginOptions Plugin options.\n *\n * @return {WPDataPlugin} Data plugin.\n */\nfunction persistencePlugin( registry, pluginOptions ) {\n\tconst persistence = createPersistenceInterface( pluginOptions );\n\n\t/**\n\t * Creates an enhanced store dispatch function, triggering the state of the\n\t * given store name to be persisted when changed.\n\t *\n\t * @param {Function} getState Function which returns current state.\n\t * @param {string} storeName Store name.\n\t * @param {?Array<string>} keys Optional subset of keys to save.\n\t *\n\t * @return {Function} Enhanced dispatch function.\n\t */\n\tfunction createPersistOnChange( getState, storeName, keys ) {\n\t\tlet getPersistedState;\n\t\tif ( Array.isArray( keys ) ) {\n\t\t\t// Given keys, the persisted state should by produced as an object\n\t\t\t// of the subset of keys. This implementation uses combineReducers\n\t\t\t// to leverage its behavior of returning the same object when none\n\t\t\t// of the property values changes. This allows a strict reference\n\t\t\t// equality to bypass a persistence set on an unchanging state.\n\t\t\tconst reducers = keys.reduce(\n\t\t\t\t( accumulator, key ) =>\n\t\t\t\t\tObject.assign( accumulator, {\n\t\t\t\t\t\t[ key ]: ( state, action ) => action.nextState[ key ],\n\t\t\t\t\t} ),\n\t\t\t\t{}\n\t\t\t);\n\n\t\t\tgetPersistedState = withLazySameState(\n\t\t\t\tcombineReducers( reducers )\n\t\t\t);\n\t\t} else {\n\t\t\tgetPersistedState = ( state, action ) => action.nextState;\n\t\t}\n\n\t\tlet lastState = getPersistedState( undefined, {\n\t\t\tnextState: getState(),\n\t\t} );\n\n\t\treturn () => {\n\t\t\tconst state = getPersistedState( lastState, {\n\t\t\t\tnextState: getState(),\n\t\t\t} );\n\t\t\tif ( state !== lastState ) {\n\t\t\t\tpersistence.set( storeName, state );\n\t\t\t\tlastState = state;\n\t\t\t}\n\t\t};\n\t}\n\n\treturn {\n\t\tregisterStore( storeName, options ) {\n\t\t\tif ( ! options.persist ) {\n\t\t\t\treturn registry.registerStore( storeName, options );\n\t\t\t}\n\n\t\t\t// Load from persistence to use as initial state.\n\t\t\tconst persistedState = persistence.get()[ storeName ];\n\t\t\tif ( persistedState !== undefined ) {\n\t\t\t\tlet initialState = options.reducer( options.initialState, {\n\t\t\t\t\ttype: '@@WP/PERSISTENCE_RESTORE',\n\t\t\t\t} );\n\n\t\t\t\tif (\n\t\t\t\t\tisPlainObject( initialState ) &&\n\t\t\t\t\tisPlainObject( persistedState )\n\t\t\t\t) {\n\t\t\t\t\t// If state is an object, ensure that:\n\t\t\t\t\t// - Other keys are left intact when persisting only a\n\t\t\t\t\t// subset of keys.\n\t\t\t\t\t// - New keys in what would otherwise be used as initial\n\t\t\t\t\t// state are deeply merged as base for persisted value.\n\t\t\t\t\tinitialState = merge( {}, initialState, persistedState );\n\t\t\t\t} else {\n\t\t\t\t\t// If there is a mismatch in object-likeness of default\n\t\t\t\t\t// initial or persisted state, defer to persisted value.\n\t\t\t\t\tinitialState = persistedState;\n\t\t\t\t}\n\n\t\t\t\toptions = {\n\t\t\t\t\t...options,\n\t\t\t\t\tinitialState,\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tconst store = registry.registerStore( storeName, options );\n\n\t\t\tstore.subscribe(\n\t\t\t\tcreatePersistOnChange(\n\t\t\t\t\tstore.getState,\n\t\t\t\t\tstoreName,\n\t\t\t\t\toptions.persist\n\t\t\t\t)\n\t\t\t);\n\n\t\t\treturn store;\n\t\t},\n\t};\n}\n\n/**\n * Move the 'features' object in local storage from the sourceStoreName to the\n * preferences store.\n *\n * @param {Object} persistence The persistence interface.\n * @param {string} sourceStoreName The name of the store that has persisted\n * preferences to migrate to the preferences\n * package.\n */\nexport function migrateFeaturePreferencesToPreferencesStore(\n\tpersistence,\n\tsourceStoreName\n) {\n\tconst preferencesStoreName = 'core/preferences';\n\tconst interfaceStoreName = 'core/interface';\n\n\tconst state = persistence.get();\n\n\t// Features most recently (and briefly) lived in the interface package.\n\t// If data exists there, prioritize using that for the migration. If not\n\t// also check the original package as the user may have updated from an\n\t// older block editor version.\n\tconst interfaceFeatures =\n\t\tstate[ interfaceStoreName ]?.preferences?.features?.[ sourceStoreName ];\n\tconst sourceFeatures = state[ sourceStoreName ]?.preferences?.features;\n\tconst featuresToMigrate = interfaceFeatures\n\t\t? interfaceFeatures\n\t\t: sourceFeatures;\n\n\tif ( featuresToMigrate ) {\n\t\tconst existingPreferences = state[ preferencesStoreName ]?.preferences;\n\n\t\t// Avoid migrating features again if they've previously been migrated.\n\t\tif ( ! existingPreferences?.[ sourceStoreName ] ) {\n\t\t\t// Set the feature values in the interface store, the features\n\t\t\t// object is keyed by 'scope', which matches the store name for\n\t\t\t// the source.\n\t\t\tpersistence.set( preferencesStoreName, {\n\t\t\t\tpreferences: {\n\t\t\t\t\t...existingPreferences,\n\t\t\t\t\t[ sourceStoreName ]: featuresToMigrate,\n\t\t\t\t},\n\t\t\t} );\n\n\t\t\t// Remove migrated feature preferences from `interface`.\n\t\t\tif ( interfaceFeatures ) {\n\t\t\t\tconst otherInterfaceState = state[ interfaceStoreName ];\n\t\t\t\tconst otherInterfaceScopes =\n\t\t\t\t\tstate[ interfaceStoreName ]?.preferences?.features;\n\n\t\t\t\tpersistence.set( interfaceStoreName, {\n\t\t\t\t\t...otherInterfaceState,\n\t\t\t\t\tpreferences: {\n\t\t\t\t\t\tfeatures: {\n\t\t\t\t\t\t\t...otherInterfaceScopes,\n\t\t\t\t\t\t\t[ sourceStoreName ]: undefined,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Remove migrated feature preferences from the source.\n\t\t\tif ( sourceFeatures ) {\n\t\t\t\tconst otherSourceState = state[ sourceStoreName ];\n\t\t\t\tconst sourcePreferences = state[ sourceStoreName ]?.preferences;\n\n\t\t\t\tpersistence.set( sourceStoreName, {\n\t\t\t\t\t...otherSourceState,\n\t\t\t\t\tpreferences: {\n\t\t\t\t\t\t...sourcePreferences,\n\t\t\t\t\t\tfeatures: undefined,\n\t\t\t\t\t},\n\t\t\t\t} );\n\t\t\t}\n\t\t}\n\t}\n}\n\n/**\n * Migrates an individual item inside the `preferences` object for a store.\n *\n * @param {Object} persistence The persistence interface.\n * @param {Object} migrate An options object that contains details of the migration.\n * @param {string} migrate.from The name of the store to migrate from.\n * @param {string} migrate.scope The scope in the preferences store to migrate to.\n * @param {string} key The key in the preferences object to migrate.\n * @param {?Function} convert A function that converts preferences from one format to another.\n */\nexport function migrateIndividualPreferenceToPreferencesStore(\n\tpersistence,\n\t{ from: sourceStoreName, scope },\n\tkey,\n\tconvert = identity\n) {\n\tconst preferencesStoreName = 'core/preferences';\n\tconst state = persistence.get();\n\tconst sourcePreference = state[ sourceStoreName ]?.preferences?.[ key ];\n\n\t// There's nothing to migrate, exit early.\n\tif ( sourcePreference === undefined ) {\n\t\treturn;\n\t}\n\n\tconst targetPreference =\n\t\tstate[ preferencesStoreName ]?.preferences?.[ scope ]?.[ key ];\n\n\t// There's existing data at the target, so don't overwrite it, exit early.\n\tif ( targetPreference ) {\n\t\treturn;\n\t}\n\n\tconst otherScopes = state[ preferencesStoreName ]?.preferences;\n\tconst otherPreferences =\n\t\tstate[ preferencesStoreName ]?.preferences?.[ scope ];\n\n\t// Pass an object with the key and value as this allows the convert\n\t// function to convert to a data structure that has different keys.\n\tconst convertedPreferences = convert( { [ key ]: sourcePreference } );\n\n\tpersistence.set( preferencesStoreName, {\n\t\tpreferences: {\n\t\t\t...otherScopes,\n\t\t\t[ scope ]: {\n\t\t\t\t...otherPreferences,\n\t\t\t\t...convertedPreferences,\n\t\t\t},\n\t\t},\n\t} );\n\n\t// Remove migrated feature preferences from the source.\n\tconst otherSourceState = state[ sourceStoreName ];\n\tconst allSourcePreferences = state[ sourceStoreName ]?.preferences;\n\tpersistence.set( sourceStoreName, {\n\t\t...otherSourceState,\n\t\tpreferences: {\n\t\t\t...allSourcePreferences,\n\t\t\t[ key ]: undefined,\n\t\t},\n\t} );\n}\n\n/**\n * Convert from:\n * ```\n * {\n * panels: {\n * tags: {\n * enabled: true,\n * opened: true,\n * },\n * permalinks: {\n * enabled: false,\n * opened: false,\n * },\n * },\n * }\n * ```\n *\n * to:\n * {\n * inactivePanels: [\n * 'permalinks',\n * ],\n * openPanels: [\n * 'tags',\n * ],\n * }\n *\n * @param {Object} preferences A preferences object.\n *\n * @return {Object} The converted data.\n */\nexport function convertEditPostPanels( preferences ) {\n\tconst panels = preferences?.panels ?? {};\n\treturn Object.keys( panels ).reduce(\n\t\t( convertedData, panelName ) => {\n\t\t\tconst panel = panels[ panelName ];\n\n\t\t\tif ( panel?.enabled === false ) {\n\t\t\t\tconvertedData.inactivePanels.push( panelName );\n\t\t\t}\n\n\t\t\tif ( panel?.opened === true ) {\n\t\t\t\tconvertedData.openPanels.push( panelName );\n\t\t\t}\n\n\t\t\treturn convertedData;\n\t\t},\n\t\t{ inactivePanels: [], openPanels: [] }\n\t);\n}\n\nexport function migrateThirdPartyFeaturePreferencesToPreferencesStore(\n\tpersistence\n) {\n\tconst interfaceStoreName = 'core/interface';\n\tconst preferencesStoreName = 'core/preferences';\n\n\tlet state = persistence.get();\n\n\tconst interfaceScopes = state[ interfaceStoreName ]?.preferences?.features;\n\n\tfor ( const scope in interfaceScopes ) {\n\t\t// Don't migrate any core 'scopes'.\n\t\tif ( scope.startsWith( 'core' ) ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\t// Skip this scope if there are no features to migrate.\n\t\tconst featuresToMigrate = interfaceScopes[ scope ];\n\t\tif ( ! featuresToMigrate ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst existingPreferences = state[ preferencesStoreName ]?.preferences;\n\n\t\t// Add the data to the preferences store structure.\n\t\tpersistence.set( preferencesStoreName, {\n\t\t\tpreferences: {\n\t\t\t\t...existingPreferences,\n\t\t\t\t[ scope ]: featuresToMigrate,\n\t\t\t},\n\t\t} );\n\n\t\t// Remove the data from the interface store structure.\n\t\t// Call `persistence.get` again to make sure `state` is up-to-date with\n\t\t// any changes from the previous iteration of this loop.\n\t\tstate = persistence.get();\n\t\tconst otherInterfaceState = state[ interfaceStoreName ];\n\t\tconst otherInterfaceScopes =\n\t\t\tstate[ interfaceStoreName ]?.preferences?.features;\n\n\t\tpersistence.set( interfaceStoreName, {\n\t\t\t...otherInterfaceState,\n\t\t\tpreferences: {\n\t\t\t\tfeatures: {\n\t\t\t\t\t...otherInterfaceScopes,\n\t\t\t\t\t[ scope ]: undefined,\n\t\t\t\t},\n\t\t\t},\n\t\t} );\n\t}\n}\n\n/**\n * Migrates interface 'enableItems' data to the preferences store.\n *\n * The interface package stores this data in this format:\n * ```js\n * {\n * enableItems: {\n * singleEnableItems: {\n * \t complementaryArea: {\n * 'core/edit-post': 'edit-post/document',\n * 'core/edit-site': 'edit-site/global-styles',\n * }\n * },\n * multipleEnableItems: {\n * pinnedItems: {\n * 'core/edit-post': {\n * 'plugin-1': true,\n * },\n * 'core/edit-site': {\n * 'plugin-2': true,\n * },\n * },\n * }\n * }\n * }\n * ```\n * and it should be migrated it to:\n * ```js\n * {\n * 'core/edit-post': {\n * complementaryArea: 'edit-post/document',\n * pinnedItems: {\n * 'plugin-1': true,\n * },\n * },\n * 'core/edit-site': {\n * complementaryArea: 'edit-site/global-styles',\n * pinnedItems: {\n * 'plugin-2': true,\n * },\n * },\n * }\n * ```\n *\n * @param {Object} persistence The persistence interface.\n */\nexport function migrateInterfaceEnableItemsToPreferencesStore( persistence ) {\n\tconst interfaceStoreName = 'core/interface';\n\tconst preferencesStoreName = 'core/preferences';\n\tconst state = persistence.get();\n\tconst sourceEnableItems = state[ interfaceStoreName ]?.enableItems;\n\n\t// There's nothing to migrate, exit early.\n\tif ( ! sourceEnableItems ) {\n\t\treturn;\n\t}\n\n\tconst allPreferences = state[ preferencesStoreName ]?.preferences ?? {};\n\n\t// First convert complementaryAreas into the right format.\n\t// Use the existing preferences as the accumulator so that the data is\n\t// merged.\n\tconst sourceComplementaryAreas =\n\t\tsourceEnableItems?.singleEnableItems?.complementaryArea ?? {};\n\n\tconst convertedComplementaryAreas = Object.keys(\n\t\tsourceComplementaryAreas\n\t).reduce( ( accumulator, scope ) => {\n\t\tconst data = sourceComplementaryAreas[ scope ];\n\n\t\t// Don't overwrite any existing data in the preferences store.\n\t\tif ( accumulator[ scope ]?.complementaryArea ) {\n\t\t\treturn accumulator;\n\t\t}\n\n\t\treturn {\n\t\t\t...accumulator,\n\t\t\t[ scope ]: {\n\t\t\t\t...accumulator[ scope ],\n\t\t\t\tcomplementaryArea: data,\n\t\t\t},\n\t\t};\n\t}, allPreferences );\n\n\t// Next feed the converted complementary areas back into a reducer that\n\t// converts the pinned items, resulting in the fully migrated data.\n\tconst sourcePinnedItems =\n\t\tsourceEnableItems?.multipleEnableItems?.pinnedItems ?? {};\n\tconst allConvertedData = Object.keys( sourcePinnedItems ).reduce(\n\t\t( accumulator, scope ) => {\n\t\t\tconst data = sourcePinnedItems[ scope ];\n\t\t\t// Don't overwrite any existing data in the preferences store.\n\t\t\tif ( accumulator[ scope ]?.pinnedItems ) {\n\t\t\t\treturn accumulator;\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t...accumulator,\n\t\t\t\t[ scope ]: {\n\t\t\t\t\t...accumulator[ scope ],\n\t\t\t\t\tpinnedItems: data,\n\t\t\t\t},\n\t\t\t};\n\t\t},\n\t\tconvertedComplementaryAreas\n\t);\n\n\tpersistence.set( preferencesStoreName, {\n\t\tpreferences: allConvertedData,\n\t} );\n\n\t// Remove migrated preferences.\n\tconst otherInterfaceItems = state[ interfaceStoreName ];\n\tpersistence.set( interfaceStoreName, {\n\t\t...otherInterfaceItems,\n\t\tenableItems: undefined,\n\t} );\n}\n\npersistencePlugin.__unstableMigrate = ( pluginOptions ) => {\n\tconst persistence = createPersistenceInterface( pluginOptions );\n\n\t// Boolean feature preferences.\n\tmigrateFeaturePreferencesToPreferencesStore(\n\t\tpersistence,\n\t\t'core/edit-widgets'\n\t);\n\tmigrateFeaturePreferencesToPreferencesStore(\n\t\tpersistence,\n\t\t'core/customize-widgets'\n\t);\n\tmigrateFeaturePreferencesToPreferencesStore(\n\t\tpersistence,\n\t\t'core/edit-post'\n\t);\n\tmigrateFeaturePreferencesToPreferencesStore(\n\t\tpersistence,\n\t\t'core/edit-site'\n\t);\n\tmigrateThirdPartyFeaturePreferencesToPreferencesStore( persistence );\n\n\t// Other ad-hoc preferences.\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/edit-post', scope: 'core/edit-post' },\n\t\t'hiddenBlockTypes'\n\t);\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/edit-post', scope: 'core/edit-post' },\n\t\t'editorMode'\n\t);\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/edit-post', scope: 'core/edit-post' },\n\t\t'preferredStyleVariations'\n\t);\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/edit-post', scope: 'core/edit-post' },\n\t\t'panels',\n\t\tconvertEditPostPanels\n\t);\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/editor', scope: 'core/edit-post' },\n\t\t'isPublishSidebarEnabled'\n\t);\n\tmigrateIndividualPreferenceToPreferencesStore(\n\t\tpersistence,\n\t\t{ from: 'core/edit-site', scope: 'core/edit-site' },\n\t\t'editorMode'\n\t);\n\tmigrateInterfaceEnableItemsToPreferencesStore( persistence );\n};\n\nexport default persistencePlugin;\n"]}
1
+ {"version":3,"sources":["@wordpress/data/src/plugins/persistence/index.js"],"names":["merge","isPlainObject","defaultStorage","combineReducers","DEFAULT_STORAGE","DEFAULT_STORAGE_KEY","withLazySameState","reducer","state","action","nextState","createPersistenceInterface","options","storage","storageKey","data","getData","undefined","persisted","getItem","JSON","parse","error","setData","key","value","setItem","stringify","get","set","persistencePlugin","registry","pluginOptions","persistence","createPersistOnChange","getState","storeName","keys","getPersistedState","Array","isArray","reducers","reduce","accumulator","Object","assign","lastState","registerStore","persist","persistedState","initialState","type","store","subscribe","__unstableMigrate"],"mappings":"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","sourcesContent":["/**\n * External dependencies\n */\nimport { merge, isPlainObject } from 'lodash';\n\n/**\n * Internal dependencies\n */\nimport defaultStorage from './storage/default';\nimport { combineReducers } from '../../';\n\n/** @typedef {import('../../registry').WPDataRegistry} WPDataRegistry */\n\n/** @typedef {import('../../registry').WPDataPlugin} WPDataPlugin */\n\n/**\n * @typedef {Object} WPDataPersistencePluginOptions Persistence plugin options.\n *\n * @property {Storage} storage Persistent storage implementation. This must\n * at least implement `getItem` and `setItem` of\n * the Web Storage API.\n * @property {string} storageKey Key on which to set in persistent storage.\n *\n */\n\n/**\n * Default plugin storage.\n *\n * @type {Storage}\n */\nconst DEFAULT_STORAGE = defaultStorage;\n\n/**\n * Default plugin storage key.\n *\n * @type {string}\n */\nconst DEFAULT_STORAGE_KEY = 'WP_DATA';\n\n/**\n * Higher-order reducer which invokes the original reducer only if state is\n * inequal from that of the action's `nextState` property, otherwise returning\n * the original state reference.\n *\n * @param {Function} reducer Original reducer.\n *\n * @return {Function} Enhanced reducer.\n */\nexport const withLazySameState = ( reducer ) => ( state, action ) => {\n\tif ( action.nextState === state ) {\n\t\treturn state;\n\t}\n\n\treturn reducer( state, action );\n};\n\n/**\n * Creates a persistence interface, exposing getter and setter methods (`get`\n * and `set` respectively).\n *\n * @param {WPDataPersistencePluginOptions} options Plugin options.\n *\n * @return {Object} Persistence interface.\n */\nexport function createPersistenceInterface( options ) {\n\tconst {\n\t\tstorage = DEFAULT_STORAGE,\n\t\tstorageKey = DEFAULT_STORAGE_KEY,\n\t} = options;\n\n\tlet data;\n\n\t/**\n\t * Returns the persisted data as an object, defaulting to an empty object.\n\t *\n\t * @return {Object} Persisted data.\n\t */\n\tfunction getData() {\n\t\tif ( data === undefined ) {\n\t\t\t// If unset, getItem is expected to return null. Fall back to\n\t\t\t// empty object.\n\t\t\tconst persisted = storage.getItem( storageKey );\n\t\t\tif ( persisted === null ) {\n\t\t\t\tdata = {};\n\t\t\t} else {\n\t\t\t\ttry {\n\t\t\t\t\tdata = JSON.parse( persisted );\n\t\t\t\t} catch ( error ) {\n\t\t\t\t\t// Similarly, should any error be thrown during parse of\n\t\t\t\t\t// the string (malformed JSON), fall back to empty object.\n\t\t\t\t\tdata = {};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn data;\n\t}\n\n\t/**\n\t * Merges an updated reducer state into the persisted data.\n\t *\n\t * @param {string} key Key to update.\n\t * @param {*} value Updated value.\n\t */\n\tfunction setData( key, value ) {\n\t\tdata = { ...data, [ key ]: value };\n\t\tstorage.setItem( storageKey, JSON.stringify( data ) );\n\t}\n\n\treturn {\n\t\tget: getData,\n\t\tset: setData,\n\t};\n}\n\n/**\n * Data plugin to persist store state into a single storage key.\n *\n * @param {WPDataRegistry} registry Data registry.\n * @param {?WPDataPersistencePluginOptions} pluginOptions Plugin options.\n *\n * @return {WPDataPlugin} Data plugin.\n */\nfunction persistencePlugin( registry, pluginOptions ) {\n\tconst persistence = createPersistenceInterface( pluginOptions );\n\n\t/**\n\t * Creates an enhanced store dispatch function, triggering the state of the\n\t * given store name to be persisted when changed.\n\t *\n\t * @param {Function} getState Function which returns current state.\n\t * @param {string} storeName Store name.\n\t * @param {?Array<string>} keys Optional subset of keys to save.\n\t *\n\t * @return {Function} Enhanced dispatch function.\n\t */\n\tfunction createPersistOnChange( getState, storeName, keys ) {\n\t\tlet getPersistedState;\n\t\tif ( Array.isArray( keys ) ) {\n\t\t\t// Given keys, the persisted state should by produced as an object\n\t\t\t// of the subset of keys. This implementation uses combineReducers\n\t\t\t// to leverage its behavior of returning the same object when none\n\t\t\t// of the property values changes. This allows a strict reference\n\t\t\t// equality to bypass a persistence set on an unchanging state.\n\t\t\tconst reducers = keys.reduce(\n\t\t\t\t( accumulator, key ) =>\n\t\t\t\t\tObject.assign( accumulator, {\n\t\t\t\t\t\t[ key ]: ( state, action ) => action.nextState[ key ],\n\t\t\t\t\t} ),\n\t\t\t\t{}\n\t\t\t);\n\n\t\t\tgetPersistedState = withLazySameState(\n\t\t\t\tcombineReducers( reducers )\n\t\t\t);\n\t\t} else {\n\t\t\tgetPersistedState = ( state, action ) => action.nextState;\n\t\t}\n\n\t\tlet lastState = getPersistedState( undefined, {\n\t\t\tnextState: getState(),\n\t\t} );\n\n\t\treturn () => {\n\t\t\tconst state = getPersistedState( lastState, {\n\t\t\t\tnextState: getState(),\n\t\t\t} );\n\t\t\tif ( state !== lastState ) {\n\t\t\t\tpersistence.set( storeName, state );\n\t\t\t\tlastState = state;\n\t\t\t}\n\t\t};\n\t}\n\n\treturn {\n\t\tregisterStore( storeName, options ) {\n\t\t\tif ( ! options.persist ) {\n\t\t\t\treturn registry.registerStore( storeName, options );\n\t\t\t}\n\n\t\t\t// Load from persistence to use as initial state.\n\t\t\tconst persistedState = persistence.get()[ storeName ];\n\t\t\tif ( persistedState !== undefined ) {\n\t\t\t\tlet initialState = options.reducer( options.initialState, {\n\t\t\t\t\ttype: '@@WP/PERSISTENCE_RESTORE',\n\t\t\t\t} );\n\n\t\t\t\tif (\n\t\t\t\t\tisPlainObject( initialState ) &&\n\t\t\t\t\tisPlainObject( persistedState )\n\t\t\t\t) {\n\t\t\t\t\t// If state is an object, ensure that:\n\t\t\t\t\t// - Other keys are left intact when persisting only a\n\t\t\t\t\t// subset of keys.\n\t\t\t\t\t// - New keys in what would otherwise be used as initial\n\t\t\t\t\t// state are deeply merged as base for persisted value.\n\t\t\t\t\tinitialState = merge( {}, initialState, persistedState );\n\t\t\t\t} else {\n\t\t\t\t\t// If there is a mismatch in object-likeness of default\n\t\t\t\t\t// initial or persisted state, defer to persisted value.\n\t\t\t\t\tinitialState = persistedState;\n\t\t\t\t}\n\n\t\t\t\toptions = {\n\t\t\t\t\t...options,\n\t\t\t\t\tinitialState,\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tconst store = registry.registerStore( storeName, options );\n\n\t\t\tstore.subscribe(\n\t\t\t\tcreatePersistOnChange(\n\t\t\t\t\tstore.getState,\n\t\t\t\t\tstoreName,\n\t\t\t\t\toptions.persist\n\t\t\t\t)\n\t\t\t);\n\n\t\t\treturn store;\n\t\t},\n\t};\n}\n\npersistencePlugin.__unstableMigrate = () => {};\n\nexport default persistencePlugin;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/data",
3
- "version": "6.6.0",
3
+ "version": "6.8.0",
4
4
  "description": "Data module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -28,12 +28,12 @@
28
28
  "sideEffects": false,
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.16.0",
31
- "@wordpress/compose": "^5.4.0",
32
- "@wordpress/deprecated": "^3.6.0",
33
- "@wordpress/element": "^4.4.0",
34
- "@wordpress/is-shallow-equal": "^4.6.0",
35
- "@wordpress/priority-queue": "^2.6.0",
36
- "@wordpress/redux-routine": "^4.6.0",
31
+ "@wordpress/compose": "^5.6.0",
32
+ "@wordpress/deprecated": "^3.8.0",
33
+ "@wordpress/element": "^4.6.0",
34
+ "@wordpress/is-shallow-equal": "^4.8.0",
35
+ "@wordpress/priority-queue": "^2.8.0",
36
+ "@wordpress/redux-routine": "^4.8.0",
37
37
  "equivalent-key-map": "^0.2.2",
38
38
  "is-promise": "^4.0.0",
39
39
  "lodash": "^4.17.21",
@@ -47,5 +47,5 @@
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "11eb1241e63c9240018323551c6753f8a5fa96f9"
50
+ "gitHead": "4631d515033397fcfeda77e5755960253caef9bf"
51
51
  }
@@ -112,17 +112,12 @@ export default function useSelect( mapSelect, deps ) {
112
112
 
113
113
  const registry = useRegistry();
114
114
  const isAsync = useAsyncMode();
115
- // React can sometimes clear the `useMemo` cache.
116
- // We use the cache-stable `useMemoOne` to avoid
117
- // losing queues.
118
- const queueContext = useMemoOne( () => ( { queue: true } ), [ registry ] );
119
- const [ , forceRender ] = useReducer( ( s ) => s + 1, 0 );
120
115
 
116
+ const latestRegistry = useRef( registry );
121
117
  const latestMapSelect = useRef();
122
118
  const latestIsAsync = useRef( isAsync );
123
119
  const latestMapOutput = useRef();
124
120
  const latestMapOutputError = useRef();
125
- const isMountedAndNotUnsubscribing = useRef();
126
121
 
127
122
  // Keep track of the stores being selected in the _mapSelect function,
128
123
  // and only subscribe to those stores later.
@@ -145,10 +140,17 @@ export default function useSelect( mapSelect, deps ) {
145
140
 
146
141
  if ( _mapSelect ) {
147
142
  mapOutput = latestMapOutput.current;
143
+ const hasReplacedRegistry = latestRegistry.current !== registry;
148
144
  const hasReplacedMapSelect = latestMapSelect.current !== _mapSelect;
145
+ const hasLeftAsyncMode = latestIsAsync.current && ! isAsync;
149
146
  const lastMapSelectFailed = !! latestMapOutputError.current;
150
147
 
151
- if ( hasReplacedMapSelect || lastMapSelectFailed ) {
148
+ if (
149
+ hasReplacedRegistry ||
150
+ hasReplacedMapSelect ||
151
+ hasLeftAsyncMode ||
152
+ lastMapSelectFailed
153
+ ) {
152
154
  try {
153
155
  mapOutput = wrapSelect( _mapSelect );
154
156
  } catch ( error ) {
@@ -171,45 +173,44 @@ export default function useSelect( mapSelect, deps ) {
171
173
  return;
172
174
  }
173
175
 
176
+ latestRegistry.current = registry;
174
177
  latestMapSelect.current = _mapSelect;
178
+ latestIsAsync.current = isAsync;
175
179
  latestMapOutput.current = mapOutput;
176
180
  latestMapOutputError.current = undefined;
177
- isMountedAndNotUnsubscribing.current = true;
178
-
179
- // This has to run after the other ref updates
180
- // to avoid using stale values in the flushed
181
- // callbacks or potentially overwriting a
182
- // changed `latestMapOutput.current`.
183
- if ( latestIsAsync.current !== isAsync ) {
184
- latestIsAsync.current = isAsync;
185
- renderQueue.flush( queueContext );
186
- }
187
181
  } );
188
182
 
183
+ // React can sometimes clear the `useMemo` cache.
184
+ // We use the cache-stable `useMemoOne` to avoid
185
+ // losing queues.
186
+ const queueContext = useMemoOne( () => ( { queue: true } ), [ registry ] );
187
+ const [ , forceRender ] = useReducer( ( s ) => s + 1, 0 );
188
+ const isMounted = useRef( false );
189
+
189
190
  useIsomorphicLayoutEffect( () => {
190
191
  if ( ! hasMappingFunction ) {
191
192
  return;
192
193
  }
193
194
 
194
195
  const onStoreChange = () => {
195
- if ( isMountedAndNotUnsubscribing.current ) {
196
- try {
197
- const newMapOutput = wrapSelect( latestMapSelect.current );
198
-
199
- if (
200
- isShallowEqual( latestMapOutput.current, newMapOutput )
201
- ) {
202
- return;
203
- }
204
- latestMapOutput.current = newMapOutput;
205
- } catch ( error ) {
206
- latestMapOutputError.current = error;
196
+ try {
197
+ const newMapOutput = wrapSelect( latestMapSelect.current );
198
+
199
+ if ( isShallowEqual( latestMapOutput.current, newMapOutput ) ) {
200
+ return;
207
201
  }
208
- forceRender();
202
+ latestMapOutput.current = newMapOutput;
203
+ } catch ( error ) {
204
+ latestMapOutputError.current = error;
209
205
  }
206
+ forceRender();
210
207
  };
211
208
 
212
209
  const onChange = () => {
210
+ if ( ! isMounted.current ) {
211
+ return;
212
+ }
213
+
213
214
  if ( latestIsAsync.current ) {
214
215
  renderQueue.add( queueContext, onStoreChange );
215
216
  } else {
@@ -219,17 +220,19 @@ export default function useSelect( mapSelect, deps ) {
219
220
 
220
221
  // Catch any possible state changes during mount before the subscription
221
222
  // could be set.
222
- onChange();
223
+ onStoreChange();
223
224
 
224
225
  const unsubscribers = listeningStores.current.map( ( storeName ) =>
225
226
  registry.__unstableSubscribeStore( storeName, onChange )
226
227
  );
227
228
 
229
+ isMounted.current = true;
230
+
228
231
  return () => {
229
- isMountedAndNotUnsubscribing.current = false;
230
232
  // The return value of the subscribe function could be undefined if the store is a custom generic store.
231
233
  unsubscribers.forEach( ( unsubscribe ) => unsubscribe?.() );
232
- renderQueue.flush( queueContext );
234
+ renderQueue.cancel( queueContext );
235
+ isMounted.current = false;
233
236
  };
234
237
  // If you're tempted to eliminate the spread dependencies below don't do it!
235
238
  // We're passing these in from the calling function and want to make sure we're