2022-04-11 08:04:30 -04:00
/******/ ( function ( ) { // webpackBootstrap
2023-06-27 10:24:19 -04:00
/******/ "use strict" ;
2022-04-11 08:04:30 -04:00
/******/ var _ _webpack _modules _ _ = ( {
2020-01-22 17:06:21 -05:00
2022-04-11 08:04:30 -04:00
/***/ 2167 :
/***/ ( function ( module ) {
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
function _typeof ( obj ) {
if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) {
_typeof = function ( obj ) {
return typeof obj ;
} ;
} else {
_typeof = function ( obj ) {
return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
} ;
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
return _typeof ( obj ) ;
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
function _classCallCheck ( instance , Constructor ) {
if ( ! ( instance instanceof Constructor ) ) {
throw new TypeError ( "Cannot call a class as a function" ) ;
}
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
function _defineProperties ( target , props ) {
for ( var i = 0 ; i < props . length ; i ++ ) {
var descriptor = props [ i ] ;
descriptor . enumerable = descriptor . enumerable || false ;
descriptor . configurable = true ;
if ( "value" in descriptor ) descriptor . writable = true ;
Object . defineProperty ( target , descriptor . key , descriptor ) ;
}
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
function _createClass ( Constructor , protoProps , staticProps ) {
if ( protoProps ) _defineProperties ( Constructor . prototype , protoProps ) ;
if ( staticProps ) _defineProperties ( Constructor , staticProps ) ;
return Constructor ;
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
/ * *
* Given an instance of EquivalentKeyMap , returns its internal value pair tuple
* for a key , if one exists . The tuple members consist of the last reference
* value for the key ( used in efficient subsequent lookups ) and the value
* assigned for the key at the leaf node .
*
* @ param { EquivalentKeyMap } instance EquivalentKeyMap instance .
* @ param { * } key The key for which to return value pair .
*
* @ return { ? Array } Value pair , if exists .
* /
function getValuePair ( instance , key ) {
var _map = instance . _map ,
_arrayTreeMap = instance . _arrayTreeMap ,
_objectTreeMap = instance . _objectTreeMap ; // Map keeps a reference to the last object-like key used to set the
// value, which can be used to shortcut immediately to the value.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( _map . has ( key ) ) {
return _map . get ( key ) ;
} // Sort keys to ensure stable retrieval from tree.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var properties = Object . keys ( key ) . sort ( ) ; // Tree by type to avoid conflicts on numeric object keys, empty value.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var map = Array . isArray ( key ) ? _arrayTreeMap : _objectTreeMap ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
for ( var i = 0 ; i < properties . length ; i ++ ) {
var property = properties [ i ] ;
map = map . get ( property ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( map === undefined ) {
return ;
}
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var propertyValue = key [ property ] ;
map = map . get ( propertyValue ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( map === undefined ) {
return ;
}
}
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var valuePair = map . get ( '_ekm_value' ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( ! valuePair ) {
return ;
} // If reached, it implies that an object-like key was set with another
// reference, so delete the reference and replace with the current.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
_map . delete ( valuePair [ 0 ] ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
valuePair [ 0 ] = key ;
map . set ( '_ekm_value' , valuePair ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
_map . set ( key , valuePair ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
return valuePair ;
}
/ * *
* Variant of a Map object which enables lookup by equivalent ( deeply equal )
* object and array keys .
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var EquivalentKeyMap =
/*#__PURE__*/
function ( ) {
/ * *
* Constructs a new instance of EquivalentKeyMap .
*
* @ param { Iterable . < * > } iterable Initial pair of key , value for map .
* /
function EquivalentKeyMap ( iterable ) {
_classCallCheck ( this , EquivalentKeyMap ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
this . clear ( ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( iterable instanceof EquivalentKeyMap ) {
// Map#forEach is only means of iterating with support for IE11.
var iterablePairs = [ ] ;
iterable . forEach ( function ( value , key ) {
iterablePairs . push ( [ key , value ] ) ;
} ) ;
iterable = iterablePairs ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
if ( iterable != null ) {
for ( var i = 0 ; i < iterable . length ; i ++ ) {
this . set ( iterable [ i ] [ 0 ] , iterable [ i ] [ 1 ] ) ;
}
}
}
/ * *
* Accessor property returning the number of elements .
*
* @ return { number } Number of elements .
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
_createClass ( EquivalentKeyMap , [ {
key : "set" ,
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Add or update an element with a specified key and value .
*
* @ param { * } key The key of the element to add .
* @ param { * } value The value of the element to add .
*
* @ return { EquivalentKeyMap } Map instance .
* /
value : function set ( key , value ) {
// Shortcut non-object-like to set on internal Map.
if ( key === null || _typeof ( key ) !== 'object' ) {
this . _map . set ( key , value ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
return this ;
} // Sort keys to ensure stable assignment into tree.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var properties = Object . keys ( key ) . sort ( ) ;
var valuePair = [ key , value ] ; // Tree by type to avoid conflicts on numeric object keys, empty value.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var map = Array . isArray ( key ) ? this . _arrayTreeMap : this . _objectTreeMap ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
for ( var i = 0 ; i < properties . length ; i ++ ) {
var property = properties [ i ] ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( ! map . has ( property ) ) {
map . set ( property , new EquivalentKeyMap ( ) ) ;
}
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
map = map . get ( property ) ;
var propertyValue = key [ property ] ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( ! map . has ( propertyValue ) ) {
map . set ( propertyValue , new EquivalentKeyMap ( ) ) ;
}
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
map = map . get ( propertyValue ) ;
} // If an _ekm_value exists, there was already an equivalent key. Before
// overriding, ensure that the old key reference is removed from map to
// avoid memory leak of accumulating equivalent keys. This is, in a
// sense, a poor man's WeakMap, while still enabling iterability.
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var previousValuePair = map . get ( '_ekm_value' ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
if ( previousValuePair ) {
this . _map . delete ( previousValuePair [ 0 ] ) ;
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
map . set ( '_ekm_value' , valuePair ) ;
this . _map . set ( key , valuePair ) ;
return this ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
/ * *
* Returns a specified element .
*
* @ param { * } key The key of the element to return .
*
* @ return { ? * } The element associated with the specified key or undefined
* if the key can ' t be found .
* /
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
} , {
key : "get" ,
value : function get ( key ) {
// Shortcut non-object-like to get from internal Map.
if ( key === null || _typeof ( key ) !== 'object' ) {
return this . _map . get ( key ) ;
}
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
var valuePair = getValuePair ( this , key ) ;
if ( valuePair ) {
return valuePair [ 1 ] ;
}
}
/ * *
* Returns a boolean indicating whether an element with the specified key
* exists or not .
*
* @ param { * } key The key of the element to test for presence .
*
* @ return { boolean } Whether an element with the specified key exists .
* /
} , {
key : "has" ,
value : function has ( key ) {
if ( key === null || _typeof ( key ) !== 'object' ) {
return this . _map . has ( key ) ;
} // Test on the _presence_ of the pair, not its value, as even undefined
// can be a valid member value for a key.
return getValuePair ( this , key ) !== undefined ;
}
/ * *
* Removes the specified element .
*
* @ param { * } key The key of the element to remove .
*
* @ return { boolean } Returns true if an element existed and has been
* removed , or false if the element does not exist .
* /
} , {
key : "delete" ,
value : function _delete ( key ) {
if ( ! this . has ( key ) ) {
return false ;
} // This naive implementation will leave orphaned child trees. A better
// implementation should traverse and remove orphans.
this . set ( key , undefined ) ;
return true ;
}
/ * *
* Executes a provided function once per each key / value pair , in insertion
* order .
*
* @ param { Function } callback Function to execute for each element .
* @ param { * } thisArg Value to use as ` this ` when executing
* ` callback ` .
* /
} , {
key : "forEach" ,
value : function forEach ( callback ) {
var _this = this ;
var thisArg = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : this ;
this . _map . forEach ( function ( value , key ) {
// Unwrap value from object-like value pair.
if ( key !== null && _typeof ( key ) === 'object' ) {
value = value [ 1 ] ;
}
callback . call ( thisArg , value , key , _this ) ;
} ) ;
}
/ * *
* Removes all elements .
* /
} , {
key : "clear" ,
value : function clear ( ) {
this . _map = new Map ( ) ;
this . _arrayTreeMap = new Map ( ) ;
this . _objectTreeMap = new Map ( ) ;
}
} , {
key : "size" ,
get : function get ( ) {
return this . _map . size ;
}
} ] ) ;
return EquivalentKeyMap ;
} ( ) ;
module . exports = EquivalentKeyMap ;
2020-01-22 17:06:21 -05:00
2023-02-07 02:04:52 -05:00
/***/ } ) ,
/***/ 5619 :
/***/ ( function ( module ) {
// do not edit .js files directly - edit src/index.jst
var envHasBigInt64Array = typeof BigInt64Array !== 'undefined' ;
module . exports = function equal ( a , b ) {
if ( a === b ) return true ;
if ( a && b && typeof a == 'object' && typeof b == 'object' ) {
if ( a . constructor !== b . constructor ) return false ;
var length , i , keys ;
if ( Array . isArray ( a ) ) {
length = a . length ;
if ( length != b . length ) return false ;
for ( i = length ; i -- !== 0 ; )
if ( ! equal ( a [ i ] , b [ i ] ) ) return false ;
return true ;
}
if ( ( a instanceof Map ) && ( b instanceof Map ) ) {
if ( a . size !== b . size ) return false ;
for ( i of a . entries ( ) )
if ( ! b . has ( i [ 0 ] ) ) return false ;
for ( i of a . entries ( ) )
if ( ! equal ( i [ 1 ] , b . get ( i [ 0 ] ) ) ) return false ;
return true ;
}
if ( ( a instanceof Set ) && ( b instanceof Set ) ) {
if ( a . size !== b . size ) return false ;
for ( i of a . entries ( ) )
if ( ! b . has ( i [ 0 ] ) ) return false ;
return true ;
}
if ( ArrayBuffer . isView ( a ) && ArrayBuffer . isView ( b ) ) {
length = a . length ;
if ( length != b . length ) return false ;
for ( i = length ; i -- !== 0 ; )
if ( a [ i ] !== b [ i ] ) return false ;
return true ;
}
if ( a . constructor === RegExp ) return a . source === b . source && a . flags === b . flags ;
if ( a . valueOf !== Object . prototype . valueOf ) return a . valueOf ( ) === b . valueOf ( ) ;
if ( a . toString !== Object . prototype . toString ) return a . toString ( ) === b . toString ( ) ;
keys = Object . keys ( a ) ;
length = keys . length ;
if ( length !== Object . keys ( b ) . length ) return false ;
for ( i = length ; i -- !== 0 ; )
if ( ! Object . prototype . hasOwnProperty . call ( b , keys [ i ] ) ) return false ;
for ( i = length ; i -- !== 0 ; ) {
var key = keys [ i ] ;
if ( ! equal ( a [ key ] , b [ key ] ) ) return false ;
}
return true ;
}
// true if both NaN, false otherwise
return a !== a && b !== b ;
} ;
2022-04-11 08:04:30 -04:00
/***/ } )
2019-09-19 11:19:18 -04:00
2022-04-11 08:04:30 -04:00
/******/ } ) ;
/************************************************************************/
/******/ // The module cache
/******/ var _ _webpack _module _cache _ _ = { } ;
/******/
/******/ // The require function
/******/ function _ _webpack _require _ _ ( moduleId ) {
/******/ // Check if module is in cache
/******/ var cachedModule = _ _webpack _module _cache _ _ [ moduleId ] ;
/******/ if ( cachedModule !== undefined ) {
/******/ return cachedModule . exports ;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = _ _webpack _module _cache _ _ [ moduleId ] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports : { }
/******/ } ;
/******/
/******/ // Execute the module function
/******/ _ _webpack _modules _ _ [ moduleId ] ( module , module . exports , _ _webpack _require _ _ ) ;
/******/
/******/ // Return the exports of the module
/******/ return module . exports ;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ ! function ( ) {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ _ _webpack _require _ _ . n = function ( module ) {
/******/ var getter = module && module . _ _esModule ?
/******/ function ( ) { return module [ 'default' ] ; } :
/******/ function ( ) { return module ; } ;
/******/ _ _webpack _require _ _ . d ( getter , { a : getter } ) ;
/******/ return getter ;
/******/ } ;
/******/ } ( ) ;
/******/
/******/ /* webpack/runtime/define property getters */
/******/ ! function ( ) {
/******/ // define getter functions for harmony exports
/******/ _ _webpack _require _ _ . d = function ( exports , definition ) {
/******/ for ( var key in definition ) {
/******/ if ( _ _webpack _require _ _ . o ( definition , key ) && ! _ _webpack _require _ _ . o ( exports , key ) ) {
/******/ Object . defineProperty ( exports , key , { enumerable : true , get : definition [ key ] } ) ;
/******/ }
/******/ }
/******/ } ;
/******/ } ( ) ;
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ ! function ( ) {
/******/ _ _webpack _require _ _ . o = function ( obj , prop ) { return Object . prototype . hasOwnProperty . call ( obj , prop ) ; }
/******/ } ( ) ;
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ ! function ( ) {
/******/ // define __esModule on exports
/******/ _ _webpack _require _ _ . r = function ( exports ) {
/******/ if ( typeof Symbol !== 'undefined' && Symbol . toStringTag ) {
/******/ Object . defineProperty ( exports , Symbol . toStringTag , { value : 'Module' } ) ;
/******/ }
/******/ Object . defineProperty ( exports , '__esModule' , { value : true } ) ;
/******/ } ;
/******/ } ( ) ;
/******/
/************************************************************************/
var _ _webpack _exports _ _ = { } ;
2023-06-27 10:24:19 -04:00
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
2022-04-11 08:04:30 -04:00
! function ( ) {
2020-06-29 07:50:29 -04:00
// ESM COMPAT FLAG
2019-10-15 11:37:08 -04:00
_ _webpack _require _ _ . r ( _ _webpack _exports _ _ ) ;
2020-06-29 07:50:29 -04:00
// EXPORTS
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( _ _webpack _exports _ _ , {
"EntityProvider" : function ( ) { return /* reexport */ EntityProvider ; } ,
"__experimentalFetchLinkSuggestions" : function ( ) { return /* reexport */ _experimental _fetch _link _suggestions ; } ,
"__experimentalFetchUrlData" : function ( ) { return /* reexport */ _experimental _fetch _url _data ; } ,
2022-04-12 11:12:47 -04:00
"__experimentalUseEntityRecord" : function ( ) { return /* reexport */ _ _experimentalUseEntityRecord ; } ,
"__experimentalUseEntityRecords" : function ( ) { return /* reexport */ _ _experimentalUseEntityRecords ; } ,
2022-09-20 11:43:29 -04:00
"__experimentalUseResourcePermissions" : function ( ) { return /* reexport */ _ _experimentalUseResourcePermissions ; } ,
2022-04-11 08:04:30 -04:00
"store" : function ( ) { return /* binding */ store ; } ,
"useEntityBlockEditor" : function ( ) { return /* reexport */ useEntityBlockEditor ; } ,
"useEntityId" : function ( ) { return /* reexport */ useEntityId ; } ,
2022-09-20 11:43:29 -04:00
"useEntityProp" : function ( ) { return /* reexport */ useEntityProp ; } ,
"useEntityRecord" : function ( ) { return /* reexport */ useEntityRecord ; } ,
"useEntityRecords" : function ( ) { return /* reexport */ useEntityRecords ; } ,
"useResourcePermissions" : function ( ) { return /* reexport */ useResourcePermissions ; }
2022-04-11 08:04:30 -04:00
} ) ;
2021-01-27 21:04:13 -05:00
2020-06-29 07:50:29 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/core-data/build-module/actions.js
2019-10-15 11:37:08 -04:00
var build _module _actions _namespaceObject = { } ;
_ _webpack _require _ _ . r ( build _module _actions _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( build _module _actions _namespaceObject , {
"__experimentalBatch" : function ( ) { return _ _experimentalBatch ; } ,
"__experimentalReceiveCurrentGlobalStylesId" : function ( ) { return _ _experimentalReceiveCurrentGlobalStylesId ; } ,
"__experimentalReceiveThemeBaseGlobalStyles" : function ( ) { return _ _experimentalReceiveThemeBaseGlobalStyles ; } ,
2022-04-12 11:12:47 -04:00
"__experimentalReceiveThemeGlobalStyleVariations" : function ( ) { return _ _experimentalReceiveThemeGlobalStyleVariations ; } ,
2022-04-11 08:04:30 -04:00
"__experimentalSaveSpecifiedEntityEdits" : function ( ) { return _ _experimentalSaveSpecifiedEntityEdits ; } ,
"__unstableCreateUndoLevel" : function ( ) { return _ _unstableCreateUndoLevel ; } ,
"addEntities" : function ( ) { return addEntities ; } ,
"deleteEntityRecord" : function ( ) { return deleteEntityRecord ; } ,
"editEntityRecord" : function ( ) { return editEntityRecord ; } ,
"receiveAutosaves" : function ( ) { return receiveAutosaves ; } ,
"receiveCurrentTheme" : function ( ) { return receiveCurrentTheme ; } ,
"receiveCurrentUser" : function ( ) { return receiveCurrentUser ; } ,
"receiveEmbedPreview" : function ( ) { return receiveEmbedPreview ; } ,
"receiveEntityRecords" : function ( ) { return receiveEntityRecords ; } ,
2023-06-27 10:24:19 -04:00
"receiveNavigationFallbackId" : function ( ) { return receiveNavigationFallbackId ; } ,
"receiveThemeGlobalStyleRevisions" : function ( ) { return receiveThemeGlobalStyleRevisions ; } ,
2022-04-11 08:04:30 -04:00
"receiveThemeSupports" : function ( ) { return receiveThemeSupports ; } ,
"receiveUploadPermissions" : function ( ) { return receiveUploadPermissions ; } ,
"receiveUserPermission" : function ( ) { return receiveUserPermission ; } ,
"receiveUserQuery" : function ( ) { return receiveUserQuery ; } ,
"redo" : function ( ) { return redo ; } ,
"saveEditedEntityRecord" : function ( ) { return saveEditedEntityRecord ; } ,
"saveEntityRecord" : function ( ) { return saveEntityRecord ; } ,
"undo" : function ( ) { return undo ; }
} ) ;
2020-06-29 07:50:29 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/core-data/build-module/selectors.js
2019-10-15 11:37:08 -04:00
var build _module _selectors _namespaceObject = { } ;
_ _webpack _require _ _ . r ( build _module _selectors _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( build _module _selectors _namespaceObject , {
"__experimentalGetCurrentGlobalStylesId" : function ( ) { return _ _experimentalGetCurrentGlobalStylesId ; } ,
"__experimentalGetCurrentThemeBaseGlobalStyles" : function ( ) { return _ _experimentalGetCurrentThemeBaseGlobalStyles ; } ,
2022-04-12 11:12:47 -04:00
"__experimentalGetCurrentThemeGlobalStylesVariations" : function ( ) { return _ _experimentalGetCurrentThemeGlobalStylesVariations ; } ,
2022-04-11 08:04:30 -04:00
"__experimentalGetDirtyEntityRecords" : function ( ) { return _ _experimentalGetDirtyEntityRecords ; } ,
"__experimentalGetEntitiesBeingSaved" : function ( ) { return _ _experimentalGetEntitiesBeingSaved ; } ,
"__experimentalGetEntityRecordNoResolver" : function ( ) { return _ _experimentalGetEntityRecordNoResolver ; } ,
"__experimentalGetTemplateForLink" : function ( ) { return _ _experimentalGetTemplateForLink ; } ,
"canUser" : function ( ) { return canUser ; } ,
"canUserEditEntityRecord" : function ( ) { return canUserEditEntityRecord ; } ,
"getAuthors" : function ( ) { return getAuthors ; } ,
"getAutosave" : function ( ) { return getAutosave ; } ,
"getAutosaves" : function ( ) { return getAutosaves ; } ,
2022-04-12 11:12:47 -04:00
"getBlockPatternCategories" : function ( ) { return getBlockPatternCategories ; } ,
"getBlockPatterns" : function ( ) { return getBlockPatterns ; } ,
2022-04-11 08:04:30 -04:00
"getCurrentTheme" : function ( ) { return getCurrentTheme ; } ,
2023-06-27 10:24:19 -04:00
"getCurrentThemeGlobalStylesRevisions" : function ( ) { return getCurrentThemeGlobalStylesRevisions ; } ,
2022-04-11 08:04:30 -04:00
"getCurrentUser" : function ( ) { return getCurrentUser ; } ,
"getEditedEntityRecord" : function ( ) { return getEditedEntityRecord ; } ,
"getEmbedPreview" : function ( ) { return getEmbedPreview ; } ,
"getEntitiesByKind" : function ( ) { return getEntitiesByKind ; } ,
2022-04-12 11:12:47 -04:00
"getEntitiesConfig" : function ( ) { return getEntitiesConfig ; } ,
2022-04-11 08:04:30 -04:00
"getEntity" : function ( ) { return getEntity ; } ,
2022-04-12 11:12:47 -04:00
"getEntityConfig" : function ( ) { return getEntityConfig ; } ,
2022-04-11 08:04:30 -04:00
"getEntityRecord" : function ( ) { return getEntityRecord ; } ,
"getEntityRecordEdits" : function ( ) { return getEntityRecordEdits ; } ,
"getEntityRecordNonTransientEdits" : function ( ) { return getEntityRecordNonTransientEdits ; } ,
"getEntityRecords" : function ( ) { return getEntityRecords ; } ,
"getLastEntityDeleteError" : function ( ) { return getLastEntityDeleteError ; } ,
"getLastEntitySaveError" : function ( ) { return getLastEntitySaveError ; } ,
"getRawEntityRecord" : function ( ) { return getRawEntityRecord ; } ,
"getRedoEdit" : function ( ) { return getRedoEdit ; } ,
"getReferenceByDistinctEdits" : function ( ) { return getReferenceByDistinctEdits ; } ,
"getThemeSupports" : function ( ) { return getThemeSupports ; } ,
"getUndoEdit" : function ( ) { return getUndoEdit ; } ,
"getUserQueryResults" : function ( ) { return getUserQueryResults ; } ,
"hasEditsForEntityRecord" : function ( ) { return hasEditsForEntityRecord ; } ,
"hasEntityRecords" : function ( ) { return hasEntityRecords ; } ,
"hasFetchedAutosaves" : function ( ) { return hasFetchedAutosaves ; } ,
"hasRedo" : function ( ) { return hasRedo ; } ,
"hasUndo" : function ( ) { return hasUndo ; } ,
"isAutosavingEntityRecord" : function ( ) { return isAutosavingEntityRecord ; } ,
"isDeletingEntityRecord" : function ( ) { return isDeletingEntityRecord ; } ,
"isPreviewEmbedFallback" : function ( ) { return isPreviewEmbedFallback ; } ,
"isRequestingEmbedPreview" : function ( ) { return isRequestingEmbedPreview ; } ,
"isSavingEntityRecord" : function ( ) { return isSavingEntityRecord ; }
} ) ;
2020-06-29 07:50:29 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/core-data/build-module/resolvers.js
2019-10-15 11:37:08 -04:00
var resolvers _namespaceObject = { } ;
_ _webpack _require _ _ . r ( resolvers _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( resolvers _namespaceObject , {
"__experimentalGetCurrentGlobalStylesId" : function ( ) { return resolvers _experimentalGetCurrentGlobalStylesId ; } ,
"__experimentalGetCurrentThemeBaseGlobalStyles" : function ( ) { return resolvers _experimentalGetCurrentThemeBaseGlobalStyles ; } ,
2022-04-12 11:12:47 -04:00
"__experimentalGetCurrentThemeGlobalStylesVariations" : function ( ) { return resolvers _experimentalGetCurrentThemeGlobalStylesVariations ; } ,
2022-04-11 08:04:30 -04:00
"__experimentalGetTemplateForLink" : function ( ) { return resolvers _experimentalGetTemplateForLink ; } ,
"canUser" : function ( ) { return resolvers _canUser ; } ,
"canUserEditEntityRecord" : function ( ) { return resolvers _canUserEditEntityRecord ; } ,
"getAuthors" : function ( ) { return resolvers _getAuthors ; } ,
"getAutosave" : function ( ) { return resolvers _getAutosave ; } ,
"getAutosaves" : function ( ) { return resolvers _getAutosaves ; } ,
2022-04-12 11:12:47 -04:00
"getBlockPatternCategories" : function ( ) { return resolvers _getBlockPatternCategories ; } ,
"getBlockPatterns" : function ( ) { return resolvers _getBlockPatterns ; } ,
2022-04-11 08:04:30 -04:00
"getCurrentTheme" : function ( ) { return resolvers _getCurrentTheme ; } ,
2023-06-27 10:24:19 -04:00
"getCurrentThemeGlobalStylesRevisions" : function ( ) { return resolvers _getCurrentThemeGlobalStylesRevisions ; } ,
2022-04-11 08:04:30 -04:00
"getCurrentUser" : function ( ) { return resolvers _getCurrentUser ; } ,
"getEditedEntityRecord" : function ( ) { return resolvers _getEditedEntityRecord ; } ,
"getEmbedPreview" : function ( ) { return resolvers _getEmbedPreview ; } ,
"getEntityRecord" : function ( ) { return resolvers _getEntityRecord ; } ,
"getEntityRecords" : function ( ) { return resolvers _getEntityRecords ; } ,
2023-06-27 10:24:19 -04:00
"getNavigationFallbackId" : function ( ) { return resolvers _getNavigationFallbackId ; } ,
2022-04-11 08:04:30 -04:00
"getRawEntityRecord" : function ( ) { return resolvers _getRawEntityRecord ; } ,
"getThemeSupports" : function ( ) { return resolvers _getThemeSupports ; }
} ) ;
; // CONCATENATED MODULE: external ["wp","data"]
var external _wp _data _namespaceObject = window [ "wp" ] [ "data" ] ;
2023-02-07 02:04:52 -05:00
// EXTERNAL MODULE: ./node_modules/fast-deep-equal/es6/index.js
var es6 = _ _webpack _require _ _ ( 5619 ) ;
var es6 _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( es6 ) ;
; // CONCATENATED MODULE: external ["wp","compose"]
var external _wp _compose _namespaceObject = window [ "wp" ] [ "compose" ] ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: external ["wp","isShallowEqual"]
var external _wp _isShallowEqual _namespaceObject = window [ "wp" ] [ "isShallowEqual" ] ;
var external _wp _isShallowEqual _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( external _wp _isShallowEqual _namespaceObject ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/if-matching-action.js
2022-04-12 11:12:47 -04:00
/** @typedef {import('../types').AnyFunction} AnyFunction */
2020-06-26 09:33:47 -04:00
/ * *
* A higher - order reducer creator which invokes the original reducer only if
* the dispatching action matches the given predicate , * * OR * * if state is
* initializing ( undefined ) .
*
2022-04-12 11:12:47 -04:00
* @ param { AnyFunction } isMatch Function predicate for allowing reducer call .
2020-06-26 09:33:47 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { AnyFunction } Higher - order reducer .
2020-06-26 09:33:47 -04:00
* /
2021-05-19 11:09:27 -04:00
const ifMatchingAction = isMatch => reducer => ( state , action ) => {
if ( state === undefined || isMatch ( action ) ) {
return reducer ( state , action ) ;
}
2020-06-26 09:33:47 -04:00
2021-05-19 11:09:27 -04:00
return state ;
2020-06-26 09:33:47 -04:00
} ;
/* harmony default export */ var if _matching _action = ( ifMatchingAction ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/replace-action.js
2022-04-12 11:12:47 -04:00
/** @typedef {import('../types').AnyFunction} AnyFunction */
2020-06-26 09:33:47 -04:00
/ * *
* Higher - order reducer creator which substitutes the action object before
* passing to the original reducer .
*
2022-04-12 11:12:47 -04:00
* @ param { AnyFunction } replacer Function mapping original action to replacement .
2020-06-26 09:33:47 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { AnyFunction } Higher - order reducer .
2020-06-26 09:33:47 -04:00
* /
2021-05-19 11:09:27 -04:00
const replaceAction = replacer => reducer => ( state , action ) => {
return reducer ( state , replacer ( action ) ) ;
2020-06-26 09:33:47 -04:00
} ;
/* harmony default export */ var replace _action = ( replaceAction ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/conservative-map-item.js
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* External dependencies
2018-12-13 23:41:57 -05:00
* /
2018-12-14 06:02:53 -05:00
2018-12-13 23:41:57 -05:00
/ * *
2022-04-12 11:12:47 -04:00
* Given the current and next item entity record , returns the minimally "modified"
2019-10-15 11:37:08 -04:00
* result of the next item , preferring value references from the original item
* if equal . If all values match , the original item is returned .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ param { Object } item Original item .
* @ param { Object } nextItem Next item .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ return { Object } Minimally modified merged item .
2018-12-13 23:41:57 -05:00
* /
2019-10-15 11:37:08 -04:00
function conservativeMapItem ( item , nextItem ) {
// Return next item in its entirety if there is no original item.
if ( ! item ) {
return nextItem ;
}
2021-05-19 11:09:27 -04:00
let hasChanges = false ;
const result = { } ;
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
for ( const key in nextItem ) {
2023-02-07 02:04:52 -05:00
if ( es6 _default ( ) ( item [ key ] , nextItem [ key ] ) ) {
2019-10-15 11:37:08 -04:00
result [ key ] = item [ key ] ;
} else {
hasChanges = true ;
result [ key ] = nextItem [ key ] ;
}
}
if ( ! hasChanges ) {
return item ;
2020-10-13 09:10:30 -04:00
} // Only at this point, backfill properties from the original item which
// weren't explicitly set into the result above. This is an optimization
// to allow `hasChanges` to return early.
2021-05-19 11:09:27 -04:00
for ( const key in item ) {
if ( ! result . hasOwnProperty ( key ) ) {
result [ key ] = item [ key ] ;
2020-10-13 09:10:30 -04:00
}
2019-10-15 11:37:08 -04:00
}
return result ;
2018-12-13 23:41:57 -05:00
}
2018-12-17 22:14:52 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/on-sub-key.js
2022-04-12 11:12:47 -04:00
/** @typedef {import('../types').AnyFunction} AnyFunction */
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Higher - order reducer creator which creates a combined reducer object , keyed
* by a property on the action object .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ param { string } actionProperty Action property by which to key object .
2018-12-13 23:41:57 -05:00
*
2022-04-12 11:12:47 -04:00
* @ return { AnyFunction } Higher - order reducer .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const onSubKey = actionProperty => reducer => ( state = { } , action ) => {
2021-05-19 11:09:27 -04:00
// Retrieve subkey from action. Do not track if undefined; useful for cases
// where reducer is scoped by action shape.
const key = action [ actionProperty ] ;
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
if ( key === undefined ) {
return state ;
} // Avoid updating state if unchanged. Note that this also accounts for a
// reducer which returns undefined on a key which is not yet tracked.
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
const nextKeyState = reducer ( state [ key ] , action ) ;
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
if ( nextKeyState === state [ key ] ) {
return state ;
}
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
return { ... state ,
[ key ] : nextKeyState
2019-10-15 11:37:08 -04:00
} ;
} ;
2021-05-19 11:09:27 -04:00
/* harmony default export */ var on _sub _key = ( onSubKey ) ;
2018-12-17 22:14:52 -05:00
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/tslib/tslib.es6.mjs
/ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Copyright ( c ) Microsoft Corporation .
Permission to use , copy , modify , and / or distribute this software for any
purpose with or without fee is hereby granted .
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS . IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT ,
INDIRECT , OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE , DATA OR PROFITS , WHETHER IN AN ACTION OF CONTRACT , NEGLIGENCE OR
OTHER TORTIOUS ACTION , ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/* global Reflect, Promise, SuppressedError, Symbol */
var extendStatics = function ( d , b ) {
extendStatics = Object . setPrototypeOf ||
( { _ _proto _ _ : [ ] } instanceof Array && function ( d , b ) { d . _ _proto _ _ = b ; } ) ||
function ( d , b ) { for ( var p in b ) if ( Object . prototype . hasOwnProperty . call ( b , p ) ) d [ p ] = b [ p ] ; } ;
return extendStatics ( d , b ) ;
} ;
function _ _extends ( d , b ) {
if ( typeof b !== "function" && b !== null )
throw new TypeError ( "Class extends value " + String ( b ) + " is not a constructor or null" ) ;
extendStatics ( d , b ) ;
function _ _ ( ) { this . constructor = d ; }
d . prototype = b === null ? Object . create ( b ) : ( _ _ . prototype = b . prototype , new _ _ ( ) ) ;
}
var _ _assign = function ( ) {
_ _assign = Object . assign || function _ _assign ( t ) {
for ( var s , i = 1 , n = arguments . length ; i < n ; i ++ ) {
s = arguments [ i ] ;
for ( var p in s ) if ( Object . prototype . hasOwnProperty . call ( s , p ) ) t [ p ] = s [ p ] ;
}
return t ;
}
return _ _assign . apply ( this , arguments ) ;
}
function _ _rest ( s , e ) {
var t = { } ;
for ( var p in s ) if ( Object . prototype . hasOwnProperty . call ( s , p ) && e . indexOf ( p ) < 0 )
t [ p ] = s [ p ] ;
if ( s != null && typeof Object . getOwnPropertySymbols === "function" )
for ( var i = 0 , p = Object . getOwnPropertySymbols ( s ) ; i < p . length ; i ++ ) {
if ( e . indexOf ( p [ i ] ) < 0 && Object . prototype . propertyIsEnumerable . call ( s , p [ i ] ) )
t [ p [ i ] ] = s [ p [ i ] ] ;
}
return t ;
}
function _ _decorate ( decorators , target , key , desc ) {
var c = arguments . length , r = c < 3 ? target : desc === null ? desc = Object . getOwnPropertyDescriptor ( target , key ) : desc , d ;
if ( typeof Reflect === "object" && typeof Reflect . decorate === "function" ) r = Reflect . decorate ( decorators , target , key , desc ) ;
else for ( var i = decorators . length - 1 ; i >= 0 ; i -- ) if ( d = decorators [ i ] ) r = ( c < 3 ? d ( r ) : c > 3 ? d ( target , key , r ) : d ( target , key ) ) || r ;
return c > 3 && r && Object . defineProperty ( target , key , r ) , r ;
}
function _ _param ( paramIndex , decorator ) {
return function ( target , key ) { decorator ( target , key , paramIndex ) ; }
}
function _ _esDecorate ( ctor , descriptorIn , decorators , contextIn , initializers , extraInitializers ) {
function accept ( f ) { if ( f !== void 0 && typeof f !== "function" ) throw new TypeError ( "Function expected" ) ; return f ; }
var kind = contextIn . kind , key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value" ;
var target = ! descriptorIn && ctor ? contextIn [ "static" ] ? ctor : ctor . prototype : null ;
var descriptor = descriptorIn || ( target ? Object . getOwnPropertyDescriptor ( target , contextIn . name ) : { } ) ;
var _ , done = false ;
for ( var i = decorators . length - 1 ; i >= 0 ; i -- ) {
var context = { } ;
for ( var p in contextIn ) context [ p ] = p === "access" ? { } : contextIn [ p ] ;
for ( var p in contextIn . access ) context . access [ p ] = contextIn . access [ p ] ;
context . addInitializer = function ( f ) { if ( done ) throw new TypeError ( "Cannot add initializers after decoration has completed" ) ; extraInitializers . push ( accept ( f || null ) ) ; } ;
var result = ( 0 , decorators [ i ] ) ( kind === "accessor" ? { get : descriptor . get , set : descriptor . set } : descriptor [ key ] , context ) ;
if ( kind === "accessor" ) {
if ( result === void 0 ) continue ;
if ( result === null || typeof result !== "object" ) throw new TypeError ( "Object expected" ) ;
if ( _ = accept ( result . get ) ) descriptor . get = _ ;
if ( _ = accept ( result . set ) ) descriptor . set = _ ;
if ( _ = accept ( result . init ) ) initializers . unshift ( _ ) ;
}
else if ( _ = accept ( result ) ) {
if ( kind === "field" ) initializers . unshift ( _ ) ;
else descriptor [ key ] = _ ;
}
}
if ( target ) Object . defineProperty ( target , contextIn . name , descriptor ) ;
done = true ;
} ;
function _ _runInitializers ( thisArg , initializers , value ) {
var useValue = arguments . length > 2 ;
for ( var i = 0 ; i < initializers . length ; i ++ ) {
value = useValue ? initializers [ i ] . call ( thisArg , value ) : initializers [ i ] . call ( thisArg ) ;
}
return useValue ? value : void 0 ;
} ;
function _ _propKey ( x ) {
return typeof x === "symbol" ? x : "" . concat ( x ) ;
} ;
function _ _setFunctionName ( f , name , prefix ) {
if ( typeof name === "symbol" ) name = name . description ? "[" . concat ( name . description , "]" ) : "" ;
return Object . defineProperty ( f , "name" , { configurable : true , value : prefix ? "" . concat ( prefix , " " , name ) : name } ) ;
} ;
function _ _metadata ( metadataKey , metadataValue ) {
if ( typeof Reflect === "object" && typeof Reflect . metadata === "function" ) return Reflect . metadata ( metadataKey , metadataValue ) ;
}
function _ _awaiter ( thisArg , _arguments , P , generator ) {
function adopt ( value ) { return value instanceof P ? value : new P ( function ( resolve ) { resolve ( value ) ; } ) ; }
return new ( P || ( P = Promise ) ) ( function ( resolve , reject ) {
function fulfilled ( value ) { try { step ( generator . next ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function rejected ( value ) { try { step ( generator [ "throw" ] ( value ) ) ; } catch ( e ) { reject ( e ) ; } }
function step ( result ) { result . done ? resolve ( result . value ) : adopt ( result . value ) . then ( fulfilled , rejected ) ; }
step ( ( generator = generator . apply ( thisArg , _arguments || [ ] ) ) . next ( ) ) ;
} ) ;
}
function _ _generator ( thisArg , body ) {
var _ = { label : 0 , sent : function ( ) { if ( t [ 0 ] & 1 ) throw t [ 1 ] ; return t [ 1 ] ; } , trys : [ ] , ops : [ ] } , f , y , t , g ;
return g = { next : verb ( 0 ) , "throw" : verb ( 1 ) , "return" : verb ( 2 ) } , typeof Symbol === "function" && ( g [ Symbol . iterator ] = function ( ) { return this ; } ) , g ;
function verb ( n ) { return function ( v ) { return step ( [ n , v ] ) ; } ; }
function step ( op ) {
if ( f ) throw new TypeError ( "Generator is already executing." ) ;
while ( g && ( g = 0 , op [ 0 ] && ( _ = 0 ) ) , _ ) try {
if ( f = 1 , y && ( t = op [ 0 ] & 2 ? y [ "return" ] : op [ 0 ] ? y [ "throw" ] || ( ( t = y [ "return" ] ) && t . call ( y ) , 0 ) : y . next ) && ! ( t = t . call ( y , op [ 1 ] ) ) . done ) return t ;
if ( y = 0 , t ) op = [ op [ 0 ] & 2 , t . value ] ;
switch ( op [ 0 ] ) {
case 0 : case 1 : t = op ; break ;
case 4 : _ . label ++ ; return { value : op [ 1 ] , done : false } ;
case 5 : _ . label ++ ; y = op [ 1 ] ; op = [ 0 ] ; continue ;
case 7 : op = _ . ops . pop ( ) ; _ . trys . pop ( ) ; continue ;
default :
if ( ! ( t = _ . trys , t = t . length > 0 && t [ t . length - 1 ] ) && ( op [ 0 ] === 6 || op [ 0 ] === 2 ) ) { _ = 0 ; continue ; }
if ( op [ 0 ] === 3 && ( ! t || ( op [ 1 ] > t [ 0 ] && op [ 1 ] < t [ 3 ] ) ) ) { _ . label = op [ 1 ] ; break ; }
if ( op [ 0 ] === 6 && _ . label < t [ 1 ] ) { _ . label = t [ 1 ] ; t = op ; break ; }
if ( t && _ . label < t [ 2 ] ) { _ . label = t [ 2 ] ; _ . ops . push ( op ) ; break ; }
if ( t [ 2 ] ) _ . ops . pop ( ) ;
_ . trys . pop ( ) ; continue ;
}
op = body . call ( thisArg , _ ) ;
} catch ( e ) { op = [ 6 , e ] ; y = 0 ; } finally { f = t = 0 ; }
if ( op [ 0 ] & 5 ) throw op [ 1 ] ; return { value : op [ 0 ] ? op [ 1 ] : void 0 , done : true } ;
}
}
var _ _createBinding = Object . create ? ( function ( o , m , k , k2 ) {
if ( k2 === undefined ) k2 = k ;
var desc = Object . getOwnPropertyDescriptor ( m , k ) ;
if ( ! desc || ( "get" in desc ? ! m . _ _esModule : desc . writable || desc . configurable ) ) {
desc = { enumerable : true , get : function ( ) { return m [ k ] ; } } ;
}
Object . defineProperty ( o , k2 , desc ) ;
} ) : ( function ( o , m , k , k2 ) {
if ( k2 === undefined ) k2 = k ;
o [ k2 ] = m [ k ] ;
} ) ;
function _ _exportStar ( m , o ) {
for ( var p in m ) if ( p !== "default" && ! Object . prototype . hasOwnProperty . call ( o , p ) ) _ _createBinding ( o , m , p ) ;
}
function _ _values ( o ) {
var s = typeof Symbol === "function" && Symbol . iterator , m = s && o [ s ] , i = 0 ;
if ( m ) return m . call ( o ) ;
if ( o && typeof o . length === "number" ) return {
next : function ( ) {
if ( o && i >= o . length ) o = void 0 ;
return { value : o && o [ i ++ ] , done : ! o } ;
}
} ;
throw new TypeError ( s ? "Object is not iterable." : "Symbol.iterator is not defined." ) ;
}
function _ _read ( o , n ) {
var m = typeof Symbol === "function" && o [ Symbol . iterator ] ;
if ( ! m ) return o ;
var i = m . call ( o ) , r , ar = [ ] , e ;
try {
while ( ( n === void 0 || n -- > 0 ) && ! ( r = i . next ( ) ) . done ) ar . push ( r . value ) ;
}
catch ( error ) { e = { error : error } ; }
finally {
try {
if ( r && ! r . done && ( m = i [ "return" ] ) ) m . call ( i ) ;
}
finally { if ( e ) throw e . error ; }
}
return ar ;
}
/** @deprecated */
function _ _spread ( ) {
for ( var ar = [ ] , i = 0 ; i < arguments . length ; i ++ )
ar = ar . concat ( _ _read ( arguments [ i ] ) ) ;
return ar ;
}
/** @deprecated */
function _ _spreadArrays ( ) {
for ( var s = 0 , i = 0 , il = arguments . length ; i < il ; i ++ ) s += arguments [ i ] . length ;
for ( var r = Array ( s ) , k = 0 , i = 0 ; i < il ; i ++ )
for ( var a = arguments [ i ] , j = 0 , jl = a . length ; j < jl ; j ++ , k ++ )
r [ k ] = a [ j ] ;
return r ;
}
function _ _spreadArray ( to , from , pack ) {
if ( pack || arguments . length === 2 ) for ( var i = 0 , l = from . length , ar ; i < l ; i ++ ) {
if ( ar || ! ( i in from ) ) {
if ( ! ar ) ar = Array . prototype . slice . call ( from , 0 , i ) ;
ar [ i ] = from [ i ] ;
}
}
return to . concat ( ar || Array . prototype . slice . call ( from ) ) ;
}
function _ _await ( v ) {
return this instanceof _ _await ? ( this . v = v , this ) : new _ _await ( v ) ;
}
function _ _asyncGenerator ( thisArg , _arguments , generator ) {
if ( ! Symbol . asyncIterator ) throw new TypeError ( "Symbol.asyncIterator is not defined." ) ;
var g = generator . apply ( thisArg , _arguments || [ ] ) , i , q = [ ] ;
return i = { } , verb ( "next" ) , verb ( "throw" ) , verb ( "return" ) , i [ Symbol . asyncIterator ] = function ( ) { return this ; } , i ;
function verb ( n ) { if ( g [ n ] ) i [ n ] = function ( v ) { return new Promise ( function ( a , b ) { q . push ( [ n , v , a , b ] ) > 1 || resume ( n , v ) ; } ) ; } ; }
function resume ( n , v ) { try { step ( g [ n ] ( v ) ) ; } catch ( e ) { settle ( q [ 0 ] [ 3 ] , e ) ; } }
function step ( r ) { r . value instanceof _ _await ? Promise . resolve ( r . value . v ) . then ( fulfill , reject ) : settle ( q [ 0 ] [ 2 ] , r ) ; }
function fulfill ( value ) { resume ( "next" , value ) ; }
function reject ( value ) { resume ( "throw" , value ) ; }
function settle ( f , v ) { if ( f ( v ) , q . shift ( ) , q . length ) resume ( q [ 0 ] [ 0 ] , q [ 0 ] [ 1 ] ) ; }
}
function _ _asyncDelegator ( o ) {
var i , p ;
return i = { } , verb ( "next" ) , verb ( "throw" , function ( e ) { throw e ; } ) , verb ( "return" ) , i [ Symbol . iterator ] = function ( ) { return this ; } , i ;
function verb ( n , f ) { i [ n ] = o [ n ] ? function ( v ) { return ( p = ! p ) ? { value : _ _await ( o [ n ] ( v ) ) , done : false } : f ? f ( v ) : v ; } : f ; }
}
function _ _asyncValues ( o ) {
if ( ! Symbol . asyncIterator ) throw new TypeError ( "Symbol.asyncIterator is not defined." ) ;
var m = o [ Symbol . asyncIterator ] , i ;
return m ? m . call ( o ) : ( o = typeof _ _values === "function" ? _ _values ( o ) : o [ Symbol . iterator ] ( ) , i = { } , verb ( "next" ) , verb ( "throw" ) , verb ( "return" ) , i [ Symbol . asyncIterator ] = function ( ) { return this ; } , i ) ;
function verb ( n ) { i [ n ] = o [ n ] && function ( v ) { return new Promise ( function ( resolve , reject ) { v = o [ n ] ( v ) , settle ( resolve , reject , v . done , v . value ) ; } ) ; } ; }
function settle ( resolve , reject , d , v ) { Promise . resolve ( v ) . then ( function ( v ) { resolve ( { value : v , done : d } ) ; } , reject ) ; }
}
function _ _makeTemplateObject ( cooked , raw ) {
if ( Object . defineProperty ) { Object . defineProperty ( cooked , "raw" , { value : raw } ) ; } else { cooked . raw = raw ; }
return cooked ;
} ;
var _ _setModuleDefault = Object . create ? ( function ( o , v ) {
Object . defineProperty ( o , "default" , { enumerable : true , value : v } ) ;
} ) : function ( o , v ) {
o [ "default" ] = v ;
} ;
function _ _importStar ( mod ) {
if ( mod && mod . _ _esModule ) return mod ;
var result = { } ;
if ( mod != null ) for ( var k in mod ) if ( k !== "default" && Object . prototype . hasOwnProperty . call ( mod , k ) ) _ _createBinding ( result , mod , k ) ;
_ _setModuleDefault ( result , mod ) ;
return result ;
}
function _ _importDefault ( mod ) {
return ( mod && mod . _ _esModule ) ? mod : { default : mod } ;
}
function _ _classPrivateFieldGet ( receiver , state , kind , f ) {
if ( kind === "a" && ! f ) throw new TypeError ( "Private accessor was defined without a getter" ) ;
if ( typeof state === "function" ? receiver !== state || ! f : ! state . has ( receiver ) ) throw new TypeError ( "Cannot read private member from an object whose class did not declare it" ) ;
return kind === "m" ? f : kind === "a" ? f . call ( receiver ) : f ? f . value : state . get ( receiver ) ;
}
function _ _classPrivateFieldSet ( receiver , state , value , kind , f ) {
if ( kind === "m" ) throw new TypeError ( "Private method is not writable" ) ;
if ( kind === "a" && ! f ) throw new TypeError ( "Private accessor was defined without a setter" ) ;
if ( typeof state === "function" ? receiver !== state || ! f : ! state . has ( receiver ) ) throw new TypeError ( "Cannot write private member to an object whose class did not declare it" ) ;
return ( kind === "a" ? f . call ( receiver , value ) : f ? f . value = value : state . set ( receiver , value ) ) , value ;
}
function _ _classPrivateFieldIn ( state , receiver ) {
if ( receiver === null || ( typeof receiver !== "object" && typeof receiver !== "function" ) ) throw new TypeError ( "Cannot use 'in' operator on non-object" ) ;
return typeof state === "function" ? receiver === state : state . has ( receiver ) ;
}
function _ _addDisposableResource ( env , value , async ) {
if ( value !== null && value !== void 0 ) {
if ( typeof value !== "object" ) throw new TypeError ( "Object expected." ) ;
var dispose ;
if ( async ) {
if ( ! Symbol . asyncDispose ) throw new TypeError ( "Symbol.asyncDispose is not defined." ) ;
dispose = value [ Symbol . asyncDispose ] ;
}
if ( dispose === void 0 ) {
if ( ! Symbol . dispose ) throw new TypeError ( "Symbol.dispose is not defined." ) ;
dispose = value [ Symbol . dispose ] ;
}
if ( typeof dispose !== "function" ) throw new TypeError ( "Object not disposable." ) ;
env . stack . push ( { value : value , dispose : dispose , async : async } ) ;
}
else if ( async ) {
env . stack . push ( { async : true } ) ;
}
return value ;
}
var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function ( error , suppressed , message ) {
var e = new Error ( message ) ;
return e . name = "SuppressedError" , e . error = error , e . suppressed = suppressed , e ;
} ;
function _ _disposeResources ( env ) {
function fail ( e ) {
env . error = env . hasError ? new _SuppressedError ( e , env . error , "An error was suppressed during disposal." ) : e ;
env . hasError = true ;
}
function next ( ) {
while ( env . stack . length ) {
var rec = env . stack . pop ( ) ;
try {
var result = rec . dispose && rec . dispose . call ( rec . value ) ;
if ( rec . async ) return Promise . resolve ( result ) . then ( next , function ( e ) { fail ( e ) ; return next ( ) ; } ) ;
}
catch ( e ) {
fail ( e ) ;
}
}
if ( env . hasError ) throw env . error ;
}
return next ( ) ;
}
/* harmony default export */ var tslib _es6 = ( {
_ _extends ,
_ _assign ,
_ _rest ,
_ _decorate ,
_ _param ,
_ _metadata ,
_ _awaiter ,
_ _generator ,
_ _createBinding ,
_ _exportStar ,
_ _values ,
_ _read ,
_ _spread ,
_ _spreadArrays ,
_ _spreadArray ,
_ _await ,
_ _asyncGenerator ,
_ _asyncDelegator ,
_ _asyncValues ,
_ _makeTemplateObject ,
_ _importStar ,
_ _importDefault ,
_ _classPrivateFieldGet ,
_ _classPrivateFieldSet ,
_ _classPrivateFieldIn ,
_ _addDisposableResource ,
_ _disposeResources ,
} ) ;
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/lower-case/dist.es2015/index.js
/ * *
* Source : ftp : //ftp.unicode.org/Public/UCD/latest/ucd/SpecialCasing.txt
* /
var SUPPORTED _LOCALE = {
tr : {
regexp : /\u0130|\u0049|\u0049\u0307/g ,
map : {
İ : "\u0069" ,
I : "\u0131" ,
I ̇ : "\u0069" ,
} ,
} ,
az : {
regexp : /\u0130/g ,
map : {
İ : "\u0069" ,
I : "\u0131" ,
I ̇ : "\u0069" ,
} ,
} ,
lt : {
regexp : /\u0049|\u004A|\u012E|\u00CC|\u00CD|\u0128/g ,
map : {
I : "\u0069\u0307" ,
J : "\u006A\u0307" ,
Į : "\u012F\u0307" ,
Ì : "\u0069\u0307\u0300" ,
Í : "\u0069\u0307\u0301" ,
Ĩ : "\u0069\u0307\u0303" ,
} ,
} ,
} ;
/ * *
* Localized lower case .
* /
function localeLowerCase ( str , locale ) {
var lang = SUPPORTED _LOCALE [ locale . toLowerCase ( ) ] ;
if ( lang )
return lowerCase ( str . replace ( lang . regexp , function ( m ) { return lang . map [ m ] ; } ) ) ;
return lowerCase ( str ) ;
}
/ * *
* Lower case as a function .
* /
function lowerCase ( str ) {
return str . toLowerCase ( ) ;
}
; // CONCATENATED MODULE: ./node_modules/no-case/dist.es2015/index.js
// Support camel case ("camelCase" -> "camel Case" and "CAMELCase" -> "CAMEL Case").
var DEFAULT _SPLIT _REGEXP = [ /([a-z0-9])([A-Z])/g , /([A-Z])([A-Z][a-z])/g ] ;
// Remove all non-word characters.
var DEFAULT _STRIP _REGEXP = /[^A-Z0-9]+/gi ;
/ * *
* Normalize the string into something other libraries can manipulate easier .
* /
function noCase ( input , options ) {
if ( options === void 0 ) { options = { } ; }
var _a = options . splitRegexp , splitRegexp = _a === void 0 ? DEFAULT _SPLIT _REGEXP : _a , _b = options . stripRegexp , stripRegexp = _b === void 0 ? DEFAULT _STRIP _REGEXP : _b , _c = options . transform , transform = _c === void 0 ? lowerCase : _c , _d = options . delimiter , delimiter = _d === void 0 ? " " : _d ;
var result = replace ( replace ( input , splitRegexp , "$1\0$2" ) , stripRegexp , "\0" ) ;
var start = 0 ;
var end = result . length ;
// Trim the delimiter from around the output string.
while ( result . charAt ( start ) === "\0" )
start ++ ;
while ( result . charAt ( end - 1 ) === "\0" )
end -- ;
// Transform each token independently.
return result . slice ( start , end ) . split ( "\0" ) . map ( transform ) . join ( delimiter ) ;
}
/ * *
* Replace ` re ` in the input string with the replacement value .
* /
function replace ( input , re , value ) {
if ( re instanceof RegExp )
return input . replace ( re , value ) ;
return re . reduce ( function ( input , re ) { return input . replace ( re , value ) ; } , input ) ;
}
; // CONCATENATED MODULE: ./node_modules/upper-case-first/dist.es2015/index.js
/ * *
* Upper case the first character of an input string .
* /
function upperCaseFirst ( input ) {
return input . charAt ( 0 ) . toUpperCase ( ) + input . substr ( 1 ) ;
}
; // CONCATENATED MODULE: ./node_modules/capital-case/dist.es2015/index.js
function capitalCaseTransform ( input ) {
return upperCaseFirst ( input . toLowerCase ( ) ) ;
}
function capitalCase ( input , options ) {
if ( options === void 0 ) { options = { } ; }
return noCase ( input , _ _assign ( { delimiter : " " , transform : capitalCaseTransform } , options ) ) ;
}
; // CONCATENATED MODULE: ./node_modules/pascal-case/dist.es2015/index.js
function pascalCaseTransform ( input , index ) {
var firstChar = input . charAt ( 0 ) ;
var lowerChars = input . substr ( 1 ) . toLowerCase ( ) ;
if ( index > 0 && firstChar >= "0" && firstChar <= "9" ) {
return "_" + firstChar + lowerChars ;
}
return "" + firstChar . toUpperCase ( ) + lowerChars ;
}
function dist _es2015 _pascalCaseTransformMerge ( input ) {
return input . charAt ( 0 ) . toUpperCase ( ) + input . slice ( 1 ) . toLowerCase ( ) ;
}
function pascalCase ( input , options ) {
if ( options === void 0 ) { options = { } ; }
return noCase ( input , _ _assign ( { delimiter : "" , transform : pascalCaseTransform } , options ) ) ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: external ["wp","apiFetch"]
var external _wp _apiFetch _namespaceObject = window [ "wp" ] [ "apiFetch" ] ;
var external _wp _apiFetch _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( external _wp _apiFetch _namespaceObject ) ;
; // CONCATENATED MODULE: external ["wp","i18n"]
var external _wp _i18n _namespaceObject = window [ "wp" ] [ "i18n" ] ;
2023-06-28 03:04:13 -04:00
; // CONCATENATED MODULE: ./node_modules/uuid/dist/esm-browser/rng.js
2022-04-11 08:04:30 -04:00
// Unique ID creation requires a high quality random # generator. In the browser we therefore
// require the crypto API and do not support built-in fallback to lower quality random number
// generators (like Math.random()).
2022-09-23 16:04:13 -04:00
var getRandomValues ;
var rnds8 = new Uint8Array ( 16 ) ;
2022-04-11 08:04:30 -04:00
function rng ( ) {
// lazy load so that environments that need to polyfill have a chance to do so
if ( ! getRandomValues ) {
2022-09-23 16:04:13 -04:00
// getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also,
// find the complete implementation of crypto (msCrypto) on IE11.
getRandomValues = typeof crypto !== 'undefined' && crypto . getRandomValues && crypto . getRandomValues . bind ( crypto ) || typeof msCrypto !== 'undefined' && typeof msCrypto . getRandomValues === 'function' && msCrypto . getRandomValues . bind ( msCrypto ) ;
2022-04-11 08:04:30 -04:00
if ( ! getRandomValues ) {
throw new Error ( 'crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported' ) ;
}
}
return getRandomValues ( rnds8 ) ;
}
2023-06-28 03:04:13 -04:00
; // CONCATENATED MODULE: ./node_modules/uuid/dist/esm-browser/regex.js
2022-09-23 16:04:13 -04:00
/* harmony default export */ var regex = ( /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i ) ;
2023-06-28 03:04:13 -04:00
; // CONCATENATED MODULE: ./node_modules/uuid/dist/esm-browser/validate.js
2022-09-23 16:04:13 -04:00
function validate ( uuid ) {
return typeof uuid === 'string' && regex . test ( uuid ) ;
}
/* harmony default export */ var esm _browser _validate = ( validate ) ;
2023-06-28 03:04:13 -04:00
; // CONCATENATED MODULE: ./node_modules/uuid/dist/esm-browser/stringify.js
2022-04-11 08:04:30 -04:00
/ * *
* Convert array of 16 byte values to UUID string format of the form :
* XXXXXXXX - XXXX - XXXX - XXXX - XXXXXXXXXXXX
* /
2022-09-23 16:04:13 -04:00
var byteToHex = [ ] ;
2022-04-11 08:04:30 -04:00
2022-09-23 16:04:13 -04:00
for ( var i = 0 ; i < 256 ; ++ i ) {
byteToHex . push ( ( i + 0x100 ) . toString ( 16 ) . substr ( 1 ) ) ;
2022-04-11 08:04:30 -04:00
}
2022-09-23 16:04:13 -04:00
function stringify ( arr ) {
var offset = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : 0 ;
2022-04-11 08:04:30 -04:00
// Note: Be careful editing this code! It's been tuned for performance
// and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
2022-09-23 16:04:13 -04:00
var uuid = ( byteToHex [ arr [ offset + 0 ] ] + byteToHex [ arr [ offset + 1 ] ] + byteToHex [ arr [ offset + 2 ] ] + byteToHex [ arr [ offset + 3 ] ] + '-' + byteToHex [ arr [ offset + 4 ] ] + byteToHex [ arr [ offset + 5 ] ] + '-' + byteToHex [ arr [ offset + 6 ] ] + byteToHex [ arr [ offset + 7 ] ] + '-' + byteToHex [ arr [ offset + 8 ] ] + byteToHex [ arr [ offset + 9 ] ] + '-' + byteToHex [ arr [ offset + 10 ] ] + byteToHex [ arr [ offset + 11 ] ] + byteToHex [ arr [ offset + 12 ] ] + byteToHex [ arr [ offset + 13 ] ] + byteToHex [ arr [ offset + 14 ] ] + byteToHex [ arr [ offset + 15 ] ] ) . toLowerCase ( ) ; // Consistency check for valid UUID. If this throws, it's likely due to one
2022-04-11 08:04:30 -04:00
// of the following:
// - One or more input array values don't map to a hex octet (leading to
// "undefined" in the uuid)
// - Invalid input values for the RFC `version` or `variant` fields
2022-09-23 16:04:13 -04:00
if ( ! esm _browser _validate ( uuid ) ) {
2022-04-11 08:04:30 -04:00
throw TypeError ( 'Stringified UUID is invalid' ) ;
}
return uuid ;
}
2022-09-23 16:04:13 -04:00
/* harmony default export */ var esm _browser _stringify = ( stringify ) ;
2023-06-28 03:04:13 -04:00
; // CONCATENATED MODULE: ./node_modules/uuid/dist/esm-browser/v4.js
2022-04-11 08:04:30 -04:00
2022-09-23 15:55:30 -04:00
2022-04-11 08:04:30 -04:00
function v4 ( options , buf , offset ) {
options = options || { } ;
2022-09-23 16:04:13 -04:00
var rnds = options . random || ( options . rng || rng ) ( ) ; // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
2022-04-11 08:04:30 -04:00
rnds [ 6 ] = rnds [ 6 ] & 0x0f | 0x40 ;
rnds [ 8 ] = rnds [ 8 ] & 0x3f | 0x80 ; // Copy bytes to buffer, if provided
2021-11-08 09:29:21 -05:00
2022-04-11 08:04:30 -04:00
if ( buf ) {
offset = offset || 0 ;
2018-12-17 22:14:52 -05:00
2022-09-23 16:04:13 -04:00
for ( var i = 0 ; i < 16 ; ++ i ) {
2022-04-11 08:04:30 -04:00
buf [ offset + i ] = rnds [ i ] ;
}
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
return buf ;
}
2020-10-13 09:10:30 -04:00
2022-09-23 16:04:13 -04:00
return esm _browser _stringify ( rnds ) ;
2022-04-11 08:04:30 -04:00
}
2021-11-08 09:29:21 -05:00
2022-04-11 08:04:30 -04:00
/* harmony default export */ var esm _browser _v4 = ( v4 ) ;
; // CONCATENATED MODULE: external ["wp","url"]
var external _wp _url _namespaceObject = window [ "wp" ] [ "url" ] ;
; // CONCATENATED MODULE: external ["wp","deprecated"]
var external _wp _deprecated _namespaceObject = window [ "wp" ] [ "deprecated" ] ;
var external _wp _deprecated _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( external _wp _deprecated _namespaceObject ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/queried-data/actions.js
2019-09-19 11:19:18 -04:00
/ * *
2020-06-26 09:33:47 -04:00
* Returns an action object used in signalling that items have been received .
2019-09-19 11:19:18 -04:00
*
2021-01-27 21:04:13 -05:00
* @ param { Array } items Items received .
* @ param { ? Object } edits Optional edits to reset .
2019-09-19 11:19:18 -04:00
*
2020-06-26 09:33:47 -04:00
* @ return { Object } Action object .
2019-09-19 11:19:18 -04:00
* /
2021-01-27 21:04:13 -05:00
function receiveItems ( items , edits ) {
2020-06-26 09:33:47 -04:00
return {
type : 'RECEIVE_ITEMS' ,
2023-02-07 02:04:52 -05:00
items : Array . isArray ( items ) ? items : [ items ] ,
2021-01-27 21:04:13 -05:00
persistedEdits : edits
2020-06-26 09:33:47 -04:00
} ;
2019-09-19 11:19:18 -04:00
}
2020-10-13 09:10:30 -04:00
/ * *
* Returns an action object used in signalling that entity records have been
* deleted and they need to be removed from entities state .
*
2022-04-12 11:12:47 -04:00
* @ param { string } kind Kind of the removed entities .
* @ param { string } name Name of the removed entities .
* @ param { Array | number | string } records Record IDs of the removed entities .
* @ param { boolean } invalidateCache Controls whether we want to invalidate the cache .
2020-10-13 09:10:30 -04:00
* @ return { Object } Action object .
* /
2023-06-27 10:24:19 -04:00
function removeItems ( kind , name , records , invalidateCache = false ) {
2020-10-13 09:10:30 -04:00
return {
type : 'REMOVE_ITEMS' ,
2023-02-07 02:04:52 -05:00
itemIds : Array . isArray ( records ) ? records : [ records ] ,
2021-05-19 11:09:27 -04:00
kind ,
name ,
invalidateCache
2020-10-13 09:10:30 -04:00
} ;
}
2018-12-13 23:41:57 -05:00
/ * *
2020-06-26 09:33:47 -04:00
* Returns an action object used in signalling that queried data has been
* received .
2018-12-17 22:14:52 -05:00
*
2020-06-26 09:33:47 -04:00
* @ param { Array } items Queried items received .
* @ param { ? Object } query Optional query object .
2021-01-27 21:04:13 -05:00
* @ param { ? Object } edits Optional edits to reset .
2019-10-15 11:37:08 -04:00
*
2020-06-26 09:33:47 -04:00
* @ return { Object } Action object .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
function receiveQueriedItems ( items , query = { } , edits ) {
2021-05-19 11:09:27 -04:00
return { ... receiveItems ( items , edits ) ,
query
} ;
2020-06-26 09:33:47 -04:00
}
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/batch/default-processor.js
2018-12-13 23:41:57 -05:00
/ * *
2020-10-13 09:10:30 -04:00
* WordPress dependencies
2019-10-15 11:37:08 -04:00
* /
2020-10-13 09:10:30 -04:00
/ * *
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
* Maximum number of requests to place in a single batch request . Obtained by
* sending a preflight OPTIONS request to / batch / v1 / .
*
* @ type { number ? }
* /
let maxItems = null ;
2022-09-20 11:43:29 -04:00
function chunk ( arr , chunkSize ) {
const tmp = [ ... arr ] ;
const cache = [ ] ;
while ( tmp . length ) {
cache . push ( tmp . splice ( 0 , chunkSize ) ) ;
}
return cache ;
}
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
/ * *
* Default batch processor . Sends its input requests to / batch / v1 .
2021-02-02 00:17:13 -05:00
*
* @ param { Array } requests List of API requests to perform at once .
*
* @ return { Promise } Promise that resolves to a list of objects containing
2023-02-07 02:04:52 -05:00
* either ` output ` ( if that request was successful ) or ` error `
2021-02-02 00:17:13 -05:00
* ( if not ) .
* /
2022-09-20 11:43:29 -04:00
2021-05-19 11:09:27 -04:00
async function defaultProcessor ( requests ) {
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
if ( maxItems === null ) {
const preflightResponse = await external _wp _apiFetch _default ( ) ( {
path : '/batch/v1' ,
method : 'OPTIONS'
} ) ;
maxItems = preflightResponse . endpoints [ 0 ] . args . requests . maxItems ;
2021-05-19 11:09:27 -04:00
}
2021-02-02 00:17:13 -05:00
2022-04-12 11:12:47 -04:00
const results = [ ] ; // @ts-ignore We would have crashed or never gotten to this point if we hadn't received the maxItems count.
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
2022-09-20 11:43:29 -04:00
for ( const batchRequests of chunk ( requests , maxItems ) ) {
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
const batchResponse = await external _wp _apiFetch _default ( ) ( {
path : '/batch/v1' ,
method : 'POST' ,
data : {
validation : 'require-all-validate' ,
requests : batchRequests . map ( request => ( {
path : request . path ,
body : request . data ,
// Rename 'data' to 'body'.
method : request . method ,
headers : request . headers
} ) )
}
} ) ;
let batchResults ;
2021-02-02 00:17:13 -05:00
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
if ( batchResponse . failed ) {
batchResults = batchResponse . responses . map ( response => ( {
2023-06-27 10:24:19 -04:00
error : response ? . body
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
} ) ) ;
2021-05-19 11:09:27 -04:00
} else {
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
batchResults = batchResponse . responses . map ( response => {
const result = { } ;
if ( response . status >= 200 && response . status < 300 ) {
result . output = response . body ;
} else {
result . error = response . body ;
}
return result ;
} ) ;
2021-05-19 11:09:27 -04:00
}
2021-02-02 00:17:13 -05:00
Editor: Update block editor packages for WordPress 5.8.1.
The following packages were updated:
- @wordpress/a11y to `3.1.2`
- @wordpress/annotations to `2.1.6`
- @wordpress/api-fetch to `5.1.2`
- @wordpress/autop to `3.1.2`
- @wordpress/babel-preset-default to `6.2.1`
- @wordpress/blob to `3.1.2`
- @wordpress/block-directory to `2.1.21`
- @wordpress/block-editor to `6.1.14`
- @wordpress/block-library to `3.2.19`
- @wordpress/block-serialization-default-parser to `4.1.2`
- @wordpress/blocks to `9.1.8`
- @wordpress/components to `14.1.11`
- @wordpress/compose to `4.1.6`
- @wordpress/core-data to `3.1.12`
- @wordpress/customize-widgets to `1.0.20`
- @wordpress/data-controls to `2.1.6`
- @wordpress/data to `5.1.6`
- @wordpress/date to `4.1.2`
- @wordpress/deprecated to `3.1.2`
- @wordpress/dom-ready to `3.1.2`
- @wordpress/dom to `3.1.5`
- @wordpress/e2e-test-utils to `5.3.1`
- @wordpress/edit-post to `4.1.21`
- @wordpress/edit-widgets to `2.1.21`
- @wordpress/editor to `10.1.17`
- @wordpress/element to `3.1.2`
- @wordpress/escape-html to `2.1.2`
- @wordpress/format-library to `2.1.14`
- @wordpress/html-entities to `3.1.2`
- @wordpress/i18n to `4.1.2`
- @wordpress/icons to `4.0.3`
- @wordpress/interface to `3.1.12`
- @wordpress/keyboard-shortcuts to `2.1.7`
- @wordpress/keycodes to `3.1.2`
- @wordpress/list-reusable-blocks to `2.1.11`
- @wordpress/media-utils to `2.1.2`
- @wordpress/notices to `3.1.6`
- @wordpress/nux to `4.1.11`
- @wordpress/plugins to `3.1.6`
- @wordpress/primitives to `2.1.2`
- @wordpress/priority-queue to `2.1.2`
- @wordpress/react-i18n to `2.1.2`
- @wordpress/redux-routine to `4.1.2`
- @wordpress/reusable-blocks to `2.1.17`
- @wordpress/rich-text to `4.1.6`
- @wordpress/scripts to `16.1.5`
- @wordpress/server-side-render to `2.1.12`
- @wordpress/shortcode to `3.1.2`
- @wordpress/url to `3.1.2`
- @wordpress/viewport to `3.1.6`
- @wordpress/warning to `2.1.2`
- @wordpress/widgets to `1.1.19`
- @wordpress/wordcount to `3.1.2`
Props oandregal, juanmaguitar, gziolo, jblz, talldanwp, ribaricplusplus, peterwisoncc, youknowriad, paaljoachim, kreppar, ellatrix, aristath, walbo, ajlende, kevin940726, mamaduka, ntsekouras, toro_unit, mkaz, joen, noisysocks, zieladam, andraganescu, antonvlasenko, terraling, dariak, vladytimy, circlecube, desrosj.
Fixes #54052, #52818.
Built from https://develop.svn.wordpress.org/trunk@51719
git-svn-id: http://core.svn.wordpress.org/trunk@51325 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-09-01 15:08:24 -04:00
results . push ( ... batchResults ) ;
}
return results ;
2021-02-02 00:17:13 -05:00
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/batch/create-batch.js
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
/ * *
* Creates a batch , which can be used to combine multiple API requests into one
* API request using the WordPress batch processing API ( / v 1 / b a t c h ) .
*
* ` ` `
* const batch = createBatch ( ) ;
* const dunePromise = batch . add ( {
* path : '/v1/books' ,
* method : 'POST' ,
* data : { title : 'Dune' }
* } ) ;
* const lotrPromise = batch . add ( {
* path : '/v1/books' ,
* method : 'POST' ,
* data : { title : 'Lord of the Rings' }
* } ) ;
* const isSuccess = await batch . run ( ) ; // Sends one POST to /v1/batch.
* if ( isSuccess ) {
* console . log (
* 'Saved two books:' ,
* await dunePromise ,
* await lotrPromise
* ) ;
* }
* ` ` `
*
* @ param { Function } [ processor ] Processor function . Can be used to replace the
* default functionality which is to send an API
* request to / v1 / batch . Is given an array of
* inputs and must return a promise that
* resolves to an array of objects containing
* either ` output ` or ` error ` .
* /
2023-06-27 10:24:19 -04:00
function createBatch ( processor = defaultProcessor ) {
2021-05-19 11:09:27 -04:00
let lastId = 0 ;
2022-04-12 11:12:47 -04:00
/** @type {Array<{ input: any; resolve: ( value: any ) => void; reject: ( error: any ) => void }>} */
2021-05-19 11:09:27 -04:00
let queue = [ ] ;
const pending = new ObservableSet ( ) ;
2021-02-02 00:17:13 -05:00
return {
/ * *
* Adds an input to the batch and returns a promise that is resolved or
* rejected when the input is processed by ` batch.run() ` .
*
* You may also pass a thunk which allows inputs to be added
* asychronously .
*
* ` ` `
* // Both are allowed:
* batch . add ( { path : '/v1/books' , ... } ) ;
* batch . add ( ( add ) => add ( { path : '/v1/books' , ... } ) ) ;
* ` ` `
*
* If a thunk is passed , ` batch.run() ` will pause until either :
*
* - The thunk calls its ` add ` argument , or ;
* - The thunk returns a promise and that promise resolves , or ;
* - The thunk returns a non - promise .
*
* @ param { any | Function } inputOrThunk Input to add or thunk to execute .
2021-11-08 09:29:21 -05:00
*
2021-02-02 00:17:13 -05:00
* @ return { Promise | any } If given an input , returns a promise that
* is resolved or rejected when the batch is
* processed . If given a thunk , returns the return
* value of that thunk .
* /
2021-05-19 11:09:27 -04:00
add ( inputOrThunk ) {
const id = ++ lastId ;
2021-02-02 00:17:13 -05:00
pending . add ( id ) ;
2021-05-19 11:09:27 -04:00
const add = input => new Promise ( ( resolve , reject ) => {
queue . push ( {
input ,
resolve ,
reject
2021-02-02 00:17:13 -05:00
} ) ;
2021-05-19 11:09:27 -04:00
pending . delete ( id ) ;
} ) ;
2021-02-02 00:17:13 -05:00
2022-09-20 11:43:29 -04:00
if ( typeof inputOrThunk === 'function' ) {
2021-05-19 11:09:27 -04:00
return Promise . resolve ( inputOrThunk ( add ) ) . finally ( ( ) => {
2021-02-02 00:17:13 -05:00
pending . delete ( id ) ;
} ) ;
}
return add ( inputOrThunk ) ;
} ,
/ * *
* Runs the batch . This calls ` batchProcessor ` and resolves or rejects
* all promises returned by ` add() ` .
*
2022-04-12 11:12:47 -04:00
* @ return { Promise < boolean > } A promise that resolves to a boolean that is true
2021-02-02 00:17:13 -05:00
* if the processor returned no errors .
* /
2021-05-19 11:09:27 -04:00
async run ( ) {
if ( pending . size ) {
await new Promise ( resolve => {
const unsubscribe = pending . subscribe ( ( ) => {
if ( ! pending . size ) {
unsubscribe ( ) ;
2022-04-12 11:12:47 -04:00
resolve ( undefined ) ;
2021-02-02 00:17:13 -05:00
}
2021-05-19 11:09:27 -04:00
} ) ;
} ) ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
let results ;
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
try {
2023-06-27 10:24:19 -04:00
results = await processor ( queue . map ( ( {
input
} ) => input ) ) ;
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
if ( results . length !== queue . length ) {
throw new Error ( 'run: Array returned by processor must be same size as input array.' ) ;
}
} catch ( error ) {
for ( const {
reject
} of queue ) {
reject ( error ) ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
throw error ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
let isSuccess = true ;
2022-09-20 11:43:29 -04:00
results . forEach ( ( result , key ) => {
const queueItem = queue [ key ] ;
2022-04-12 11:12:47 -04:00
2023-06-27 10:24:19 -04:00
if ( result ? . error ) {
queueItem ? . reject ( result . error ) ;
2021-05-19 11:09:27 -04:00
isSuccess = false ;
} else {
var _result$output ;
2021-02-02 00:17:13 -05:00
2023-06-27 10:24:19 -04:00
queueItem ? . resolve ( ( _result$output = result ? . output ) !== null && _result$output !== void 0 ? _result$output : result ) ;
2021-05-19 11:09:27 -04:00
}
2022-09-20 11:43:29 -04:00
} ) ;
2021-05-19 11:09:27 -04:00
queue = [ ] ;
2021-02-02 00:17:13 -05:00
return isSuccess ;
}
2021-05-19 11:09:27 -04:00
} ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
class ObservableSet {
2023-06-27 10:24:19 -04:00
constructor ( ... args ) {
2021-05-19 11:09:27 -04:00
this . set = new Set ( ... args ) ;
this . subscribers = new Set ( ) ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
get size ( ) {
return this . set . size ;
}
2022-04-12 11:12:47 -04:00
add ( value ) {
this . set . add ( value ) ;
2021-05-19 11:09:27 -04:00
this . subscribers . forEach ( subscriber => subscriber ( ) ) ;
return this ;
}
2022-04-12 11:12:47 -04:00
delete ( value ) {
const isSuccess = this . set . delete ( value ) ;
2021-05-19 11:09:27 -04:00
this . subscribers . forEach ( subscriber => subscriber ( ) ) ;
return isSuccess ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
subscribe ( subscriber ) {
this . subscribers . add ( subscriber ) ;
return ( ) => {
this . subscribers . delete ( subscriber ) ;
} ;
}
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
}
2021-02-02 00:17:13 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/name.js
2021-02-02 00:17:13 -05:00
/ * *
2021-11-08 09:29:21 -05:00
* The reducer key used by core data in store registration .
* This is defined in a separate file to avoid cycle - dependency
*
* @ type { string }
2021-02-02 00:17:13 -05:00
* /
2021-11-08 09:29:21 -05:00
const STORE _NAME = 'core' ;
2021-02-02 00:17:13 -05:00
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/private-selectors.js
/ * *
* Internal dependencies
* /
/ * *
* Returns the previous edit from the current undo offset
* for the entity records edits history , if any .
*
* @ param state State tree .
*
* @ return The edit .
* /
function getUndoEdits ( state ) {
return state . undo . list [ state . undo . list . length - 1 + state . undo . offset ] ;
}
/ * *
* Returns the next edit from the current undo offset
* for the entity records edits history , if any .
*
* @ param state State tree .
*
* @ return The edit .
* /
function getRedoEdits ( state ) {
return state . undo . list [ state . undo . list . length + state . undo . offset ] ;
}
2023-07-03 05:14:26 -04:00
/ * *
* Retrieve the fallback Navigation .
*
* @ param state Data state .
* @ return The ID for the fallback Navigation post .
* /
function getNavigationFallbackId ( state ) {
return state . navigationFallbackId ;
}
2023-06-27 10:24:19 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/actions.js
2021-02-02 00:17:13 -05:00
/ * *
* External dependencies
* /
/ * *
* WordPress dependencies
2020-10-13 09:10:30 -04:00
* /
2019-10-15 11:37:08 -04:00
2021-01-27 21:04:13 -05:00
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2023-06-27 10:24:19 -04:00
2019-10-15 11:37:08 -04:00
/ * *
* Returns an action object used in signalling that authors have been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ param { string } queryID Query ID .
* @ param { Array | Object } users Users received .
2018-12-13 23:41:57 -05:00
*
* @ return { Object } Action object .
* /
2019-10-15 11:37:08 -04:00
function receiveUserQuery ( queryID , users ) {
2018-12-13 23:41:57 -05:00
return {
2019-10-15 11:37:08 -04:00
type : 'RECEIVE_USER_QUERY' ,
2023-02-07 02:04:52 -05:00
users : Array . isArray ( users ) ? users : [ users ] ,
2021-05-19 11:09:27 -04:00
queryID
2018-12-13 23:41:57 -05:00
} ;
}
/ * *
2019-10-15 11:37:08 -04:00
* Returns an action used in signalling that the current user has been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ param { Object } currentUser Current user object .
2018-12-13 23:41:57 -05:00
*
* @ return { Object } Action object .
* /
2019-10-15 11:37:08 -04:00
function receiveCurrentUser ( currentUser ) {
return {
type : 'RECEIVE_CURRENT_USER' ,
2021-05-19 11:09:27 -04:00
currentUser
2019-10-15 11:37:08 -04:00
} ;
2018-12-13 23:41:57 -05:00
}
/ * *
2019-10-15 11:37:08 -04:00
* Returns an action object used in adding new entities .
*
2021-11-08 09:29:21 -05:00
* @ param { Array } entities Entities received .
2019-10-15 11:37:08 -04:00
*
* @ return { Object } Action object .
2018-12-13 23:41:57 -05:00
* /
2019-10-15 11:37:08 -04:00
function addEntities ( entities ) {
return {
type : 'ADD_ENTITIES' ,
2021-05-19 11:09:27 -04:00
entities
2019-10-15 11:37:08 -04:00
} ;
}
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns an action object used in signalling that entity records have been received .
*
2022-04-12 11:12:47 -04:00
* @ param { string } kind Kind of the received entity record .
* @ param { string } name Name of the received entity record .
2019-10-15 11:37:08 -04:00
* @ param { Array | Object } records Records received .
* @ param { ? Object } query Query Object .
2021-01-27 21:04:13 -05:00
* @ param { ? boolean } invalidateCache Should invalidate query caches .
* @ param { ? Object } edits Edits to reset .
2019-10-15 11:37:08 -04:00
* @ return { Object } Action object .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
function receiveEntityRecords ( kind , name , records , query , invalidateCache = false , edits ) {
2019-10-15 11:37:08 -04:00
// Auto drafts should not have titles, but some plugins rely on them so we can't filter this
// on the server.
if ( kind === 'postType' ) {
2023-02-07 02:04:52 -05:00
records = ( Array . isArray ( records ) ? records : [ records ] ) . map ( record => record . status === 'auto-draft' ? { ... record ,
2021-05-19 11:09:27 -04:00
title : ''
} : record ) ;
2019-10-15 11:37:08 -04:00
}
2021-05-19 11:09:27 -04:00
let action ;
2019-10-15 11:37:08 -04:00
if ( query ) {
2021-01-27 21:04:13 -05:00
action = receiveQueriedItems ( records , query , edits ) ;
2019-10-15 11:37:08 -04:00
} else {
2021-01-27 21:04:13 -05:00
action = receiveItems ( records , edits ) ;
2019-10-15 11:37:08 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
return { ... action ,
kind ,
name ,
invalidateCache
} ;
2019-10-15 11:37:08 -04:00
}
2020-06-26 09:33:47 -04:00
/ * *
* Returns an action object used in signalling that the current theme has been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2020-06-26 09:33:47 -04:00
*
* @ param { Object } currentTheme The current theme .
*
* @ return { Object } Action object .
* /
function receiveCurrentTheme ( currentTheme ) {
return {
type : 'RECEIVE_CURRENT_THEME' ,
2021-05-19 11:09:27 -04:00
currentTheme
2020-06-26 09:33:47 -04:00
} ;
}
2021-11-08 09:29:21 -05:00
/ * *
* Returns an action object used in signalling that the current global styles id has been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2021-11-08 09:29:21 -05:00
*
* @ param { string } currentGlobalStylesId The current global styles id .
*
* @ return { Object } Action object .
* /
function _ _experimentalReceiveCurrentGlobalStylesId ( currentGlobalStylesId ) {
return {
type : 'RECEIVE_CURRENT_GLOBAL_STYLES_ID' ,
id : currentGlobalStylesId
} ;
}
/ * *
* Returns an action object used in signalling that the theme base global styles have been received
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2021-11-08 09:29:21 -05:00
*
* @ param { string } stylesheet The theme ' s identifier
* @ param { Object } globalStyles The global styles object .
*
* @ return { Object } Action object .
* /
function _ _experimentalReceiveThemeBaseGlobalStyles ( stylesheet , globalStyles ) {
return {
type : 'RECEIVE_THEME_GLOBAL_STYLES' ,
stylesheet ,
globalStyles
} ;
}
2022-04-12 11:12:47 -04:00
/ * *
* Returns an action object used in signalling that the theme global styles variations have been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2022-04-12 11:12:47 -04:00
*
* @ param { string } stylesheet The theme ' s identifier
* @ param { Array } variations The global styles variations .
*
* @ return { Object } Action object .
* /
function _ _experimentalReceiveThemeGlobalStyleVariations ( stylesheet , variations ) {
return {
type : 'RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS' ,
stylesheet ,
variations
} ;
}
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns an action object used in signalling that the index has been received .
2018-12-13 23:41:57 -05:00
*
2021-11-08 09:29:21 -05:00
* @ deprecated since WP 5.9 , this is not useful anymore , use the selector direclty .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ return { Object } Action object .
2018-12-17 22:14:52 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-11-08 09:29:21 -05:00
function receiveThemeSupports ( ) {
external _wp _deprecated _default ( ) ( "wp.data.dispatch( 'core' ).receiveThemeSupports" , {
since : '5.9'
} ) ;
2019-10-15 11:37:08 -04:00
return {
2021-11-08 09:29:21 -05:00
type : 'DO_NOTHING'
2019-10-15 11:37:08 -04:00
} ;
}
2023-06-27 10:24:19 -04:00
/ * *
* Returns an action object used in signalling that the theme global styles CPT post revisions have been received .
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
*
* @ param { number } currentId The post id .
* @ param { Array } revisions The global styles revisions .
*
* @ return { Object } Action object .
* /
function receiveThemeGlobalStyleRevisions ( currentId , revisions ) {
return {
type : 'RECEIVE_THEME_GLOBAL_STYLE_REVISIONS' ,
currentId ,
revisions
} ;
}
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns an action object used in signalling that the preview data for
* a given URl has been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2018-12-13 23:41:57 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } url URL to preview the embed for .
* @ param { * } preview Preview data .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ return { Object } Action object .
2018-12-13 23:41:57 -05:00
* /
2019-10-15 11:37:08 -04:00
function receiveEmbedPreview ( url , preview ) {
return {
type : 'RECEIVE_EMBED_PREVIEW' ,
2021-05-19 11:09:27 -04:00
url ,
preview
2019-10-15 11:37:08 -04:00
} ;
}
2020-10-13 09:10:30 -04:00
/ * *
* Action triggered to delete an entity record .
*
2022-04-12 11:12:47 -04:00
* @ param { string } kind Kind of the deleted entity .
* @ param { string } name Name of the deleted entity .
* @ param { string } recordId Record ID of the deleted entity .
* @ param { ? Object } query Special query parameters for the
* DELETE API call .
* @ param { Object } [ options ] Delete options .
* @ param { Function } [ options . _ _unstableFetch ] Internal use only . Function to
* call instead of ` apiFetch() ` .
* Must return a promise .
* @ param { boolean } [ options . throwOnError = false ] If false , this action suppresses all
* the exceptions . Defaults to false .
2020-10-13 09:10:30 -04:00
* /
2023-06-27 10:24:19 -04:00
const deleteEntityRecord = ( kind , name , recordId , query , {
_ _unstableFetch = ( external _wp _apiFetch _default ( ) ) ,
throwOnError = false
} = { } ) => async ( {
dispatch
} ) => {
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
const entityConfig = configs . find ( config => config . kind === kind && config . name === name ) ;
let error ;
let deletedRecord = false ;
2021-02-02 00:17:13 -05:00
2023-06-27 10:24:19 -04:00
if ( ! entityConfig || entityConfig ? . _ _experimentalNoFetch ) {
return ;
}
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
const lock = await dispatch . _ _unstableAcquireStoreLock ( STORE _NAME , [ 'entities' , 'records' , kind , name , recordId ] , {
exclusive : true
} ) ;
try {
dispatch ( {
type : 'DELETE_ENTITY_RECORD_START' ,
kind ,
name ,
recordId
2021-11-08 09:29:21 -05:00
} ) ;
2023-06-27 10:24:19 -04:00
let hasError = false ;
2020-10-13 09:10:30 -04:00
2021-05-19 11:09:27 -04:00
try {
2023-06-27 10:24:19 -04:00
let path = ` ${ entityConfig . baseURL } / ${ recordId } ` ;
2021-11-15 07:50:17 -05:00
2023-06-27 10:24:19 -04:00
if ( query ) {
path = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( path , query ) ;
2021-05-19 11:09:27 -04:00
}
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
deletedRecord = await _ _unstableFetch ( {
path ,
method : 'DELETE'
2021-11-08 09:29:21 -05:00
} ) ;
2023-06-27 10:24:19 -04:00
await dispatch ( removeItems ( kind , name , recordId , true ) ) ;
} catch ( _error ) {
hasError = true ;
error = _error ;
}
2022-04-12 11:12:47 -04:00
2023-06-27 10:24:19 -04:00
dispatch ( {
type : 'DELETE_ENTITY_RECORD_FINISH' ,
kind ,
name ,
recordId ,
error
} ) ;
2022-04-12 11:12:47 -04:00
2023-06-27 10:24:19 -04:00
if ( hasError && throwOnError ) {
throw error ;
2020-10-13 09:10:30 -04:00
}
2023-06-27 10:24:19 -04:00
return deletedRecord ;
} finally {
dispatch . _ _unstableReleaseStoreLock ( lock ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2019-10-15 11:37:08 -04:00
/ * *
* Returns an action object that triggers an
* edit to an entity record .
*
2023-06-27 10:24:19 -04:00
* @ param { string } kind Kind of the edited entity record .
* @ param { string } name Name of the edited entity record .
* @ param { number | string } recordId Record ID of the edited entity record .
* @ param { Object } edits The edits .
* @ param { Object } options Options for the edit .
* @ param { boolean } [ options . undoIgnore ] Whether to ignore the edit in undo history or not .
2019-10-15 11:37:08 -04:00
*
* @ return { Object } Action object .
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const editEntityRecord = ( kind , name , recordId , edits , options = { } ) => ( {
select ,
dispatch
} ) => {
const entityConfig = select . getEntityConfig ( kind , name ) ;
2019-12-09 12:37:10 -05:00
2023-06-27 10:24:19 -04:00
if ( ! entityConfig ) {
throw new Error ( ` The entity being edited ( ${ kind } , ${ name } ) does not have a loaded config. ` ) ;
}
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const {
mergedEdits = { }
} = entityConfig ;
const record = select . getRawEntityRecord ( kind , name , recordId ) ;
const editedRecord = select . getEditedEntityRecord ( kind , name , recordId ) ;
const edit = {
kind ,
name ,
recordId ,
// Clear edits when they are equal to their persisted counterparts
// so that the property is not considered dirty.
edits : Object . keys ( edits ) . reduce ( ( acc , key ) => {
const recordValue = record [ key ] ;
const editedRecordValue = editedRecord [ key ] ;
const value = mergedEdits [ key ] ? { ... editedRecordValue ,
... edits [ key ]
} : edits [ key ] ;
acc [ key ] = es6 _default ( ) ( recordValue , value ) ? undefined : value ;
return acc ;
2023-07-07 03:21:17 -04:00
} , { } )
2021-11-15 07:50:17 -05:00
} ;
2023-06-27 10:24:19 -04:00
dispatch ( {
type : 'EDIT_ENTITY_RECORD' ,
... edit ,
meta : {
undo : ! options . undoIgnore && { ... edit ,
// Send the current values for things like the first undo stack entry.
edits : Object . keys ( edits ) . reduce ( ( acc , key ) => {
acc [ key ] = editedRecord [ key ] ;
return acc ;
2023-07-07 03:21:17 -04:00
} , { } ) ,
isCached : options . isCached
2023-06-27 10:24:19 -04:00
}
}
} ) ;
2021-11-08 09:29:21 -05:00
} ;
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Action triggered to undo the last edit to
* an entity record , if any .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const undo = ( ) => ( {
select ,
dispatch
} ) => {
// Todo: we shouldn't have to pass "root" here.
const undoEdit = select ( state => getUndoEdits ( state . root ) ) ;
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
if ( ! undoEdit ) {
return ;
}
2019-10-15 11:37:08 -04:00
2021-11-08 09:29:21 -05:00
dispatch ( {
2023-06-27 10:24:19 -04:00
type : 'UNDO' ,
stackedEdits : undoEdit
2021-11-08 09:29:21 -05:00
} ) ;
} ;
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Action triggered to redo the last undoed
* edit to an entity record , if any .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const redo = ( ) => ( {
select ,
dispatch
} ) => {
// Todo: we shouldn't have to pass "root" here.
const redoEdit = select ( state => getRedoEdits ( state . root ) ) ;
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
if ( ! redoEdit ) {
return ;
}
2018-12-13 23:41:57 -05:00
2021-11-08 09:29:21 -05:00
dispatch ( {
2023-06-27 10:24:19 -04:00
type : 'REDO' ,
stackedEdits : redoEdit
2021-11-08 09:29:21 -05:00
} ) ;
} ;
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Forces the creation of a new undo level .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* @ return { Object } Action object .
2018-12-17 22:14:52 -05:00
* /
2022-04-11 08:04:30 -04:00
function _ _unstableCreateUndoLevel ( ) {
2019-10-15 11:37:08 -04:00
return {
type : 'CREATE_UNDO_LEVEL'
} ;
}
/ * *
* Action triggered to save an entity record .
*
2022-04-12 11:12:47 -04:00
* @ param { string } kind Kind of the received entity .
* @ param { string } name Name of the received entity .
* @ param { Object } record Record to be saved .
* @ param { Object } options Saving options .
* @ param { boolean } [ options . isAutosave = false ] Whether this is an autosave .
* @ param { Function } [ options . _ _unstableFetch ] Internal use only . Function to
* call instead of ` apiFetch() ` .
* Must return a promise .
* @ param { boolean } [ options . throwOnError = false ] If false , this action suppresses all
* the exceptions . Defaults to false .
2019-10-15 11:37:08 -04:00
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const saveEntityRecord = ( kind , name , record , {
isAutosave = false ,
_ _unstableFetch = ( external _wp _apiFetch _default ( ) ) ,
throwOnError = false
} = { } ) => async ( {
select ,
resolveSelect ,
dispatch
} ) => {
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
const entityConfig = configs . find ( config => config . kind === kind && config . name === name ) ;
if ( ! entityConfig || entityConfig ? . _ _experimentalNoFetch ) {
return ;
}
const entityIdKey = entityConfig . key || DEFAULT _ENTITY _KEY ;
const recordId = record [ entityIdKey ] ;
const lock = await dispatch . _ _unstableAcquireStoreLock ( STORE _NAME , [ 'entities' , 'records' , kind , name , recordId || esm _browser _v4 ( ) ] , {
exclusive : true
} ) ;
try {
// Evaluate optimized edits.
// (Function edits that should be evaluated on save to avoid expensive computations on every edit.)
for ( const [ key , value ] of Object . entries ( record ) ) {
if ( typeof value === 'function' ) {
const evaluatedValue = value ( select . getEditedEntityRecord ( kind , name , recordId ) ) ;
dispatch . editEntityRecord ( kind , name , recordId , {
[ key ] : evaluatedValue
} , {
undoIgnore : true
} ) ;
record [ key ] = evaluatedValue ;
}
2021-05-19 11:09:27 -04:00
}
2020-02-06 16:03:31 -05:00
2023-06-27 10:24:19 -04:00
dispatch ( {
type : 'SAVE_ENTITY_RECORD_START' ,
kind ,
name ,
recordId ,
isAutosave
2021-11-08 09:29:21 -05:00
} ) ;
2023-06-27 10:24:19 -04:00
let updatedRecord ;
let error ;
let hasError = false ;
2020-02-06 16:03:31 -05:00
2021-05-19 11:09:27 -04:00
try {
2023-06-27 10:24:19 -04:00
const path = ` ${ entityConfig . baseURL } ${ recordId ? '/' + recordId : '' } ` ;
const persistedRecord = select . getRawEntityRecord ( kind , name , recordId ) ;
if ( isAutosave ) {
// Most of this autosave logic is very specific to posts.
// This is fine for now as it is the only supported autosave,
// but ideally this should all be handled in the back end,
// so the client just sends and receives objects.
const currentUser = select . getCurrentUser ( ) ;
const currentUserId = currentUser ? currentUser . id : undefined ;
const autosavePost = await resolveSelect . getAutosave ( persistedRecord . type , persistedRecord . id , currentUserId ) ; // Autosaves need all expected fields to be present.
// So we fallback to the previous autosave and then
// to the actual persisted entity if the edits don't
// have a value.
let data = { ... persistedRecord ,
... autosavePost ,
... record
} ;
data = Object . keys ( data ) . reduce ( ( acc , key ) => {
if ( [ 'title' , 'excerpt' , 'content' ] . includes ( key ) ) {
acc [ key ] = data [ key ] ;
}
2021-11-15 07:50:17 -05:00
2023-06-27 10:24:19 -04:00
return acc ;
} , {
status : data . status === 'auto-draft' ? 'draft' : data . status
} ) ;
updatedRecord = await _ _unstableFetch ( {
path : ` ${ path } /autosaves ` ,
method : 'POST' ,
data
} ) ; // An autosave may be processed by the server as a regular save
// when its update is requested by the author and the post had
// draft or auto-draft status.
if ( persistedRecord . id === updatedRecord . id ) {
let newRecord = { ... persistedRecord ,
... data ,
... updatedRecord
2021-02-02 00:17:13 -05:00
} ;
2023-06-27 10:24:19 -04:00
newRecord = Object . keys ( newRecord ) . reduce ( ( acc , key ) => {
// These properties are persisted in autosaves.
2019-09-19 11:19:18 -04:00
if ( [ 'title' , 'excerpt' , 'content' ] . includes ( key ) ) {
2023-06-27 10:24:19 -04:00
acc [ key ] = newRecord [ key ] ;
} else if ( key === 'status' ) {
// Status is only persisted in autosaves when going from
// "auto-draft" to "draft".
acc [ key ] = persistedRecord . status === 'auto-draft' && newRecord . status === 'draft' ? newRecord . status : persistedRecord . status ;
} else {
// These properties are not persisted in autosaves.
acc [ key ] = persistedRecord [ key ] ;
2019-09-19 11:19:18 -04:00
}
return acc ;
2023-06-27 10:24:19 -04:00
} , { } ) ;
dispatch . receiveEntityRecords ( kind , name , newRecord , undefined , true ) ;
2021-05-19 11:09:27 -04:00
} else {
2023-06-27 10:24:19 -04:00
dispatch . receiveAutosaves ( persistedRecord . id , updatedRecord ) ;
2021-11-15 07:50:17 -05:00
}
2023-06-27 10:24:19 -04:00
} else {
let edits = record ;
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
if ( entityConfig . _ _unstablePrePersist ) {
edits = { ... edits ,
... entityConfig . _ _unstablePrePersist ( persistedRecord , edits )
} ;
}
2022-04-12 11:12:47 -04:00
2023-06-27 10:24:19 -04:00
updatedRecord = await _ _unstableFetch ( {
path ,
method : recordId ? 'PUT' : 'POST' ,
data : edits
} ) ;
dispatch . receiveEntityRecords ( kind , name , updatedRecord , undefined , true , edits ) ;
2022-04-12 11:12:47 -04:00
}
2023-06-27 10:24:19 -04:00
} catch ( _error ) {
hasError = true ;
error = _error ;
}
dispatch ( {
type : 'SAVE_ENTITY_RECORD_FINISH' ,
kind ,
name ,
recordId ,
error ,
isAutosave
} ) ;
2022-04-12 11:12:47 -04:00
2023-06-27 10:24:19 -04:00
if ( hasError && throwOnError ) {
throw error ;
2021-11-15 07:50:17 -05:00
}
2023-06-27 10:24:19 -04:00
return updatedRecord ;
} finally {
dispatch . _ _unstableReleaseStoreLock ( lock ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2021-02-02 00:17:13 -05:00
/ * *
* Runs multiple core - data actions at the same time using one API request .
*
* Example :
*
* ` ` `
* const [ savedRecord , updatedRecord , deletedRecord ] =
* await dispatch ( 'core' ) . _ _experimentalBatch ( [
* ( { saveEntityRecord } ) => saveEntityRecord ( 'root' , 'widget' , widget ) ,
* ( { saveEditedEntityRecord } ) => saveEntityRecord ( 'root' , 'widget' , 123 ) ,
* ( { deleteEntityRecord } ) => deleteEntityRecord ( 'root' , 'widget' , 123 , null ) ,
* ] ) ;
* ` ` `
*
* @ param { Array } requests Array of functions which are invoked simultaneously .
* Each function is passed an object containing
* ` saveEntityRecord ` , ` saveEditedEntityRecord ` , and
* ` deleteEntityRecord ` .
*
2022-04-12 11:12:47 -04:00
* @ return { ( thunkArgs : Object ) => Promise } A promise that resolves to an array containing the return
* values of each function given in ` requests ` .
2021-02-02 00:17:13 -05:00
* /
2023-06-27 10:24:19 -04:00
const _ _experimentalBatch = requests => async ( {
dispatch
} ) => {
2021-05-19 11:09:27 -04:00
const batch = createBatch ( ) ;
const api = {
saveEntityRecord ( kind , name , record , options ) {
2021-11-08 09:29:21 -05:00
return batch . add ( add => dispatch . saveEntityRecord ( kind , name , record , { ... options ,
2021-05-19 11:09:27 -04:00
_ _unstableFetch : add
} ) ) ;
} ,
saveEditedEntityRecord ( kind , name , recordId , options ) {
2021-11-08 09:29:21 -05:00
return batch . add ( add => dispatch . saveEditedEntityRecord ( kind , name , recordId , { ... options ,
2021-05-19 11:09:27 -04:00
_ _unstableFetch : add
} ) ) ;
} ,
deleteEntityRecord ( kind , name , recordId , query , options ) {
2021-11-08 09:29:21 -05:00
return batch . add ( add => dispatch . deleteEntityRecord ( kind , name , recordId , query , { ... options ,
2021-05-19 11:09:27 -04:00
_ _unstableFetch : add
} ) ) ;
2021-02-02 00:17:13 -05:00
}
2021-05-19 11:09:27 -04:00
} ;
const resultPromises = requests . map ( request => request ( api ) ) ;
2021-11-08 09:29:21 -05:00
const [ , ... results ] = await Promise . all ( [ batch . run ( ) , ... resultPromises ] ) ;
2021-05-19 11:09:27 -04:00
return results ;
2021-11-08 09:29:21 -05:00
} ;
2019-09-19 11:19:18 -04:00
/ * *
* Action triggered to save an entity record ' s edits .
*
* @ param { string } kind Kind of the entity .
* @ param { string } name Name of the entity .
* @ param { Object } recordId ID of the record .
* @ param { Object } options Saving options .
* /
2023-06-27 10:24:19 -04:00
const saveEditedEntityRecord = ( kind , name , recordId , options ) => async ( {
select ,
dispatch
} ) => {
2021-11-08 09:29:21 -05:00
if ( ! select . hasEditsForEntityRecord ( kind , name , recordId ) ) {
return ;
}
2022-04-12 11:12:47 -04:00
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
2023-02-07 02:04:52 -05:00
const entityConfig = configs . find ( config => config . kind === kind && config . name === name ) ;
2021-11-08 09:29:21 -05:00
2022-04-12 11:12:47 -04:00
if ( ! entityConfig ) {
2021-05-19 11:09:27 -04:00
return ;
}
2019-09-19 11:19:18 -04:00
2022-04-12 11:12:47 -04:00
const entityIdKey = entityConfig . key || DEFAULT _ENTITY _KEY ;
2021-11-08 09:29:21 -05:00
const edits = select . getEntityRecordNonTransientEdits ( kind , name , recordId ) ;
2021-05-19 11:09:27 -04:00
const record = {
2021-11-08 09:29:21 -05:00
[ entityIdKey ] : recordId ,
2021-05-19 11:09:27 -04:00
... edits
} ;
2021-11-08 09:29:21 -05:00
return await dispatch . saveEntityRecord ( kind , name , record , options ) ;
} ;
2021-05-19 11:09:27 -04:00
/ * *
* Action triggered to save only specified properties for the entity .
*
2021-11-08 09:29:21 -05:00
* @ param { string } kind Kind of the entity .
* @ param { string } name Name of the entity .
* @ param { Object } recordId ID of the record .
* @ param { Array } itemsToSave List of entity properties to save .
* @ param { Object } options Saving options .
2021-05-19 11:09:27 -04:00
* /
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
const _ _experimentalSaveSpecifiedEntityEdits = ( kind , name , recordId , itemsToSave , options ) => async ( {
select ,
dispatch
} ) => {
2021-11-08 09:29:21 -05:00
if ( ! select . hasEditsForEntityRecord ( kind , name , recordId ) ) {
2021-05-19 11:09:27 -04:00
return ;
}
2019-09-19 11:19:18 -04:00
2021-11-08 09:29:21 -05:00
const edits = select . getEntityRecordNonTransientEdits ( kind , name , recordId ) ;
2021-05-19 11:09:27 -04:00
const editsToSave = { } ;
2021-02-02 00:17:13 -05:00
2021-05-19 11:09:27 -04:00
for ( const edit in edits ) {
if ( itemsToSave . some ( item => item === edit ) ) {
editsToSave [ edit ] = edits [ edit ] ;
2019-09-19 11:19:18 -04:00
}
2021-05-19 11:09:27 -04:00
}
2021-11-08 09:29:21 -05:00
return await dispatch . saveEntityRecord ( kind , name , editsToSave , options ) ;
} ;
2019-09-19 11:19:18 -04:00
/ * *
* Returns an action object used in signalling that Upload permissions have been received .
*
2022-04-12 11:12:47 -04:00
* @ deprecated since WP 5.9 , use receiveUserPermission instead .
*
2019-09-19 11:19:18 -04:00
* @ param { boolean } hasUploadPermissions Does the user have permission to upload files ?
*
* @ return { Object } Action object .
* /
function receiveUploadPermissions ( hasUploadPermissions ) {
2022-04-12 11:12:47 -04:00
external _wp _deprecated _default ( ) ( "wp.data.dispatch( 'core' ).receiveUploadPermissions" , {
since : '5.9' ,
alternative : 'receiveUserPermission'
} ) ;
return receiveUserPermission ( 'create/media' , hasUploadPermissions ) ;
2019-09-19 11:19:18 -04:00
}
/ * *
* Returns an action object used in signalling that the current user has
* permission to perform an action on a REST resource .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2019-09-19 11:19:18 -04:00
*
* @ param { string } key A key that represents the action and REST resource .
* @ param { boolean } isAllowed Whether or not the user can perform the action .
*
* @ return { Object } Action object .
* /
function receiveUserPermission ( key , isAllowed ) {
return {
type : 'RECEIVE_USER_PERMISSION' ,
2021-05-19 11:09:27 -04:00
key ,
isAllowed
2019-09-19 11:19:18 -04:00
} ;
}
/ * *
* Returns an action object used in signalling that the autosaves for a
* post have been received .
2022-09-20 11:43:29 -04:00
* Ignored from documentation as it ' s internal to the data store .
*
* @ ignore
2019-09-19 11:19:18 -04:00
*
* @ param { number } postId The id of the post that is parent to the autosave .
* @ param { Array | Object } autosaves An array of autosaves or singular autosave object .
*
* @ return { Object } Action object .
* /
function receiveAutosaves ( postId , autosaves ) {
return {
type : 'RECEIVE_AUTOSAVES' ,
2021-05-19 11:09:27 -04:00
postId ,
2023-02-07 02:04:52 -05:00
autosaves : Array . isArray ( autosaves ) ? autosaves : [ autosaves ]
2019-09-19 11:19:18 -04:00
} ;
}
2023-06-27 10:24:19 -04:00
/ * *
* Returns an action object signalling that the fallback Navigation
* Menu id has been received .
*
* @ param { integer } fallbackId the id of the fallback Navigation Menu
* @ return { Object } Action object .
* /
function receiveNavigationFallbackId ( fallbackId ) {
return {
type : 'RECEIVE_NAVIGATION_FALLBACK_ID' ,
fallbackId
} ;
}
2019-09-19 11:19:18 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/entities.js
2019-09-19 11:19:18 -04:00
/ * *
* External dependencies
* /
2020-06-26 09:33:47 -04:00
/ * *
* WordPress dependencies
* /
2020-10-13 09:10:30 -04:00
2019-09-19 11:19:18 -04:00
/ * *
* Internal dependencies
* /
2021-05-19 11:09:27 -04:00
const DEFAULT _ENTITY _KEY = 'id' ;
2021-11-08 09:29:21 -05:00
const POST _RAW _ATTRIBUTES = [ 'title' , 'excerpt' , 'content' ] ;
2022-04-12 11:12:47 -04:00
const rootEntitiesConfig = [ {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Base' ) ,
2020-10-13 09:10:30 -04:00
kind : 'root' ,
2022-09-20 11:43:29 -04:00
name : '__unstableBase' ,
2022-04-12 11:12:47 -04:00
baseURL : '/' ,
baseURLParams : {
_fields : [ 'description' , 'gmt_offset' , 'home' , 'name' , 'site_icon' , 'site_icon_url' , 'site_logo' , 'timezone_string' , 'url' ] . join ( ',' )
}
2020-10-13 09:10:30 -04:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Site' ) ,
2020-01-08 06:57:23 -05:00
name : 'site' ,
kind : 'root' ,
2020-06-26 09:33:47 -04:00
baseURL : '/wp/v2/settings' ,
2021-05-19 11:09:27 -04:00
getTitle : record => {
2023-06-27 10:24:19 -04:00
var _record$title ;
return ( _record$title = record ? . title ) !== null && _record$title !== void 0 ? _record$title : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Site Title' ) ;
2020-06-26 09:33:47 -04:00
}
2020-01-08 06:57:23 -05:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Post Type' ) ,
2019-09-19 11:19:18 -04:00
name : 'postType' ,
kind : 'root' ,
key : 'slug' ,
2021-05-19 11:09:27 -04:00
baseURL : '/wp/v2/types' ,
baseURLParams : {
context : 'edit'
2022-09-20 11:43:29 -04:00
}
2019-09-19 11:19:18 -04:00
} , {
name : 'media' ,
kind : 'root' ,
baseURL : '/wp/v2/media' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'mediaItems' ,
2022-04-12 11:12:47 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Media' ) ,
rawAttributes : [ 'caption' , 'title' , 'description' ]
2018-12-17 22:14:52 -05:00
} , {
name : 'taxonomy' ,
kind : 'root' ,
key : 'slug' ,
baseURL : '/wp/v2/taxonomies' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'taxonomies' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Taxonomy' )
2019-09-19 11:19:18 -04:00
} , {
2020-10-13 09:10:30 -04:00
name : 'sidebar' ,
2019-09-19 11:19:18 -04:00
kind : 'root' ,
2020-10-20 09:36:16 -04:00
baseURL : '/wp/v2/sidebars' ,
2022-09-20 11:43:29 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-10-13 09:10:30 -04:00
plural : 'sidebars' ,
2020-01-08 06:57:23 -05:00
transientEdits : {
blocks : true
2020-06-26 09:33:47 -04:00
} ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Widget areas' )
2020-10-20 09:36:16 -04:00
} , {
name : 'widget' ,
kind : 'root' ,
baseURL : '/wp/v2/widgets' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-10-20 09:36:16 -04:00
plural : 'widgets' ,
transientEdits : {
blocks : true
} ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Widgets' )
2021-04-15 11:19:43 -04:00
} , {
name : 'widgetType' ,
kind : 'root' ,
baseURL : '/wp/v2/widget-types' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2021-04-15 11:19:43 -04:00
plural : 'widgetTypes' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Widget types' )
2020-02-06 16:03:31 -05:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'User' ) ,
2020-02-06 16:03:31 -05:00
name : 'user' ,
kind : 'root' ,
baseURL : '/wp/v2/users' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-02-06 16:03:31 -05:00
plural : 'users'
2020-06-26 09:33:47 -04:00
} , {
name : 'comment' ,
kind : 'root' ,
baseURL : '/wp/v2/comments' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'comments' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Comment' )
2020-06-26 09:33:47 -04:00
} , {
name : 'menu' ,
kind : 'root' ,
2021-11-11 02:43:31 -05:00
baseURL : '/wp/v2/menus' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'menus' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Menu' )
2020-06-26 09:33:47 -04:00
} , {
name : 'menuItem' ,
kind : 'root' ,
2021-11-11 02:43:31 -05:00
baseURL : '/wp/v2/menu-items' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'menuItems' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Menu Item' ) ,
2022-09-20 11:43:29 -04:00
rawAttributes : [ 'title' ]
2020-06-26 09:33:47 -04:00
} , {
name : 'menuLocation' ,
kind : 'root' ,
2021-11-11 02:43:31 -05:00
baseURL : '/wp/v2/menu-locations' ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
2020-06-26 09:33:47 -04:00
plural : 'menuLocations' ,
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Menu Location' ) ,
2020-06-26 09:33:47 -04:00
key : 'name'
2021-11-08 09:29:21 -05:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Global Styles' ) ,
2021-11-08 09:29:21 -05:00
name : 'globalStyles' ,
kind : 'root' ,
baseURL : '/wp/v2/global-styles' ,
baseURLParams : {
context : 'edit'
} ,
plural : 'globalStylesVariations' ,
2022-04-12 11:12:47 -04:00
// Should be different than name.
2023-06-27 10:24:19 -04:00
getTitle : record => record ? . title ? . rendered || record ? . title
2021-11-08 09:29:21 -05:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Themes' ) ,
2021-11-08 09:29:21 -05:00
name : 'theme' ,
kind : 'root' ,
baseURL : '/wp/v2/themes' ,
baseURLParams : {
context : 'edit'
} ,
key : 'stylesheet'
2021-11-29 19:24:27 -05:00
} , {
2022-04-11 08:04:30 -04:00
label : ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( 'Plugins' ) ,
2021-11-29 19:24:27 -05:00
name : 'plugin' ,
kind : 'root' ,
baseURL : '/wp/v2/plugins' ,
baseURLParams : {
context : 'edit'
} ,
key : 'plugin'
2018-12-17 22:14:52 -05:00
} ] ;
2022-04-12 11:12:47 -04:00
const additionalEntityConfigLoaders = [ {
kind : 'postType' ,
2018-12-17 22:14:52 -05:00
loadEntities : loadPostTypeEntities
} , {
2022-04-12 11:12:47 -04:00
kind : 'taxonomy' ,
2018-12-17 22:14:52 -05:00
loadEntities : loadTaxonomyEntities
} ] ;
2018-12-13 23:41:57 -05:00
/ * *
2021-01-27 21:04:13 -05:00
* Returns a function to be used to retrieve extra edits to apply before persisting a post type .
2018-12-17 22:14:52 -05:00
*
2021-01-27 21:04:13 -05:00
* @ param { Object } persistedRecord Already persisted Post
2021-11-08 09:29:21 -05:00
* @ param { Object } edits Edits .
2021-01-27 21:04:13 -05:00
* @ return { Object } Updated edits .
2018-12-13 23:41:57 -05:00
* /
2021-05-19 11:09:27 -04:00
const prePersistPostType = ( persistedRecord , edits ) => {
const newEdits = { } ;
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
if ( persistedRecord ? . status === 'auto-draft' ) {
2021-01-27 21:04:13 -05:00
// Saving an auto-draft should create a draft by default.
if ( ! edits . status && ! newEdits . status ) {
newEdits . status = 'draft' ;
} // Fix the auto-draft default title.
2023-06-27 10:24:19 -04:00
if ( ( ! edits . title || edits . title === 'Auto Draft' ) && ! newEdits . title && ( ! persistedRecord ? . title || persistedRecord ? . title === 'Auto Draft' ) ) {
2021-01-27 21:04:13 -05:00
newEdits . title = '' ;
}
}
return newEdits ;
} ;
/ * *
* Returns the list of post type entities .
*
* @ return { Promise } Entities promise
* /
2021-11-08 09:29:21 -05:00
async function loadPostTypeEntities ( ) {
const postTypes = await external _wp _apiFetch _default ( ) ( {
2022-04-12 11:12:47 -04:00
path : '/wp/v2/types?context=view'
2021-05-19 11:09:27 -04:00
} ) ;
2023-06-27 10:24:19 -04:00
return Object . entries ( postTypes !== null && postTypes !== void 0 ? postTypes : { } ) . map ( ( [ name , postType ] ) => {
2021-11-08 09:29:21 -05:00
var _postType$rest _namesp ;
2021-05-19 11:09:27 -04:00
const isTemplate = [ 'wp_template' , 'wp_template_part' ] . includes ( name ) ;
2023-06-27 10:24:19 -04:00
const namespace = ( _postType$rest _namesp = postType ? . rest _namespace ) !== null && _postType$rest _namesp !== void 0 ? _postType$rest _namesp : 'wp/v2' ;
2021-05-19 11:09:27 -04:00
return {
kind : 'postType' ,
2021-11-08 09:29:21 -05:00
baseURL : ` / ${ namespace } / ${ postType . rest _base } ` ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
name ,
2022-04-12 11:12:47 -04:00
label : postType . name ,
2021-05-19 11:09:27 -04:00
transientEdits : {
blocks : true ,
selection : true
} ,
mergedEdits : {
meta : true
} ,
2021-11-08 09:29:21 -05:00
rawAttributes : POST _RAW _ATTRIBUTES ,
2021-05-19 11:09:27 -04:00
getTitle : record => {
2023-06-27 10:24:19 -04:00
var _record$slug ;
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
return record ? . title ? . rendered || record ? . title || ( isTemplate ? capitalCase ( ( _record$slug = record . slug ) !== null && _record$slug !== void 0 ? _record$slug : '' ) : String ( record . id ) ) ;
2021-05-19 11:09:27 -04:00
} ,
2021-06-15 11:30:24 -04:00
_ _unstablePrePersist : isTemplate ? undefined : prePersistPostType ,
_ _unstable _rest _base : postType . rest _base
2021-05-19 11:09:27 -04:00
} ;
} ) ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Returns the list of the taxonomies entities .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ return { Promise } Entities promise
2018-12-13 23:41:57 -05:00
* /
2021-11-08 09:29:21 -05:00
async function loadTaxonomyEntities ( ) {
const taxonomies = await external _wp _apiFetch _default ( ) ( {
2022-04-12 11:12:47 -04:00
path : '/wp/v2/taxonomies?context=view'
2021-05-19 11:09:27 -04:00
} ) ;
2023-06-27 10:24:19 -04:00
return Object . entries ( taxonomies !== null && taxonomies !== void 0 ? taxonomies : { } ) . map ( ( [ name , taxonomy ] ) => {
2021-11-08 09:29:21 -05:00
var _taxonomy$rest _namesp ;
2023-06-27 10:24:19 -04:00
const namespace = ( _taxonomy$rest _namesp = taxonomy ? . rest _namespace ) !== null && _taxonomy$rest _namesp !== void 0 ? _taxonomy$rest _namesp : 'wp/v2' ;
2021-05-19 11:09:27 -04:00
return {
kind : 'taxonomy' ,
2021-11-08 09:29:21 -05:00
baseURL : ` / ${ namespace } / ${ taxonomy . rest _base } ` ,
2021-05-19 11:09:27 -04:00
baseURLParams : {
context : 'edit'
} ,
name ,
2022-04-12 11:12:47 -04:00
label : taxonomy . name
2021-05-19 11:09:27 -04:00
} ;
} ) ;
2018-12-13 23:41:57 -05:00
}
/ * *
2018-12-17 22:14:52 -05:00
* Returns the entity ' s getter method name given its kind and name .
2018-12-13 23:41:57 -05:00
*
2022-04-12 11:12:47 -04:00
* @ example
* ` ` ` js
* const nameSingular = getMethodName ( 'root' , 'theme' , 'get' ) ;
* // nameSingular is getRootTheme
*
* const namePlural = getMethodName ( 'root' , 'theme' , 'set' ) ;
* // namePlural is setRootThemes
* ` ` `
*
2018-12-17 22:14:52 -05:00
* @ param { string } kind Entity kind .
* @ param { string } name Entity name .
* @ param { string } prefix Function prefix .
* @ param { boolean } usePlural Whether to use the plural form or not .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ return { string } Method name
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const getMethodName = ( kind , name , prefix = 'get' , usePlural = false ) => {
2023-02-07 02:04:52 -05:00
const entityConfig = rootEntitiesConfig . find ( config => config . kind === kind && config . name === name ) ;
2022-09-20 11:43:29 -04:00
const kindPrefix = kind === 'root' ? '' : pascalCase ( kind ) ;
const nameSuffix = pascalCase ( name ) + ( usePlural ? 's' : '' ) ;
2023-06-27 10:24:19 -04:00
const suffix = usePlural && 'plural' in entityConfig && entityConfig ? . plural ? pascalCase ( entityConfig . plural ) : nameSuffix ;
2021-05-19 11:09:27 -04:00
return ` ${ prefix } ${ kindPrefix } ${ suffix } ` ;
2018-12-17 22:14:52 -05:00
} ;
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Loads the kind entities into the store .
2018-12-13 23:41:57 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } kind Kind
2018-12-13 23:41:57 -05:00
*
2022-04-12 11:12:47 -04:00
* @ return { ( thunkArgs : object ) => Promise < Array > } Entities
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const getOrLoadEntitiesConfig = kind => async ( {
select ,
dispatch
} ) => {
2022-04-12 11:12:47 -04:00
let configs = select . getEntitiesConfig ( kind ) ;
2018-12-17 22:14:52 -05:00
2022-04-12 11:12:47 -04:00
if ( configs && configs . length !== 0 ) {
return configs ;
2021-05-19 11:09:27 -04:00
}
2018-12-17 22:14:52 -05:00
2023-02-07 02:04:52 -05:00
const loader = additionalEntityConfigLoaders . find ( l => l . kind === kind ) ;
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
if ( ! loader ) {
2021-05-19 11:09:27 -04:00
return [ ] ;
}
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
configs = await loader . loadEntities ( ) ;
dispatch ( addEntities ( configs ) ) ;
return configs ;
2021-11-08 09:29:21 -05:00
} ;
2020-06-26 09:33:47 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/get-normalized-comma-separable.js
2020-10-13 09:10:30 -04:00
/ * *
* Given a value which can be specified as one or the other of a comma - separated
* string or an array , returns a value normalized to an array of strings , or
* null if the value cannot be interpreted as either .
*
* @ param { string | string [ ] | * } value
*
* @ return { ? ( string [ ] ) } Normalized field value .
* /
function getNormalizedCommaSeparable ( value ) {
if ( typeof value === 'string' ) {
return value . split ( ',' ) ;
} else if ( Array . isArray ( value ) ) {
return value ;
}
return null ;
}
/* harmony default export */ var get _normalized _comma _separable = ( getNormalizedCommaSeparable ) ;
2020-06-26 09:33:47 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/with-weak-map-cache.js
2020-06-26 09:33:47 -04:00
/ * *
* Given a function , returns an enhanced function which caches the result and
* tracks in WeakMap . The result is only cached if the original function is
* passed a valid object - like argument ( requirement for WeakMap key ) .
*
* @ param { Function } fn Original function .
*
* @ return { Function } Enhanced caching function .
* /
function withWeakMapCache ( fn ) {
2021-05-19 11:09:27 -04:00
const cache = new WeakMap ( ) ;
return key => {
let value ;
2020-06-26 09:33:47 -04:00
if ( cache . has ( key ) ) {
value = cache . get ( key ) ;
} else {
value = fn ( key ) ; // Can reach here if key is not valid for WeakMap, since `has`
// will return false for invalid key. Since `set` will throw,
// ensure that key is valid before setting into cache.
2022-09-20 11:43:29 -04:00
if ( key !== null && typeof key === 'object' ) {
2020-06-26 09:33:47 -04:00
cache . set ( key , value ) ;
}
}
return value ;
} ;
}
/* harmony default export */ var with _weak _map _cache = ( withWeakMapCache ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/queried-data/get-query-parts.js
2020-06-26 09:33:47 -04:00
/ * *
* WordPress dependencies
* /
/ * *
* Internal dependencies
* /
/ * *
* An object of properties describing a specific query .
*
* @ typedef { Object } WPQueriedDataQueryParts
*
2020-10-13 09:10:30 -04:00
* @ property { number } page The query page ( 1 - based index , default 1 ) .
* @ property { number } perPage Items per page for query ( default 10 ) .
* @ property { string } stableKey An encoded stable string of all non -
* pagination , non - fields query parameters .
* @ property { ? ( string [ ] ) } fields Target subset of fields to derive from
* item objects .
* @ property { ? ( number [ ] ) } include Specific item IDs to include .
2021-11-08 09:29:21 -05:00
* @ property { string } context Scope under which the request is made ;
* determines returned fields in response .
2020-06-26 09:33:47 -04:00
* /
/ * *
* Given a query object , returns an object of parts , including pagination
* details ( ` page ` and ` perPage ` , or default values ) . All other properties are
* encoded into a stable ( idempotent ) ` stableKey ` value .
*
* @ param { Object } query Optional query object .
*
* @ return { WPQueriedDataQueryParts } Query parts .
* /
function getQueryParts ( query ) {
/ * *
* @ type { WPQueriedDataQueryParts }
* /
2021-05-19 11:09:27 -04:00
const parts = {
2020-06-26 09:33:47 -04:00
stableKey : '' ,
page : 1 ,
2020-10-13 09:10:30 -04:00
perPage : 10 ,
fields : null ,
2021-06-25 11:52:22 -04:00
include : null ,
context : 'default'
2020-06-26 09:33:47 -04:00
} ; // Ensure stable key by sorting keys. Also more efficient for iterating.
2021-05-19 11:09:27 -04:00
const keys = Object . keys ( query ) . sort ( ) ;
2020-06-26 09:33:47 -04:00
2021-05-19 11:09:27 -04:00
for ( let i = 0 ; i < keys . length ; i ++ ) {
const key = keys [ i ] ;
let value = query [ key ] ;
2020-06-26 09:33:47 -04:00
switch ( key ) {
case 'page' :
parts [ key ] = Number ( value ) ;
break ;
case 'per_page' :
parts . perPage = Number ( value ) ;
break ;
2021-06-25 11:52:22 -04:00
case 'context' :
parts . context = value ;
break ;
2020-06-26 09:33:47 -04:00
default :
2020-10-20 09:36:16 -04:00
// While in theory, we could exclude "_fields" from the stableKey
// because two request with different fields have the same results
// We're not able to ensure that because the server can decide to omit
2022-04-12 11:12:47 -04:00
// fields from the response even if we explicitly asked for it.
2020-10-20 09:36:16 -04:00
// Example: Asking for titles in posts without title support.
if ( key === '_fields' ) {
2022-04-12 11:12:47 -04:00
var _getNormalizedCommaSe ;
parts . fields = ( _getNormalizedCommaSe = get _normalized _comma _separable ( value ) ) !== null && _getNormalizedCommaSe !== void 0 ? _getNormalizedCommaSe : [ ] ; // Make sure to normalize value for `stableKey`
2021-01-27 21:04:13 -05:00
value = parts . fields . join ( ) ;
2021-11-08 09:29:21 -05:00
} // Two requests with different include values cannot have same results.
if ( key === 'include' ) {
2022-04-12 11:12:47 -04:00
var _getNormalizedCommaSe2 ;
2022-05-02 06:39:04 -04:00
if ( typeof value === 'number' ) {
value = value . toString ( ) ;
}
2022-04-12 11:12:47 -04:00
parts . include = ( ( _getNormalizedCommaSe2 = get _normalized _comma _separable ( value ) ) !== null && _getNormalizedCommaSe2 !== void 0 ? _getNormalizedCommaSe2 : [ ] ) . map ( Number ) ; // Normalize value for `stableKey`.
2021-11-08 09:29:21 -05:00
value = parts . include . join ( ) ;
2020-10-20 09:36:16 -04:00
} // While it could be any deterministic string, for simplicity's
2020-06-26 09:33:47 -04:00
// sake mimic querystring encoding for stable key.
//
// TODO: For consistency with PHP implementation, addQueryArgs
// should accept a key value pair, which may optimize its
// implementation for our use here, vs. iterating an object
// with only a single key.
2020-10-20 09:36:16 -04:00
2022-04-11 08:04:30 -04:00
parts . stableKey += ( parts . stableKey ? '&' : '' ) + ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '' , {
2021-05-19 11:09:27 -04:00
[ key ] : value
} ) . slice ( 1 ) ;
2018-12-17 22:14:52 -05:00
}
2020-06-26 09:33:47 -04:00
}
return parts ;
2018-12-13 23:41:57 -05:00
}
2020-06-26 09:33:47 -04:00
/* harmony default export */ var get _query _parts = ( with _weak _map _cache ( getQueryParts ) ) ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/queried-data/reducer.js
2019-09-19 11:19:18 -04:00
/ * *
* WordPress dependencies
* /
2018-12-17 22:14:52 -05:00
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Internal dependencies
2018-12-13 23:41:57 -05:00
* /
2021-06-25 11:52:22 -04:00
function getContextFromAction ( action ) {
const {
query
} = action ;
if ( ! query ) {
return 'default' ;
}
const queryParts = get _query _parts ( query ) ;
return queryParts . context ;
}
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Returns a merged array of item IDs , given details of the received paginated
* items . The array is sparse - like with ` undefined ` entries where holes exist .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ param { ? Array < number > } itemIds Original item IDs ( default empty array ) .
* @ param { number [ ] } nextItemIds Item IDs to merge .
* @ param { number } page Page of items merged .
* @ param { number } perPage Number of items per page .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ return { number [ ] } Merged array of item IDs .
2018-12-13 23:41:57 -05:00
* /
2021-06-25 11:52:22 -04:00
2018-12-17 22:14:52 -05:00
function getMergedItemIds ( itemIds , nextItemIds , page , perPage ) {
2022-04-12 11:12:47 -04:00
var _itemIds$length ;
2021-05-19 11:09:27 -04:00
const receivedAllIds = page === 1 && perPage === - 1 ;
2020-06-26 09:33:47 -04:00
if ( receivedAllIds ) {
return nextItemIds ;
}
2021-05-19 11:09:27 -04:00
const nextItemIdsStartIndex = ( page - 1 ) * perPage ; // If later page has already been received, default to the larger known
2018-12-17 22:14:52 -05:00
// size of the existing array, else calculate as extending the existing.
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const size = Math . max ( ( _itemIds$length = itemIds ? . length ) !== null && _itemIds$length !== void 0 ? _itemIds$length : 0 , nextItemIdsStartIndex + nextItemIds . length ) ; // Preallocate array since size is known.
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
const mergedItemIds = new Array ( size ) ;
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
for ( let i = 0 ; i < size ; i ++ ) {
2018-12-17 22:14:52 -05:00
// Preserve existing item ID except for subset of range of next items.
2021-05-19 11:09:27 -04:00
const isInNextItemsRange = i >= nextItemIdsStartIndex && i < nextItemIdsStartIndex + nextItemIds . length ;
2023-06-27 10:24:19 -04:00
mergedItemIds [ i ] = isInNextItemsRange ? nextItemIds [ i - nextItemIdsStartIndex ] : itemIds ? . [ i ] ;
2018-12-13 23:41:57 -05:00
}
2018-12-17 22:14:52 -05:00
return mergedItemIds ;
}
2023-02-07 02:04:52 -05:00
/ * *
* Helper function to filter out entities with certain IDs .
* Entities are keyed by their ID .
*
* @ param { Object } entities Entity objects , keyed by entity ID .
* @ param { Array } ids Entity IDs to filter out .
*
* @ return { Object } Filtered entities .
* /
function removeEntitiesById ( entities , ids ) {
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( entities ) . filter ( ( [ id ] ) => ! ids . some ( itemId => {
if ( Number . isInteger ( itemId ) ) {
return itemId === + id ;
}
2023-02-07 02:04:52 -05:00
2023-06-27 10:24:19 -04:00
return itemId === id ;
} ) ) ) ;
2023-02-07 02:04:52 -05:00
}
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Reducer tracking items state , keyed by ID . Items are assumed to be normal ,
* where identifiers are common across all queries .
2018-12-13 23:41:57 -05:00
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
2018-12-17 22:14:52 -05:00
* @ return { Object } Next state .
2018-12-13 23:41:57 -05:00
* /
2023-02-07 02:04:52 -05:00
2023-06-27 10:24:19 -04:00
function items ( state = { } , action ) {
2018-12-13 23:41:57 -05:00
switch ( action . type ) {
2018-12-17 22:14:52 -05:00
case 'RECEIVE_ITEMS' :
2021-06-25 11:52:22 -04:00
{
const context = getContextFromAction ( action ) ;
const key = action . key || DEFAULT _ENTITY _KEY ;
return { ... state ,
[ context ] : { ... state [ context ] ,
... action . items . reduce ( ( accumulator , value ) => {
const itemId = value [ key ] ;
2023-06-27 10:24:19 -04:00
accumulator [ itemId ] = conservativeMapItem ( state ? . [ context ] ? . [ itemId ] , value ) ;
2021-06-25 11:52:22 -04:00
return accumulator ;
} , { } )
}
} ;
}
2020-10-13 09:10:30 -04:00
case 'REMOVE_ITEMS' :
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( state ) . map ( ( [ itemId , contextState ] ) => [ itemId , removeEntitiesById ( contextState , action . itemIds ) ] ) ) ;
2018-12-13 23:41:57 -05:00
}
return state ;
}
2020-10-13 09:10:30 -04:00
/ * *
* Reducer tracking item completeness , keyed by ID . A complete item is one for
* which all fields are known . This is used in supporting ` _fields ` queries ,
* where not all properties associated with an entity are necessarily returned .
* In such cases , completeness is used as an indication of whether it would be
* safe to use queried data for a non - ` _fields ` - limited request .
*
2022-04-12 11:12:47 -04:00
* @ param { Object < string , Object < string , boolean >> } state Current state .
* @ param { Object } action Dispatched action .
2020-10-13 09:10:30 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { Object < string , Object < string , boolean >> } Next state .
2020-10-13 09:10:30 -04:00
* /
2023-06-27 10:24:19 -04:00
function itemIsComplete ( state = { } , action ) {
2021-06-25 11:52:22 -04:00
switch ( action . type ) {
case 'RECEIVE_ITEMS' :
{
const context = getContextFromAction ( action ) ;
const {
query ,
key = DEFAULT _ENTITY _KEY
} = action ; // An item is considered complete if it is received without an associated
// fields query. Ideally, this would be implemented in such a way where the
// complete aggregate of all fields would satisfy completeness. Since the
2022-04-12 11:12:47 -04:00
// fields are not consistent across all entities, this would require
2021-06-25 11:52:22 -04:00
// introspection on the REST schema for each entity to know which fields
// compose a complete item for that entity.
const queryParts = query ? get _query _parts ( query ) : { } ;
const isCompleteQuery = ! query || ! Array . isArray ( queryParts . fields ) ;
return { ... state ,
[ context ] : { ... state [ context ] ,
... action . items . reduce ( ( result , item ) => {
const itemId = item [ key ] ; // Defer to completeness if already assigned. Technically the
// data may be outdated if receiving items for a field subset.
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
result [ itemId ] = state ? . [ context ] ? . [ itemId ] || isCompleteQuery ;
2021-06-25 11:52:22 -04:00
return result ;
} , { } )
}
} ;
}
2020-10-13 09:10:30 -04:00
2021-06-25 11:52:22 -04:00
case 'REMOVE_ITEMS' :
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( state ) . map ( ( [ itemId , contextState ] ) => [ itemId , removeEntitiesById ( contextState , action . itemIds ) ] ) ) ;
2021-06-25 11:52:22 -04:00
}
2020-10-13 09:10:30 -04:00
2021-06-25 11:52:22 -04:00
return state ;
2020-10-13 09:10:30 -04:00
}
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Reducer tracking queries state , keyed by stable query key . Each reducer
* query object includes ` itemIds ` and ` requestingPageByPerPage ` .
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
*
2018-12-17 22:14:52 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
*
2018-12-17 22:14:52 -05:00
* @ return { Object } Next state .
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
* /
2023-02-07 02:04:52 -05:00
const receiveQueries = ( 0 , external _wp _compose _namespaceObject . compose ) ( [ // Limit to matching action type so we don't attempt to replace action on
2018-12-17 22:14:52 -05:00
// an unhandled action.
2021-05-19 11:09:27 -04:00
if _matching _action ( action => 'query' in action ) , // Inject query parts into action for use both in `onSubKey` and reducer.
replace _action ( action => {
2018-12-17 22:14:52 -05:00
// `ifMatchingAction` still passes on initialization, where state is
// undefined and a query is not assigned. Avoid attempting to parse
// parts. `onSubKey` will omit by lack of `stableKey`.
if ( action . query ) {
2021-05-19 11:09:27 -04:00
return { ... action ,
... get _query _parts ( action . query )
} ;
2018-12-17 22:14:52 -05:00
}
return action ;
2021-06-25 11:52:22 -04:00
} ) , on _sub _key ( 'context' ) , // Queries shape is shared, but keyed by query `stableKey` part. Original
2018-12-17 22:14:52 -05:00
// reducer tracks only a single query object.
2023-06-27 10:24:19 -04:00
on _sub _key ( 'stableKey' ) ] ) ( ( state = null , action ) => {
2021-05-19 11:09:27 -04:00
const {
type ,
page ,
perPage ,
key = DEFAULT _ENTITY _KEY
} = action ;
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
2018-12-17 22:14:52 -05:00
if ( type !== 'RECEIVE_ITEMS' ) {
return state ;
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
}
2023-02-07 02:04:52 -05:00
return getMergedItemIds ( state || [ ] , action . items . map ( item => item [ key ] ) , page , perPage ) ;
2018-12-17 22:14:52 -05:00
} ) ;
2020-10-13 09:10:30 -04:00
/ * *
* Reducer tracking queries state .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Next state .
* /
2023-06-27 10:24:19 -04:00
const queries = ( state = { } , action ) => {
2020-10-13 09:10:30 -04:00
switch ( action . type ) {
case 'RECEIVE_ITEMS' :
return receiveQueries ( state , action ) ;
case 'REMOVE_ITEMS' :
2021-05-19 11:09:27 -04:00
const removedItems = action . itemIds . reduce ( ( result , itemId ) => {
2020-10-13 09:10:30 -04:00
result [ itemId ] = true ;
return result ;
} , { } ) ;
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( state ) . map ( ( [ queryGroup , contextQueries ] ) => [ queryGroup , Object . fromEntries ( Object . entries ( contextQueries ) . map ( ( [ query , queryItems ] ) => [ query , queryItems . filter ( queryId => ! removedItems [ queryId ] ) ] ) ) ] ) ) ;
2020-10-13 09:10:30 -04:00
default :
return state ;
}
} ;
2022-04-11 08:04:30 -04:00
/* harmony default export */ var reducer = ( ( 0 , external _wp _data _namespaceObject . combineReducers ) ( {
items ,
2021-05-19 11:09:27 -04:00
itemIsComplete ,
2022-04-11 08:04:30 -04:00
queries
2018-12-13 23:41:57 -05:00
} ) ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/reducer.js
2021-11-08 09:29:21 -05:00
/ * *
* External dependencies
* /
2021-01-27 21:04:13 -05:00
2021-11-08 09:29:21 -05:00
/ * *
* WordPress dependencies
* /
2021-01-27 21:04:13 -05:00
2023-02-07 02:04:52 -05:00
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('./types').AnyFunction} AnyFunction */
2021-11-08 09:29:21 -05:00
/ * *
* Reducer managing terms state . Keyed by taxonomy slug , the value is either
* undefined ( if no request has been made for given taxonomy ) , null ( if a
* request is in - flight for given taxonomy ) , or the array of terms for the
* taxonomy .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
function terms ( state = { } , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
case 'RECEIVE_TERMS' :
2021-05-19 11:09:27 -04:00
return { ... state ,
[ action . taxonomy ] : action . terms
} ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
2018-12-13 23:41:57 -05:00
}
/ * *
2018-12-17 22:14:52 -05:00
* Reducer managing authors state . Keyed by id .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
function users ( state = {
byId : { } ,
queries : { }
} , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
case 'RECEIVE_USER_QUERY' :
return {
2021-05-19 11:09:27 -04:00
byId : { ... state . byId ,
2022-09-20 11:43:29 -04:00
// Key users by their ID.
... action . users . reduce ( ( newUsers , user ) => ( { ... newUsers ,
[ user . id ] : user
} ) , { } )
2021-05-19 11:09:27 -04:00
} ,
queries : { ... state . queries ,
2023-02-07 02:04:52 -05:00
[ action . queryID ] : action . users . map ( user => user . id )
2021-05-19 11:09:27 -04:00
}
2018-12-17 22:14:52 -05:00
} ;
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
2018-12-13 23:41:57 -05:00
}
2019-09-19 11:19:18 -04:00
/ * *
* Reducer managing current user state .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
* /
2023-06-27 10:24:19 -04:00
function currentUser ( state = { } , action ) {
2019-09-19 11:19:18 -04:00
switch ( action . type ) {
case 'RECEIVE_CURRENT_USER' :
return action . currentUser ;
}
return state ;
}
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Reducer managing taxonomies .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
function taxonomies ( state = [ ] , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
case 'RECEIVE_TAXONOMIES' :
return action . taxonomies ;
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
}
2020-06-26 09:33:47 -04:00
/ * *
* Reducer managing the current theme .
*
2022-04-12 11:12:47 -04:00
* @ param { string | undefined } state Current state .
* @ param { Object } action Dispatched action .
2020-06-26 09:33:47 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { string | undefined } Updated state .
2020-06-26 09:33:47 -04:00
* /
2023-06-27 10:24:19 -04:00
function currentTheme ( state = undefined , action ) {
2020-06-26 09:33:47 -04:00
switch ( action . type ) {
case 'RECEIVE_CURRENT_THEME' :
return action . currentTheme . stylesheet ;
}
return state ;
}
/ * *
2021-11-08 09:29:21 -05:00
* Reducer managing the current global styles id .
2020-06-26 09:33:47 -04:00
*
2022-04-12 11:12:47 -04:00
* @ param { string | undefined } state Current state .
* @ param { Object } action Dispatched action .
2020-06-26 09:33:47 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { string | undefined } Updated state .
2020-06-26 09:33:47 -04:00
* /
2023-06-27 10:24:19 -04:00
function currentGlobalStylesId ( state = undefined , action ) {
2020-06-26 09:33:47 -04:00
switch ( action . type ) {
2021-11-08 09:29:21 -05:00
case 'RECEIVE_CURRENT_GLOBAL_STYLES_ID' :
return action . id ;
2020-06-26 09:33:47 -04:00
}
return state ;
}
2018-12-17 22:14:52 -05:00
/ * *
2021-11-08 09:29:21 -05:00
* Reducer managing the theme base global styles .
2018-12-17 22:14:52 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { Record < string , object > } state Current state .
* @ param { Object } action Dispatched action .
2018-12-17 22:14:52 -05:00
*
2022-04-12 11:12:47 -04:00
* @ return { Record < string , object > } Updated state .
2018-12-17 22:14:52 -05:00
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
function themeBaseGlobalStyles ( state = { } , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
2021-11-08 09:29:21 -05:00
case 'RECEIVE_THEME_GLOBAL_STYLES' :
2021-05-19 11:09:27 -04:00
return { ... state ,
2021-11-08 09:29:21 -05:00
[ action . stylesheet ] : action . globalStyles
2021-05-19 11:09:27 -04:00
} ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
2018-12-13 23:41:57 -05:00
}
2022-04-12 11:12:47 -04:00
/ * *
* Reducer managing the theme global styles variations .
*
* @ param { Record < string , object > } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Record < string , object > } Updated state .
* /
2023-06-27 10:24:19 -04:00
function themeGlobalStyleVariations ( state = { } , action ) {
2022-04-12 11:12:47 -04:00
switch ( action . type ) {
case 'RECEIVE_THEME_GLOBAL_STYLE_VARIATIONS' :
return { ... state ,
[ action . stylesheet ] : action . variations
} ;
}
return state ;
}
2023-06-27 10:24:19 -04:00
const withMultiEntityRecordEdits = reducer => ( state , action ) => {
if ( action . type === 'UNDO' || action . type === 'REDO' ) {
const {
stackedEdits
} = action ;
let newState = state ;
stackedEdits . forEach ( ( {
kind ,
name ,
recordId ,
property ,
from ,
to
} ) => {
newState = reducer ( newState , {
type : 'EDIT_ENTITY_RECORD' ,
kind ,
name ,
recordId ,
edits : {
[ property ] : action . type === 'UNDO' ? from : to
}
} ) ;
} ) ;
return newState ;
}
return reducer ( state , action ) ;
} ;
2018-12-17 22:14:52 -05:00
/ * *
* Higher Order Reducer for a given entity config . It supports :
*
2019-09-19 11:19:18 -04:00
* - Fetching
* - Editing
* - Saving
2018-12-17 22:14:52 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { Object } entityConfig Entity config .
2018-12-17 22:14:52 -05:00
*
2022-04-12 11:12:47 -04:00
* @ return { AnyFunction } Reducer .
2018-12-17 22:14:52 -05:00
* /
2018-12-14 06:02:53 -05:00
2023-06-27 10:24:19 -04:00
2022-04-11 08:04:30 -04:00
function entity ( entityConfig ) {
2023-06-27 10:24:19 -04:00
return ( 0 , external _wp _compose _namespaceObject . compose ) ( [ withMultiEntityRecordEdits , // Limit to matching action type so we don't attempt to replace action on
2018-12-17 22:14:52 -05:00
// an unhandled action.
2021-05-19 11:09:27 -04:00
if _matching _action ( action => action . name && action . kind && action . name === entityConfig . name && action . kind === entityConfig . kind ) , // Inject the entity config into the action.
replace _action ( action => {
return { ... action ,
2018-12-17 22:14:52 -05:00
key : entityConfig . key || DEFAULT _ENTITY _KEY
2021-05-19 11:09:27 -04:00
} ;
2022-04-11 08:04:30 -04:00
} ) ] ) ( ( 0 , external _wp _data _namespaceObject . combineReducers ) ( {
2021-05-19 11:09:27 -04:00
queriedData : reducer ,
2023-06-27 10:24:19 -04:00
edits : ( state = { } , action ) => {
var _action$query$context ;
2021-11-15 07:50:17 -05:00
2019-09-19 11:19:18 -04:00
switch ( action . type ) {
case 'RECEIVE_ITEMS' :
2023-06-27 10:24:19 -04:00
const context = ( _action$query$context = action ? . query ? . context ) !== null && _action$query$context !== void 0 ? _action$query$context : 'default' ;
2021-06-25 11:52:22 -04:00
if ( context !== 'default' ) {
return state ;
}
2021-05-19 11:09:27 -04:00
const nextState = { ... state
} ;
2019-09-19 11:19:18 -04:00
2021-05-19 11:09:27 -04:00
for ( const record of action . items ) {
const recordId = record [ action . key ] ;
const edits = nextState [ recordId ] ;
2019-09-19 11:19:18 -04:00
2021-05-19 11:09:27 -04:00
if ( ! edits ) {
continue ;
}
2019-09-19 11:19:18 -04:00
2021-05-19 11:09:27 -04:00
const nextEdits = Object . keys ( edits ) . reduce ( ( acc , key ) => {
2023-06-27 10:24:19 -04:00
var _record$key$raw ;
2021-05-19 11:09:27 -04:00
// If the edited value is still different to the persisted value,
// keep the edited value in edits.
if ( // Edits are the "raw" attribute values, but records may have
// objects with more properties, so we use `get` here for the
// comparison.
2023-06-27 10:24:19 -04:00
! es6 _default ( ) ( edits [ key ] , ( _record$key$raw = record [ key ] ? . raw ) !== null && _record$key$raw !== void 0 ? _record$key$raw : record [ key ] ) && ( // Sometimes the server alters the sent value which means
2021-05-19 11:09:27 -04:00
// we need to also remove the edits before the api request.
2023-02-07 02:04:52 -05:00
! action . persistedEdits || ! es6 _default ( ) ( edits [ key ] , action . persistedEdits [ key ] ) ) ) {
2021-05-19 11:09:27 -04:00
acc [ key ] = edits [ key ] ;
2019-09-19 11:19:18 -04:00
}
2021-05-19 11:09:27 -04:00
return acc ;
} , { } ) ;
2019-09-19 11:19:18 -04:00
2021-05-19 11:09:27 -04:00
if ( Object . keys ( nextEdits ) . length ) {
nextState [ recordId ] = nextEdits ;
} else {
delete nextState [ recordId ] ;
2019-09-19 11:19:18 -04:00
}
}
return nextState ;
case 'EDIT_ENTITY_RECORD' :
2021-05-19 11:09:27 -04:00
const nextEdits = { ... state [ action . recordId ] ,
... action . edits
} ;
Object . keys ( nextEdits ) . forEach ( key => {
2019-09-19 11:19:18 -04:00
// Delete cleared edits so that the properties
// are not considered dirty.
if ( nextEdits [ key ] === undefined ) {
delete nextEdits [ key ] ;
}
} ) ;
2021-05-19 11:09:27 -04:00
return { ... state ,
[ action . recordId ] : nextEdits
} ;
2019-09-19 11:19:18 -04:00
}
return state ;
} ,
2023-06-27 10:24:19 -04:00
saving : ( state = { } , action ) => {
2019-09-19 11:19:18 -04:00
switch ( action . type ) {
case 'SAVE_ENTITY_RECORD_START' :
case 'SAVE_ENTITY_RECORD_FINISH' :
2021-05-19 11:09:27 -04:00
return { ... state ,
[ action . recordId ] : {
pending : action . type === 'SAVE_ENTITY_RECORD_START' ,
error : action . error ,
isAutosave : action . isAutosave
}
} ;
2019-09-19 11:19:18 -04:00
}
2020-10-13 09:10:30 -04:00
return state ;
} ,
2023-06-27 10:24:19 -04:00
deleting : ( state = { } , action ) => {
2020-10-13 09:10:30 -04:00
switch ( action . type ) {
case 'DELETE_ENTITY_RECORD_START' :
case 'DELETE_ENTITY_RECORD_FINISH' :
2021-05-19 11:09:27 -04:00
return { ... state ,
[ action . recordId ] : {
pending : action . type === 'DELETE_ENTITY_RECORD_START' ,
error : action . error
}
} ;
2020-10-13 09:10:30 -04:00
}
2019-09-19 11:19:18 -04:00
return state ;
}
} ) ) ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
/ * *
2018-12-17 22:14:52 -05:00
* Reducer keeping track of the registered entities .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
2018-12-13 23:41:57 -05:00
* /
2018-12-14 06:02:53 -05:00
2023-06-27 10:24:19 -04:00
function entitiesConfig ( state = rootEntitiesConfig , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
case 'ADD_ENTITIES' :
2021-05-19 11:09:27 -04:00
return [ ... state , ... action . entities ] ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
2018-12-13 23:41:57 -05:00
}
/ * *
2018-12-17 22:14:52 -05:00
* Reducer keeping track of the registered entities config and data .
2018-12-13 23:41:57 -05:00
*
2018-12-17 22:14:52 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const entities = ( state = { } , action ) => {
2022-04-12 11:12:47 -04:00
const newConfig = entitiesConfig ( state . config , action ) ; // Generates a dynamic reducer for the entities.
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
let entitiesDataReducer = state . reducer ;
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
if ( ! entitiesDataReducer || newConfig !== state . config ) {
2023-06-27 10:24:19 -04:00
const entitiesByKind = newConfig . reduce ( ( acc , record ) => {
const {
kind
} = record ;
if ( ! acc [ kind ] ) {
acc [ kind ] = [ ] ;
}
acc [ kind ] . push ( record ) ;
return acc ;
} , { } ) ;
entitiesDataReducer = ( 0 , external _wp _data _namespaceObject . combineReducers ) ( Object . entries ( entitiesByKind ) . reduce ( ( memo , [ kind , subEntities ] ) => {
2022-04-11 08:04:30 -04:00
const kindReducer = ( 0 , external _wp _data _namespaceObject . combineReducers ) ( subEntities . reduce ( ( kindMemo , entityConfig ) => ( { ... kindMemo ,
[ entityConfig . name ] : entity ( entityConfig )
2021-05-19 11:09:27 -04:00
} ) , { } ) ) ;
2018-12-17 22:14:52 -05:00
memo [ kind ] = kindReducer ;
return memo ;
} , { } ) ) ;
}
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
const newData = entitiesDataReducer ( state . records , action ) ;
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
2022-04-12 11:12:47 -04:00
if ( newData === state . records && newConfig === state . config && entitiesDataReducer === state . reducer ) {
2018-12-17 22:14:52 -05:00
return state ;
}
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
2018-12-17 22:14:52 -05:00
return {
reducer : entitiesDataReducer ,
2022-04-12 11:12:47 -04:00
records : newData ,
2018-12-17 22:14:52 -05:00
config : newConfig
} ;
} ;
2019-09-19 11:19:18 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* @ typedef { Object } UndoStateMeta
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ property { number } list The undo stack .
* @ property { number } offset Where in the undo stack we are .
2023-07-07 03:21:17 -04:00
* @ property { Object } cache Cache of unpersisted edits .
2022-04-12 11:12:47 -04:00
* /
/** @typedef {Array<Object> & UndoStateMeta} UndoState */
/ * *
* @ type { UndoState }
2019-09-19 11:19:18 -04:00
*
2022-04-12 11:12:47 -04:00
* @ todo Given how we use this we might want to make a custom class for it .
2019-09-19 11:19:18 -04:00
* /
2023-06-27 10:24:19 -04:00
const UNDO _INITIAL _STATE = {
list : [ ] ,
2022-04-12 11:12:47 -04:00
offset : 0
2023-06-27 10:24:19 -04:00
} ;
2022-04-12 11:12:47 -04:00
/ * *
* Reducer keeping track of entity edit undo history .
*
* @ param { UndoState } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { UndoState } Updated state .
* /
2023-06-27 10:24:19 -04:00
function reducer _undo ( state = UNDO _INITIAL _STATE , action ) {
const omitPendingRedos = currentState => {
return { ... currentState ,
list : currentState . list . slice ( 0 , currentState . offset || undefined ) ,
offset : 0
} ;
} ;
2021-11-15 07:50:17 -05:00
2023-06-27 10:24:19 -04:00
const appendCachedEditsToLastUndo = currentState => {
if ( ! currentState . cache ) {
return currentState ;
}
2022-02-17 14:18:25 -05:00
2023-06-27 10:24:19 -04:00
let nextState = { ... currentState ,
list : [ ... currentState . list ]
} ;
nextState = omitPendingRedos ( nextState ) ;
const previousUndoState = nextState . list . pop ( ) ;
const updatedUndoState = currentState . cache . reduce ( appendEditToStack , previousUndoState ) ;
nextState . list . push ( updatedUndoState ) ;
return { ... nextState ,
cache : undefined
} ;
} ;
const appendEditToStack = ( stack = [ ] , {
kind ,
name ,
recordId ,
property ,
from ,
to
} ) => {
const existingEditIndex = stack ? . findIndex ( ( {
kind : k ,
name : n ,
recordId : r ,
property : p
} ) => {
return k === kind && n === name && r === recordId && p === property ;
} ) ;
const nextStack = [ ... stack ] ;
if ( existingEditIndex !== - 1 ) {
// If the edit is already in the stack leave the initial "from" value.
nextStack [ existingEditIndex ] = { ... nextStack [ existingEditIndex ] ,
to
} ;
} else {
nextStack . push ( {
kind ,
name ,
recordId ,
property ,
from ,
to
} ) ;
}
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
return nextStack ;
} ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
switch ( action . type ) {
case 'CREATE_UNDO_LEVEL' :
return appendCachedEditsToLastUndo ( state ) ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
case 'UNDO' :
case 'REDO' :
{
const nextState = appendCachedEditsToLastUndo ( state ) ;
return { ... nextState ,
offset : state . offset + ( action . type === 'UNDO' ? - 1 : 1 )
2021-05-19 11:09:27 -04:00
} ;
2023-06-27 10:24:19 -04:00
}
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
case 'EDIT_ENTITY_RECORD' :
{
if ( ! action . meta . undo ) {
return state ;
}
2019-10-15 12:17:12 -04:00
2023-06-27 10:24:19 -04:00
const edits = Object . keys ( action . edits ) . map ( key => {
return {
kind : action . kind ,
name : action . name ,
recordId : action . recordId ,
property : key ,
from : action . meta . undo . edits [ key ] ,
to : action . edits [ key ]
} ;
2019-10-15 12:17:12 -04:00
} ) ;
2019-09-19 11:19:18 -04:00
2023-07-07 03:21:17 -04:00
if ( action . meta . undo . isCached ) {
2023-06-27 10:24:19 -04:00
return { ... state ,
cache : edits . reduce ( appendEditToStack , state . cache )
} ;
}
let nextState = omitPendingRedos ( state ) ;
nextState = appendCachedEditsToLastUndo ( nextState ) ;
nextState = { ... nextState ,
list : [ ... nextState . list ]
} ; // When an edit is a function it's an optimization to avoid running some expensive operation.
// We can't rely on the function references being the same so we opt out of comparing them here.
2019-10-15 12:17:12 -04:00
2023-06-27 10:24:19 -04:00
const comparisonUndoEdits = Object . values ( action . meta . undo . edits ) . filter ( edit => typeof edit !== 'function' ) ;
const comparisonEdits = Object . values ( action . edits ) . filter ( edit => typeof edit !== 'function' ) ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
if ( ! external _wp _isShallowEqual _default ( ) ( comparisonUndoEdits , comparisonEdits ) ) {
nextState . list . push ( edits ) ;
}
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
return nextState ;
}
2019-09-19 11:19:18 -04:00
}
return state ;
}
2018-12-17 22:14:52 -05:00
/ * *
* Reducer managing embed preview data .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
* /
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
2023-06-27 10:24:19 -04:00
function embedPreviews ( state = { } , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
case 'RECEIVE_EMBED_PREVIEW' :
2021-05-19 11:09:27 -04:00
const {
url ,
preview
} = action ;
return { ... state ,
[ url ] : preview
} ;
2018-12-17 22:14:52 -05:00
}
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
2018-12-17 22:14:52 -05:00
return state ;
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
}
2018-12-17 22:14:52 -05:00
/ * *
2019-03-07 04:09:59 -05:00
* State which tracks whether the user can perform an action on a REST
* resource .
2018-12-17 22:14:52 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
2018-12-17 22:14:52 -05:00
*
* @ return { Object } Updated state .
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
function userPermissions ( state = { } , action ) {
2018-12-17 22:14:52 -05:00
switch ( action . type ) {
2019-03-07 04:09:59 -05:00
case 'RECEIVE_USER_PERMISSION' :
2021-05-19 11:09:27 -04:00
return { ... state ,
[ action . key ] : action . isAllowed
} ;
2018-12-17 22:14:52 -05:00
}
2018-12-13 23:41:57 -05:00
2018-12-17 22:14:52 -05:00
return state ;
}
2019-09-19 11:19:18 -04:00
/ * *
* Reducer returning autosaves keyed by their parent ' s post id .
*
2021-11-08 09:29:21 -05:00
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
2019-09-19 11:19:18 -04:00
*
* @ return { Object } Updated state .
* /
2023-06-27 10:24:19 -04:00
function autosaves ( state = { } , action ) {
2019-09-19 11:19:18 -04:00
switch ( action . type ) {
case 'RECEIVE_AUTOSAVES' :
2021-05-19 11:09:27 -04:00
const {
postId ,
autosaves : autosavesData
} = action ;
return { ... state ,
[ postId ] : autosavesData
} ;
2019-09-19 11:19:18 -04:00
}
return state ;
}
2023-06-27 10:24:19 -04:00
function blockPatterns ( state = [ ] , action ) {
2022-04-12 11:12:47 -04:00
switch ( action . type ) {
case 'RECEIVE_BLOCK_PATTERNS' :
return action . patterns ;
}
return state ;
}
2023-06-27 10:24:19 -04:00
function blockPatternCategories ( state = [ ] , action ) {
2022-04-12 11:12:47 -04:00
switch ( action . type ) {
case 'RECEIVE_BLOCK_PATTERN_CATEGORIES' :
return action . categories ;
}
return state ;
}
2023-06-27 10:24:19 -04:00
function navigationFallbackId ( state = null , action ) {
switch ( action . type ) {
case 'RECEIVE_NAVIGATION_FALLBACK_ID' :
return action . fallbackId ;
}
return state ;
}
/ * *
* Reducer managing the theme global styles revisions .
*
* @ param { Record < string , object > } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Record < string , object > } Updated state .
* /
function themeGlobalStyleRevisions ( state = { } , action ) {
switch ( action . type ) {
case 'RECEIVE_THEME_GLOBAL_STYLE_REVISIONS' :
return { ... state ,
[ action . currentId ] : action . revisions
} ;
}
return state ;
}
2022-04-11 08:04:30 -04:00
/* harmony default export */ var build _module _reducer = ( ( 0 , external _wp _data _namespaceObject . combineReducers ) ( {
2021-05-19 11:09:27 -04:00
terms ,
2022-04-11 08:04:30 -04:00
users ,
currentTheme ,
2021-11-08 09:29:21 -05:00
currentGlobalStylesId ,
2022-04-11 08:04:30 -04:00
currentUser ,
2022-04-12 11:12:47 -04:00
themeGlobalStyleVariations ,
2021-11-08 09:29:21 -05:00
themeBaseGlobalStyles ,
2023-06-27 10:24:19 -04:00
themeGlobalStyleRevisions ,
2022-04-11 08:04:30 -04:00
taxonomies ,
entities ,
2019-09-19 11:19:18 -04:00
undo : reducer _undo ,
2021-05-19 11:09:27 -04:00
embedPreviews ,
userPermissions ,
2022-04-12 11:12:47 -04:00
autosaves ,
blockPatterns ,
2023-06-27 10:24:19 -04:00
blockPatternCategories ,
navigationFallbackId
2018-12-17 22:14:52 -05:00
} ) ) ;
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/rememo/rememo.js
2019-03-07 04:09:59 -05:00
2022-09-20 11:43:29 -04:00
/** @typedef {(...args: any[]) => *[]} GetDependants */
2020-06-26 09:33:47 -04:00
2022-09-20 11:43:29 -04:00
/** @typedef {() => void} Clear */
2022-04-11 08:04:30 -04:00
2020-06-26 09:33:47 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* @ typedef { {
* getDependants : GetDependants ,
* clear : Clear
* } } EnhancedSelector
* /
/ * *
* Internal cache entry .
*
* @ typedef CacheNode
*
* @ property { ? CacheNode | undefined } [ prev ] Previous node .
* @ property { ? CacheNode | undefined } [ next ] Next node .
* @ property { * [ ] } args Function arguments for cache entry .
* @ property { * } val Function result .
* /
/ * *
* @ typedef Cache
2022-04-11 08:04:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ property { Clear } clear Function to clear cache .
* @ property { boolean } [ isUniqueByDependants ] Whether dependants are valid in
* considering cache uniqueness . A cache is unique if dependents are all arrays
* or objects .
* @ property { CacheNode ? } [ head ] Cache head .
* @ property { * [ ] } [ lastDependants ] Dependants from previous invocation .
2020-06-26 09:33:47 -04:00
* /
2020-10-13 09:10:30 -04:00
2020-06-26 09:33:47 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* Arbitrary value used as key for referencing cache object in WeakMap tree .
2022-04-11 08:04:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ type { { } }
2020-06-26 09:33:47 -04:00
* /
2022-09-20 11:43:29 -04:00
var LEAF _KEY = { } ;
2020-06-26 09:33:47 -04:00
/ * *
2022-04-11 08:04:30 -04:00
* Returns the first argument as the sole entry in an array .
2020-06-26 09:33:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ template T
*
* @ param { T } value Value to return .
2022-04-11 08:04:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return { [ T ] } Value returned as entry in array .
2020-06-26 09:33:47 -04:00
* /
2022-09-20 11:43:29 -04:00
function arrayOf ( value ) {
return [ value ] ;
2022-04-11 08:04:30 -04:00
}
2020-06-26 09:33:47 -04:00
/ * *
2022-04-11 08:04:30 -04:00
* Returns true if the value passed is object - like , or false otherwise . A value
* is object - like if it can support property assignment , e . g . object or array .
2020-06-26 09:33:47 -04:00
*
2022-04-11 08:04:30 -04:00
* @ param { * } value Value to test .
2020-06-26 09:33:47 -04:00
*
2022-04-11 08:04:30 -04:00
* @ return { boolean } Whether value is object - like .
2020-06-26 09:33:47 -04:00
* /
2022-09-20 11:43:29 -04:00
function isObjectLike ( value ) {
return ! ! value && 'object' === typeof value ;
2022-04-11 08:04:30 -04:00
}
/ * *
* Creates and returns a new cache object .
*
2022-09-20 11:43:29 -04:00
* @ return { Cache } Cache object .
2022-04-11 08:04:30 -04:00
* /
function createCache ( ) {
2022-09-20 11:43:29 -04:00
/** @type {Cache} */
2022-04-11 08:04:30 -04:00
var cache = {
2022-09-20 11:43:29 -04:00
clear : function ( ) {
2022-04-11 08:04:30 -04:00
cache . head = null ;
} ,
} ;
return cache ;
}
/ * *
* Returns true if entries within the two arrays are strictly equal by
* reference from a starting index .
*
2022-09-20 11:43:29 -04:00
* @ param { * [ ] } a First array .
* @ param { * [ ] } b Second array .
2022-04-11 08:04:30 -04:00
* @ param { number } fromIndex Index from which to start comparison .
*
* @ return { boolean } Whether arrays are shallowly equal .
* /
2022-09-20 11:43:29 -04:00
function isShallowEqual ( a , b , fromIndex ) {
2022-04-11 08:04:30 -04:00
var i ;
2022-09-20 11:43:29 -04:00
if ( a . length !== b . length ) {
2022-04-11 08:04:30 -04:00
return false ;
}
2022-09-20 11:43:29 -04:00
for ( i = fromIndex ; i < a . length ; i ++ ) {
if ( a [ i ] !== b [ i ] ) {
2022-04-11 08:04:30 -04:00
return false ;
}
}
return true ;
}
/ * *
* Returns a memoized selector function . The getDependants function argument is
* called before the memoized selector and is expected to return an immutable
* reference or array of references on which the selector depends for computing
* its own return value . The memoize cache is preserved only as long as those
* dependant references remain the same . If getDependants returns a different
* reference ( s ) , the cache is cleared and the selector value regenerated .
*
2022-09-20 11:43:29 -04:00
* @ template { ( ... args : * [ ] ) => * } S
2022-04-11 08:04:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ param { S } selector Selector function .
* @ param { GetDependants = } getDependants Dependant getter returning an array of
* references used in cache bust consideration .
2022-04-11 08:04:30 -04:00
* /
2022-09-20 11:43:29 -04:00
/* harmony default export */ function rememo ( selector , getDependants ) {
/** @type {WeakMap<*,*>} */
var rootCache ;
2022-04-11 08:04:30 -04:00
2022-09-20 11:43:29 -04:00
/** @type {GetDependants} */
var normalizedGetDependants = getDependants ? getDependants : arrayOf ;
2022-04-11 08:04:30 -04:00
/ * *
* Returns the cache for a given dependants array . When possible , a WeakMap
* will be used to create a unique cache for each set of dependants . This
* is feasible due to the nature of WeakMap in allowing garbage collection
* to occur on entries where the key object is no longer referenced . Since
* WeakMap requires the key to be an object , this is only possible when the
* dependant is object - like . The root cache is created as a hierarchy where
* each top - level key is the first entry in a dependants set , the value a
* WeakMap where each key is the next dependant , and so on . This continues
* so long as the dependants are object - like . If no dependants are object -
* like , then the cache is shared across all invocations .
*
* @ see isObjectLike
*
2022-09-20 11:43:29 -04:00
* @ param { * [ ] } dependants Selector dependants .
2022-04-11 08:04:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return { Cache } Cache object .
2022-04-11 08:04:30 -04:00
* /
2022-09-20 11:43:29 -04:00
function getCache ( dependants ) {
2022-04-11 08:04:30 -04:00
var caches = rootCache ,
isUniqueByDependants = true ,
2022-09-20 11:43:29 -04:00
i ,
dependant ,
map ,
cache ;
2022-04-11 08:04:30 -04:00
2022-09-20 11:43:29 -04:00
for ( i = 0 ; i < dependants . length ; i ++ ) {
dependant = dependants [ i ] ;
2022-04-11 08:04:30 -04:00
// Can only compose WeakMap from object-like key.
2022-09-20 11:43:29 -04:00
if ( ! isObjectLike ( dependant ) ) {
2022-04-11 08:04:30 -04:00
isUniqueByDependants = false ;
break ;
}
// Does current segment of cache already have a WeakMap?
2022-09-20 11:43:29 -04:00
if ( caches . has ( dependant ) ) {
2022-04-11 08:04:30 -04:00
// Traverse into nested WeakMap.
2022-09-20 11:43:29 -04:00
caches = caches . get ( dependant ) ;
2022-04-11 08:04:30 -04:00
} else {
// Create, set, and traverse into a new one.
map = new WeakMap ( ) ;
2022-09-20 11:43:29 -04:00
caches . set ( dependant , map ) ;
2022-04-11 08:04:30 -04:00
caches = map ;
}
}
// We use an arbitrary (but consistent) object as key for the last item
// in the WeakMap to serve as our running cache.
2022-09-20 11:43:29 -04:00
if ( ! caches . has ( LEAF _KEY ) ) {
2022-04-11 08:04:30 -04:00
cache = createCache ( ) ;
cache . isUniqueByDependants = isUniqueByDependants ;
2022-09-20 11:43:29 -04:00
caches . set ( LEAF _KEY , cache ) ;
2022-04-11 08:04:30 -04:00
}
2022-09-20 11:43:29 -04:00
return caches . get ( LEAF _KEY ) ;
2022-04-11 08:04:30 -04:00
}
/ * *
* Resets root memoization cache .
* /
function clear ( ) {
2022-09-20 11:43:29 -04:00
rootCache = new WeakMap ( ) ;
2022-04-11 08:04:30 -04:00
}
2022-09-20 11:43:29 -04:00
/* eslint-disable jsdoc/check-param-names */
2022-04-11 08:04:30 -04:00
/ * *
* The augmented selector call , considering first whether dependants have
* changed before passing it to underlying memoize function .
*
2022-09-20 11:43:29 -04:00
* @ param { * } source Source object for derivation .
* @ param { ... * } extraArgs Additional arguments to pass to selector .
2022-04-11 08:04:30 -04:00
*
* @ return { * } Selector result .
* /
2022-09-20 11:43:29 -04:00
/* eslint-enable jsdoc/check-param-names */
function callSelector ( /* source, ...extraArgs */ ) {
2022-04-11 08:04:30 -04:00
var len = arguments . length ,
2022-09-20 11:43:29 -04:00
cache ,
node ,
i ,
args ,
dependants ;
2022-04-11 08:04:30 -04:00
// Create copy of arguments (avoid leaking deoptimization).
2022-09-20 11:43:29 -04:00
args = new Array ( len ) ;
for ( i = 0 ; i < len ; i ++ ) {
args [ i ] = arguments [ i ] ;
2022-04-11 08:04:30 -04:00
}
2022-09-20 11:43:29 -04:00
dependants = normalizedGetDependants . apply ( null , args ) ;
cache = getCache ( dependants ) ;
// If not guaranteed uniqueness by dependants (primitive type), shallow
// compare against last dependants and, if references have changed,
// destroy cache to recalculate result.
if ( ! cache . isUniqueByDependants ) {
if (
cache . lastDependants &&
! isShallowEqual ( dependants , cache . lastDependants , 0 )
) {
2022-04-11 08:04:30 -04:00
cache . clear ( ) ;
}
cache . lastDependants = dependants ;
}
node = cache . head ;
2022-09-20 11:43:29 -04:00
while ( node ) {
2022-04-11 08:04:30 -04:00
// Check whether node arguments match arguments
2022-09-20 11:43:29 -04:00
if ( ! isShallowEqual ( node . args , args , 1 ) ) {
2022-04-11 08:04:30 -04:00
node = node . next ;
continue ;
}
// At this point we can assume we've found a match
// Surface matched node to head if not already
2022-09-20 11:43:29 -04:00
if ( node !== cache . head ) {
2022-04-11 08:04:30 -04:00
// Adjust siblings to point to each other.
2022-09-20 11:43:29 -04:00
/** @type {CacheNode} */ ( node . prev ) . next = node . next ;
if ( node . next ) {
2022-04-11 08:04:30 -04:00
node . next . prev = node . prev ;
}
node . next = cache . head ;
node . prev = null ;
2022-09-20 11:43:29 -04:00
/** @type {CacheNode} */ ( cache . head ) . prev = node ;
2022-04-11 08:04:30 -04:00
cache . head = node ;
}
// Return immediately
return node . val ;
}
// No cached value found. Continue to insertion phase:
2022-09-20 11:43:29 -04:00
node = /** @type {CacheNode} */ ( {
2022-04-11 08:04:30 -04:00
// Generate the result from original function
2022-09-20 11:43:29 -04:00
val : selector . apply ( null , args ) ,
} ) ;
2022-04-11 08:04:30 -04:00
// Avoid including the source object in the cache.
2022-09-20 11:43:29 -04:00
args [ 0 ] = null ;
2022-04-11 08:04:30 -04:00
node . args = args ;
// Don't need to check whether node is already head, since it would
// have been returned above already if it was
// Shift existing head down list
2022-09-20 11:43:29 -04:00
if ( cache . head ) {
2022-04-11 08:04:30 -04:00
cache . head . prev = node ;
node . next = cache . head ;
}
cache . head = node ;
return node . val ;
}
2022-09-20 11:43:29 -04:00
callSelector . getDependants = normalizedGetDependants ;
2022-04-11 08:04:30 -04:00
callSelector . clear = clear ;
clear ( ) ;
2022-09-20 11:43:29 -04:00
return /** @type {S & EnhancedSelector} */ ( callSelector ) ;
2022-04-11 08:04:30 -04:00
}
// EXTERNAL MODULE: ./node_modules/equivalent-key-map/equivalent-key-map.js
var equivalent _key _map = _ _webpack _require _ _ ( 2167 ) ;
var equivalent _key _map _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( equivalent _key _map ) ;
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/set-nested-value.js
/ * *
* Sets the value at path of object .
* If a portion of path doesn ’ t exist , it ’ s created .
* Arrays are created for missing index properties while objects are created
* for all other missing properties .
*
* This function intentionally mutates the input object .
*
* Inspired by _ . set ( ) .
*
* @ see https : //lodash.com/docs/4.17.15#set
*
* @ param { Object } object Object to modify
* @ param { Array } path Path of the property to set .
* @ param { * } value Value to set .
* /
function setNestedValue ( object , path , value ) {
if ( ! object || typeof object !== 'object' ) {
return object ;
}
path . reduce ( ( acc , key , idx ) => {
if ( acc [ key ] === undefined ) {
if ( Number . isInteger ( path [ idx + 1 ] ) ) {
acc [ key ] = [ ] ;
} else {
acc [ key ] = { } ;
}
}
if ( idx === path . length - 1 ) {
acc [ key ] = value ;
}
return acc [ key ] ;
} , object ) ;
return object ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/queried-data/selectors.js
/ * *
* External dependencies
* /
/ * *
* Internal dependencies
* /
2023-06-27 10:24:19 -04:00
2022-04-11 08:04:30 -04:00
/ * *
* Cache of state keys to EquivalentKeyMap where the inner map tracks queries
* to their resulting items set . WeakMap allows garbage collection on expired
* state references .
*
* @ type { WeakMap < Object , EquivalentKeyMap > }
* /
const queriedItemsCacheByState = new WeakMap ( ) ;
/ * *
* Returns items for a given query , or null if the items are not known .
*
* @ param { Object } state State object .
* @ param { ? Object } query Optional query .
*
* @ return { ? Array } Query items .
* /
function getQueriedItemsUncached ( state , query ) {
2021-05-19 11:09:27 -04:00
const {
stableKey ,
page ,
perPage ,
include ,
2021-06-25 11:52:22 -04:00
fields ,
context
2021-05-19 11:09:27 -04:00
} = get _query _parts ( query ) ;
let itemIds ;
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
if ( state . queries ? . [ context ] ? . [ stableKey ] ) {
2021-06-25 11:52:22 -04:00
itemIds = state . queries [ context ] [ stableKey ] ;
2020-06-26 09:33:47 -04:00
}
if ( ! itemIds ) {
return null ;
}
2021-05-19 11:09:27 -04:00
const startOffset = perPage === - 1 ? 0 : ( page - 1 ) * perPage ;
const endOffset = perPage === - 1 ? itemIds . length : Math . min ( startOffset + perPage , itemIds . length ) ;
const items = [ ] ;
2020-06-26 09:33:47 -04:00
2021-05-19 11:09:27 -04:00
for ( let i = startOffset ; i < endOffset ; i ++ ) {
const itemId = itemIds [ i ] ;
2020-10-13 09:10:30 -04:00
if ( Array . isArray ( include ) && ! include . includes ( itemId ) ) {
continue ;
2021-11-08 09:29:21 -05:00
} // Having a target item ID doesn't guarantee that this object has been queried.
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
if ( ! state . items [ context ] ? . hasOwnProperty ( itemId ) ) {
2020-10-13 09:10:30 -04:00
return null ;
}
2021-06-25 11:52:22 -04:00
const item = state . items [ context ] [ itemId ] ;
2021-05-19 11:09:27 -04:00
let filteredItem ;
2020-10-13 09:10:30 -04:00
if ( Array . isArray ( fields ) ) {
filteredItem = { } ;
2021-05-19 11:09:27 -04:00
for ( let f = 0 ; f < fields . length ; f ++ ) {
const field = fields [ f ] . split ( '.' ) ;
2023-06-27 10:24:19 -04:00
let value = item ;
field . forEach ( fieldName => {
value = value [ fieldName ] ;
} ) ;
setNestedValue ( filteredItem , field , value ) ;
2020-10-13 09:10:30 -04:00
}
} else {
// If expecting a complete item, validate that completeness, or
// otherwise abort.
2023-06-27 10:24:19 -04:00
if ( ! state . itemIsComplete [ context ] ? . [ itemId ] ) {
2020-10-13 09:10:30 -04:00
return null ;
}
filteredItem = item ;
}
items . push ( filteredItem ) ;
2020-06-26 09:33:47 -04:00
}
return items ;
}
/ * *
* Returns items for a given query , or null if the items are not known . Caches
* result both per state ( by reference ) and per query ( by deep equality ) .
* The caching approach is intended to be durable to query objects which are
* deeply but not referentially equal , since otherwise :
*
* ` getQueriedItems( state, {} ) !== getQueriedItems( state, {} ) `
*
* @ param { Object } state State object .
* @ param { ? Object } query Optional query .
*
* @ return { ? Array } Query items .
* /
2023-06-27 10:24:19 -04:00
const getQueriedItems = rememo ( ( state , query = { } ) => {
2021-05-19 11:09:27 -04:00
let queriedItemsCache = queriedItemsCacheByState . get ( state ) ;
2020-06-26 09:33:47 -04:00
if ( queriedItemsCache ) {
2021-05-19 11:09:27 -04:00
const queriedItems = queriedItemsCache . get ( query ) ;
2020-06-26 09:33:47 -04:00
if ( queriedItems !== undefined ) {
return queriedItems ;
}
} else {
2022-04-11 08:04:30 -04:00
queriedItemsCache = new ( equivalent _key _map _default ( ) ) ( ) ;
2020-06-26 09:33:47 -04:00
queriedItemsCacheByState . set ( state , queriedItemsCache ) ;
}
2021-05-19 11:09:27 -04:00
const items = getQueriedItemsUncached ( state , query ) ;
2020-06-26 09:33:47 -04:00
queriedItemsCache . set ( query , items ) ;
return items ;
} ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/is-raw-attribute.js
2021-11-08 09:29:21 -05:00
/ * *
* Checks whether the attribute is a "raw" attribute or not .
*
2022-04-12 11:12:47 -04:00
* @ param { Object } entity Entity record .
2021-11-08 09:29:21 -05:00
* @ param { string } attribute Attribute name .
*
* @ return { boolean } Is the attribute raw
* /
function isRawAttribute ( entity , attribute ) {
return ( entity . rawAttributes || [ ] ) . includes ( attribute ) ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/selectors.js
2018-12-13 23:41:57 -05:00
/ * *
* External dependencies
* /
/ * *
* WordPress dependencies
* /
2019-03-07 04:09:59 -05:00
2021-11-08 09:29:21 -05:00
2018-12-13 23:41:57 -05:00
/ * *
* Internal dependencies
* /
2020-06-26 09:33:47 -04:00
2020-10-20 09:36:16 -04:00
2023-06-27 10:24:19 -04:00
// This is an incomplete, high-level approximation of the State type.
// It makes the selectors slightly more safe, but is intended to evolve
// into a more detailed representation over time.
// See https://github.com/WordPress/gutenberg/pull/40025#discussion_r865410589 for more context.
2022-09-20 11:43:29 -04:00
2021-11-08 09:29:21 -05:00
/ * *
* Shared reference to an empty object for cases where it is important to avoid
* returning a new object 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 .
* /
const EMPTY _OBJECT = { } ;
2018-12-13 23:41:57 -05:00
/ * *
* Returns true if a request is in progress for embed preview data , or false
* otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param url URL the preview would be for .
2018-12-13 23:41:57 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether a request is in progress for an embed preview .
2018-12-13 23:41:57 -05:00
* /
2022-04-11 08:04:30 -04:00
const isRequestingEmbedPreview = ( 0 , external _wp _data _namespaceObject . createRegistrySelector ) ( select => ( state , url ) => {
2021-11-08 09:29:21 -05:00
return select ( STORE _NAME ) . isResolving ( 'getEmbedPreview' , [ url ] ) ;
2019-03-07 04:09:59 -05:00
} ) ;
2020-12-01 07:19:43 -05:00
/ * *
* Returns all available authors .
*
2021-11-08 09:29:21 -05:00
* @ deprecated since 11.3 . Callers should use ` select( 'core' ).getUsers({ who: 'authors' }) ` instead .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param query Optional object of query parameters to
* include with request . For valid query parameters see the [ Users page ] ( https : //developer.wordpress.org/rest-api/reference/users/) in the REST API Handbook and see the arguments for [List Users](https://developer.wordpress.org/rest-api/reference/users/#list-users) and [Retrieve a User](https://developer.wordpress.org/rest-api/reference/users/#retrieve-a-user).
2022-09-20 11:43:29 -04:00
* @ return Authors list .
2020-12-01 07:19:43 -05:00
* /
function getAuthors ( state , query ) {
2021-11-08 09:29:21 -05:00
external _wp _deprecated _default ( ) ( "select( 'core' ).getAuthors()" , {
since : '5.9' ,
alternative : "select( 'core' ).getUsers({ who: 'authors' })"
} ) ;
2022-04-11 08:04:30 -04:00
const path = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/users/?who=authors&per_page=100' , query ) ;
2020-12-01 07:19:43 -05:00
return getUserQueryResults ( state , path ) ;
}
2019-09-19 11:19:18 -04:00
/ * *
* Returns the current user .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2019-09-19 11:19:18 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Current user object .
2019-09-19 11:19:18 -04:00
* /
function getCurrentUser ( state ) {
return state . currentUser ;
}
2018-12-13 23:41:57 -05:00
/ * *
* Returns all the users returned by a query ID .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param queryID Query ID .
2018-12-13 23:41:57 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Users list .
2018-12-13 23:41:57 -05:00
* /
2022-04-11 08:04:30 -04:00
const getUserQueryResults = rememo ( ( state , queryID ) => {
2023-02-07 02:04:52 -05:00
var _state$users$queries$ ;
const queryResults = ( _state$users$queries$ = state . users . queries [ queryID ] ) !== null && _state$users$queries$ !== void 0 ? _state$users$queries$ : [ ] ;
return queryResults . map ( id => state . users . byId [ id ] ) ;
2021-05-19 11:09:27 -04:00
} , ( state , queryID ) => [ state . users . queries [ queryID ] , state . users . byId ] ) ;
2018-12-13 23:41:57 -05:00
/ * *
2022-04-12 11:12:47 -04:00
* Returns the loaded entities for the given kind .
2018-12-13 23:41:57 -05:00
*
2022-04-12 11:12:47 -04:00
* @ deprecated since WordPress 6.0 . Use getEntitiesConfig instead
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param kind Entity kind .
2018-12-13 23:41:57 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Array of entities with config matching kind .
2018-12-13 23:41:57 -05:00
* /
function getEntitiesByKind ( state , kind ) {
2022-04-12 11:12:47 -04:00
external _wp _deprecated _default ( ) ( "wp.data.select( 'core' ).getEntitiesByKind()" , {
since : '6.0' ,
alternative : "wp.data.select( 'core' ).getEntitiesConfig()"
} ) ;
return getEntitiesConfig ( state , kind ) ;
}
/ * *
* Returns the loaded entities for the given kind .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param kind Entity kind .
2022-04-12 11:12:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Array of entities with config matching kind .
2022-04-12 11:12:47 -04:00
* /
function getEntitiesConfig ( state , kind ) {
2023-02-07 02:04:52 -05:00
return state . entities . config . filter ( entity => entity . kind === kind ) ;
2018-12-13 23:41:57 -05:00
}
/ * *
2022-04-12 11:12:47 -04:00
* Returns the entity config given its kind and name .
2018-12-13 23:41:57 -05:00
*
2022-04-12 11:12:47 -04:00
* @ deprecated since WordPress 6.0 . Use getEntityConfig instead
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param kind Entity kind .
* @ param name Entity name .
2018-12-13 23:41:57 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Entity config
2018-12-13 23:41:57 -05:00
* /
2021-05-19 11:09:27 -04:00
function getEntity ( state , kind , name ) {
2022-04-12 11:12:47 -04:00
external _wp _deprecated _default ( ) ( "wp.data.select( 'core' ).getEntity()" , {
since : '6.0' ,
alternative : "wp.data.select( 'core' ).getEntityConfig()"
} ) ;
return getEntityConfig ( state , kind , name ) ;
}
/ * *
* Returns the entity config given its kind and name .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param kind Entity kind .
* @ param name Entity name .
2022-04-12 11:12:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Entity config
2022-04-12 11:12:47 -04:00
* /
function getEntityConfig ( state , kind , name ) {
2023-06-27 10:24:19 -04:00
return state . entities . config ? . find ( config => config . kind === kind && config . name === name ) ;
2018-12-13 23:41:57 -05:00
}
2022-10-04 11:06:52 -04:00
/ * *
* GetEntityRecord is declared as a * callable interface * with
* two signatures to work around the fact that TypeScript doesn ' t
* allow currying generic functions :
*
* ` ` ` ts
* type CurriedState = F extends ( state : any , ... args : infer P ) => infer R
* ? ( ... args : P ) => R
* : F ;
* type Selector = < K extends string | number > (
* state : any ,
* kind : K ,
* key : K extends string ? 'string value' : false
* ) => K ;
* type BadlyInferredSignature = CurriedState < Selector >
* // BadlyInferredSignature evaluates to:
* // (kind: string number, key: false | "string value") => string number
* ` ` `
*
* The signature without the state parameter shipped as CurriedSignature
* is used in the return value of ` select( coreStore ) ` .
*
* See https : //github.com/WordPress/gutenberg/pull/41578 for more details.
* /
2018-12-13 23:41:57 -05:00
/ * *
2020-10-13 09:10:30 -04:00
* 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 .
2019-10-15 11:37:08 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree
* @ param kind Entity kind .
* @ param name Entity name .
* @ param key Record ' s key
* @ param query Optional query . If requesting specific
* fields , fields must always include the ID . For valid query parameters see the [ Reference ] ( https : //developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available "Retrieve a [Entity kind]".
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Record .
2019-10-15 11:37:08 -04:00
* /
2022-04-11 08:04:30 -04:00
const getEntityRecord = rememo ( ( state , kind , name , key , query ) => {
2023-06-27 10:24:19 -04:00
var _query$context ;
2021-06-25 11:52:22 -04:00
2023-06-27 10:24:19 -04:00
const queriedState = state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ;
2020-10-13 09:10:30 -04:00
if ( ! queriedState ) {
return undefined ;
}
2023-06-27 10:24:19 -04:00
const context = ( _query$context = query ? . context ) !== null && _query$context !== void 0 ? _query$context : 'default' ;
2021-06-25 11:52:22 -04:00
2020-10-13 09:10:30 -04:00
if ( query === undefined ) {
// If expecting a complete item, validate that completeness.
2023-06-27 10:24:19 -04:00
if ( ! queriedState . itemIsComplete [ context ] ? . [ key ] ) {
2020-10-13 09:10:30 -04:00
return undefined ;
}
2021-06-25 11:52:22 -04:00
return queriedState . items [ context ] [ key ] ;
2020-10-13 09:10:30 -04:00
}
2023-06-27 10:24:19 -04:00
const item = queriedState . items [ context ] ? . [ key ] ;
2020-10-20 09:36:16 -04:00
if ( item && query . _fields ) {
2022-04-12 11:12:47 -04:00
var _getNormalizedCommaSe ;
2021-05-19 11:09:27 -04:00
const filteredItem = { } ;
2022-04-12 11:12:47 -04:00
const fields = ( _getNormalizedCommaSe = get _normalized _comma _separable ( query . _fields ) ) !== null && _getNormalizedCommaSe !== void 0 ? _getNormalizedCommaSe : [ ] ;
2020-10-20 09:36:16 -04:00
2021-05-19 11:09:27 -04:00
for ( let f = 0 ; f < fields . length ; f ++ ) {
const field = fields [ f ] . split ( '.' ) ;
2023-06-27 10:24:19 -04:00
let value = item ;
field . forEach ( fieldName => {
value = value [ fieldName ] ;
} ) ;
setNestedValue ( filteredItem , field , value ) ;
2020-10-20 09:36:16 -04:00
}
return filteredItem ;
}
return item ;
2021-11-08 09:29:21 -05:00
} , ( state , kind , name , recordId , query ) => {
var _query$context2 ;
2023-06-27 10:24:19 -04:00
const context = ( _query$context2 = query ? . context ) !== null && _query$context2 !== void 0 ? _query$context2 : 'default' ;
return [ state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ? . items [ context ] ? . [ recordId ] , state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ? . itemIsComplete [ context ] ? . [ recordId ] ] ;
2021-11-08 09:29:21 -05:00
} ) ;
2020-02-06 16:03:31 -05:00
/ * *
2022-04-12 11:12:47 -04:00
* Returns the Entity 's record object by key. Doesn' t trigger a resolver nor requests the entity records from the API if the entity record isn ' t available in the local state .
2020-02-06 16:03:31 -05:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree
* @ param kind Entity kind .
* @ param name Entity name .
* @ param key Record ' s key
2020-02-06 16:03:31 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Record .
2020-02-06 16:03:31 -05:00
* /
2020-02-10 17:33:27 -05:00
function _ _experimentalGetEntityRecordNoResolver ( state , kind , name , key ) {
2022-04-11 08:04:30 -04:00
return getEntityRecord ( state , kind , name , key ) ;
2020-02-06 16:03:31 -05:00
}
2019-10-15 11:37:08 -04:00
/ * *
* Returns the entity ' s record object by key ,
* with its attributes mapped to their raw values .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param key Record ' s key .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Object with the entity ' s raw attributes .
2019-10-15 11:37:08 -04:00
* /
2022-04-11 08:04:30 -04:00
const getRawEntityRecord = rememo ( ( state , kind , name , key ) => {
const record = getEntityRecord ( state , kind , name , key ) ;
2021-05-19 11:09:27 -04:00
return record && Object . keys ( record ) . reduce ( ( accumulator , _key ) => {
2022-04-12 11:12:47 -04:00
if ( isRawAttribute ( getEntityConfig ( state , kind , name ) , _key ) ) {
2023-06-27 10:24:19 -04:00
var _record$ _key$raw ;
2021-11-08 09:29:21 -05:00
// Because edits are the "raw" attribute values,
// we return those from record selectors to make rendering,
// comparisons, and joins with edits easier.
2023-06-27 10:24:19 -04:00
accumulator [ _key ] = ( _record$ _key$raw = record [ _key ] ? . raw ) !== null && _record$ _key$raw !== void 0 ? _record$ _key$raw : record [ _key ] ;
2021-11-08 09:29:21 -05:00
} else {
accumulator [ _key ] = record [ _key ] ;
}
2020-01-08 06:57:23 -05:00
return accumulator ;
2019-10-15 11:37:08 -04:00
} , { } ) ;
2021-11-08 09:29:21 -05:00
} , ( state , kind , name , recordId , query ) => {
var _query$context3 ;
2023-06-27 10:24:19 -04:00
const context = ( _query$context3 = query ? . context ) !== null && _query$context3 !== void 0 ? _query$context3 : 'default' ;
return [ state . entities . config , state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ? . items [ context ] ? . [ recordId ] , state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ? . itemIsComplete [ context ] ? . [ recordId ] ] ;
2021-11-08 09:29:21 -05:00
} ) ;
2020-10-13 09:10:30 -04:00
/ * *
* Returns true if records have been received for the given set of parameters ,
* or false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree
* @ param kind Entity kind .
* @ param name Entity name .
* @ param query Optional terms query . For valid query parameters see the [ Reference ] ( https : //developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for "List [Entity kind]s".
2020-10-13 09:10:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether entity records have been received .
2020-10-13 09:10:30 -04:00
* /
function hasEntityRecords ( state , kind , name , query ) {
return Array . isArray ( getEntityRecords ( state , kind , name , query ) ) ;
}
2022-10-04 11:06:52 -04:00
/ * *
* GetEntityRecord is declared as a * callable interface * with
* two signatures to work around the fact that TypeScript doesn ' t
* allow currying generic functions .
*
* @ see GetEntityRecord
* @ see https : //github.com/WordPress/gutenberg/pull/41578
* /
2019-10-15 11:37:08 -04:00
/ * *
* Returns the Entity ' s records .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree
* @ param kind Entity kind .
* @ param name Entity name .
* @ param query Optional terms query . If requesting specific
* fields , fields must always include the ID . For valid query parameters see the [ Reference ] ( https : //developer.wordpress.org/rest-api/reference/) in the REST API Handbook and select the entity kind. Then see the arguments available for "List [Entity kind]s".
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Records .
2019-10-15 11:37:08 -04:00
* /
2022-09-20 11:43:29 -04:00
const getEntityRecords = ( state , kind , name , query ) => {
2020-10-13 09:10:30 -04:00
// Queried data state is prepopulated for all known entities. If this is not
2022-04-12 11:12:47 -04:00
// assigned for the given parameters, then it is known to not exist.
2023-06-27 10:24:19 -04:00
const queriedState = state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData ;
2019-10-15 11:37:08 -04:00
if ( ! queriedState ) {
2022-04-12 11:12:47 -04:00
return null ;
2019-10-15 11:37:08 -04:00
}
return getQueriedItems ( queriedState , query ) ;
2022-09-20 11:43:29 -04:00
} ;
2020-01-22 17:06:21 -05:00
/ * *
2022-09-20 11:43:29 -04:00
* Returns the list of dirty entity records .
2020-01-22 17:06:21 -05:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
2020-01-22 17:06:21 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return The list of updated records
2020-01-22 17:06:21 -05:00
* /
2022-04-11 08:04:30 -04:00
const _ _experimentalGetDirtyEntityRecords = rememo ( state => {
2021-05-19 11:09:27 -04:00
const {
entities : {
2022-04-12 11:12:47 -04:00
records
2021-05-19 11:09:27 -04:00
}
} = state ;
const dirtyRecords = [ ] ;
2022-04-12 11:12:47 -04:00
Object . keys ( records ) . forEach ( kind => {
Object . keys ( records [ kind ] ) . forEach ( name => {
const primaryKeys = Object . keys ( records [ kind ] [ name ] . edits ) . filter ( primaryKey => // The entity record must exist (not be deleted),
2021-11-08 09:29:21 -05:00
// and it must have edits.
2022-04-11 08:04:30 -04:00
getEntityRecord ( state , kind , name , primaryKey ) && hasEditsForEntityRecord ( state , kind , name , primaryKey ) ) ;
2020-01-22 17:06:21 -05:00
2020-06-26 09:33:47 -04:00
if ( primaryKeys . length ) {
2022-04-12 11:12:47 -04:00
const entityConfig = getEntityConfig ( state , kind , name ) ;
2021-05-19 11:09:27 -04:00
primaryKeys . forEach ( primaryKey => {
2022-04-11 08:04:30 -04:00
const entityRecord = getEditedEntityRecord ( state , kind , name , primaryKey ) ;
2020-06-26 09:33:47 -04:00
dirtyRecords . push ( {
// We avoid using primaryKey because it's transformed into a string
// when it's used as an object key.
2022-09-20 11:43:29 -04:00
key : entityRecord ? entityRecord [ entityConfig . key || DEFAULT _ENTITY _KEY ] : undefined ,
2023-06-27 10:24:19 -04:00
title : entityConfig ? . getTitle ? . ( entityRecord ) || '' ,
2021-05-19 11:09:27 -04:00
name ,
kind
2020-06-26 09:33:47 -04:00
} ) ;
2020-01-22 17:06:21 -05:00
} ) ;
}
} ) ;
2020-06-26 09:33:47 -04:00
} ) ;
return dirtyRecords ;
2022-04-12 11:12:47 -04:00
} , state => [ state . entities . records ] ) ;
2021-11-08 09:29:21 -05:00
/ * *
* Returns the list of entities currently being saved .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
2021-11-08 09:29:21 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return The list of records being saved .
2021-11-08 09:29:21 -05:00
* /
2022-04-11 08:04:30 -04:00
const _ _experimentalGetEntitiesBeingSaved = rememo ( state => {
2021-11-08 09:29:21 -05:00
const {
entities : {
2022-04-12 11:12:47 -04:00
records
2021-11-08 09:29:21 -05:00
}
} = state ;
const recordsBeingSaved = [ ] ;
2022-04-12 11:12:47 -04:00
Object . keys ( records ) . forEach ( kind => {
Object . keys ( records [ kind ] ) . forEach ( name => {
const primaryKeys = Object . keys ( records [ kind ] [ name ] . saving ) . filter ( primaryKey => isSavingEntityRecord ( state , kind , name , primaryKey ) ) ;
2021-11-08 09:29:21 -05:00
if ( primaryKeys . length ) {
2022-04-12 11:12:47 -04:00
const entityConfig = getEntityConfig ( state , kind , name ) ;
2021-11-08 09:29:21 -05:00
primaryKeys . forEach ( primaryKey => {
2022-04-11 08:04:30 -04:00
const entityRecord = getEditedEntityRecord ( state , kind , name , primaryKey ) ;
2021-11-08 09:29:21 -05:00
recordsBeingSaved . push ( {
// We avoid using primaryKey because it's transformed into a string
// when it's used as an object key.
2022-09-20 11:43:29 -04:00
key : entityRecord ? entityRecord [ entityConfig . key || DEFAULT _ENTITY _KEY ] : undefined ,
2023-06-27 10:24:19 -04:00
title : entityConfig ? . getTitle ? . ( entityRecord ) || '' ,
2021-11-08 09:29:21 -05:00
name ,
kind
} ) ;
} ) ;
}
} ) ;
} ) ;
return recordsBeingSaved ;
2022-04-12 11:12:47 -04:00
} , state => [ state . entities . records ] ) ;
2019-10-15 11:37:08 -04:00
/ * *
* Returns the specified entity record ' s edits .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The entity record ' s edits .
2019-10-15 11:37:08 -04:00
* /
function getEntityRecordEdits ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
return state . entities . records ? . [ kind ] ? . [ name ] ? . edits ? . [ recordId ] ;
2019-10-15 11:37:08 -04:00
}
/ * *
* 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 .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The entity record ' s non transient edits .
2019-10-15 11:37:08 -04:00
* /
2022-04-11 08:04:30 -04:00
const getEntityRecordNonTransientEdits = rememo ( ( state , kind , name , recordId ) => {
2021-05-19 11:09:27 -04:00
const {
transientEdits
2022-04-12 11:12:47 -04:00
} = getEntityConfig ( state , kind , name ) || { } ;
2021-05-19 11:09:27 -04:00
const edits = getEntityRecordEdits ( state , kind , name , recordId ) || { } ;
2019-12-09 12:37:10 -05:00
if ( ! transientEdits ) {
return edits ;
}
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
return Object . keys ( edits ) . reduce ( ( acc , key ) => {
2019-10-15 11:37:08 -04:00
if ( ! transientEdits [ key ] ) {
acc [ key ] = edits [ key ] ;
}
return acc ;
} , { } ) ;
2023-06-27 10:24:19 -04:00
} , ( state , kind , name , recordId ) => [ state . entities . config , state . entities . records ? . [ kind ] ? . [ name ] ? . edits ? . [ recordId ] ] ) ;
2019-10-15 11:37:08 -04:00
/ * *
* Returns true if the specified entity record has edits ,
* and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether the entity record has edits or not .
2019-10-15 11:37:08 -04:00
* /
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 .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The entity record , merged with its edits .
2019-10-15 11:37:08 -04:00
* /
2022-04-11 08:04:30 -04:00
const getEditedEntityRecord = rememo ( ( state , kind , name , recordId ) => ( { ... getRawEntityRecord ( state , kind , name , recordId ) ,
2021-05-19 11:09:27 -04:00
... getEntityRecordEdits ( state , kind , name , recordId )
2021-11-08 09:29:21 -05:00
} ) , ( state , kind , name , recordId , query ) => {
var _query$context4 ;
2023-06-27 10:24:19 -04:00
const context = ( _query$context4 = query ? . context ) !== null && _query$context4 !== void 0 ? _query$context4 : 'default' ;
return [ state . entities . config , state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData . items [ context ] ? . [ recordId ] , state . entities . records ? . [ kind ] ? . [ name ] ? . queriedData . itemIsComplete [ context ] ? . [ recordId ] , state . entities . records ? . [ kind ] ? . [ name ] ? . edits ? . [ recordId ] ] ;
2021-11-08 09:29:21 -05:00
} ) ;
2019-10-15 11:37:08 -04:00
/ * *
* Returns true if the specified entity record is autosaving , and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether the entity record is autosaving or not .
2019-10-15 11:37:08 -04:00
* /
function isAutosavingEntityRecord ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
var _state$entities$recor ;
2021-05-19 11:09:27 -04:00
const {
pending ,
isAutosave
2023-06-27 10:24:19 -04:00
} = ( _state$entities$recor = state . entities . records ? . [ kind ] ? . [ name ] ? . saving ? . [ recordId ] ) !== null && _state$entities$recor !== void 0 ? _state$entities$recor : { } ;
2019-10-15 11:37:08 -04:00
return Boolean ( pending && isAutosave ) ;
}
/ * *
* Returns true if the specified entity record is saving , and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether the entity record is saving or not .
2019-10-15 11:37:08 -04:00
* /
function isSavingEntityRecord ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
var _state$entities$recor2 ;
return ( _state$entities$recor2 = state . entities . records ? . [ kind ] ? . [ name ] ? . saving ? . [ recordId ] ? . pending ) !== null && _state$entities$recor2 !== void 0 ? _state$entities$recor2 : false ;
2019-10-15 11:37:08 -04:00
}
2020-10-13 09:10:30 -04:00
/ * *
* Returns true if the specified entity record is deleting , and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2020-10-13 09:10:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether the entity record is deleting or not .
2020-10-13 09:10:30 -04:00
* /
function isDeletingEntityRecord ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
var _state$entities$recor3 ;
return ( _state$entities$recor3 = state . entities . records ? . [ kind ] ? . [ name ] ? . deleting ? . [ recordId ] ? . pending ) !== null && _state$entities$recor3 !== void 0 ? _state$entities$recor3 : false ;
2020-10-13 09:10:30 -04:00
}
2019-10-15 11:37:08 -04:00
/ * *
* Returns the specified entity record ' s last save error .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The entity record ' s save error .
2019-10-15 11:37:08 -04:00
* /
function getLastEntitySaveError ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
return state . entities . records ? . [ kind ] ? . [ name ] ? . saving ? . [ recordId ] ? . error ;
2019-10-15 11:37:08 -04:00
}
2020-10-13 09:10:30 -04:00
/ * *
* Returns the specified entity record ' s last delete error .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ID .
2020-10-13 09:10:30 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The entity record ' s save error .
2020-10-13 09:10:30 -04:00
* /
function getLastEntityDeleteError ( state , kind , name , recordId ) {
2023-06-27 10:24:19 -04:00
return state . entities . records ? . [ kind ] ? . [ name ] ? . deleting ? . [ recordId ] ? . error ;
2020-10-13 09:10:30 -04:00
}
2019-10-15 11:37:08 -04:00
/ * *
* 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 .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The current undo offset .
2019-10-15 11:37:08 -04:00
* /
function getCurrentUndoOffset ( state ) {
return state . undo . offset ;
}
/ * *
* Returns the previous edit from the current undo offset
* for the entity records edits history , if any .
*
2023-06-27 10:24:19 -04:00
* @ deprecated since 6.3
*
* @ param state State tree .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The edit .
2019-10-15 11:37:08 -04:00
* /
function getUndoEdit ( state ) {
2023-06-27 10:24:19 -04:00
external _wp _deprecated _default ( ) ( "select( 'core' ).getUndoEdit()" , {
since : '6.3'
} ) ;
return state . undo . list [ state . undo . list . length - 2 + getCurrentUndoOffset ( state ) ] ? . [ 0 ] ;
2019-10-15 11:37:08 -04:00
}
/ * *
* Returns the next edit from the current undo offset
* for the entity records edits history , if any .
*
2023-06-27 10:24:19 -04:00
* @ deprecated since 6.3
*
* @ param state State tree .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The edit .
2019-10-15 11:37:08 -04:00
* /
function getRedoEdit ( state ) {
2023-06-27 10:24:19 -04:00
external _wp _deprecated _default ( ) ( "select( 'core' ).getRedoEdit()" , {
since : '6.3'
} ) ;
return state . undo . list [ state . undo . list . length + getCurrentUndoOffset ( state ) ] ? . [ 0 ] ;
2019-10-15 11:37:08 -04:00
}
/ * *
* Returns true if there is a previous edit from the current undo offset
* for the entity records edits history , and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether there is a previous edit or not .
2019-10-15 11:37:08 -04:00
* /
function hasUndo ( state ) {
2023-06-27 10:24:19 -04:00
return Boolean ( getUndoEdits ( state ) ) ;
2019-10-15 11:37:08 -04:00
}
/ * *
* Returns true if there is a next edit from the current undo offset
* for the entity records edits history , and false otherwise .
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether there is a next edit or not .
2019-10-15 11:37:08 -04:00
* /
function hasRedo ( state ) {
2023-06-27 10:24:19 -04:00
return Boolean ( getRedoEdits ( state ) ) ;
2019-10-15 11:37:08 -04:00
}
2020-06-26 09:33:47 -04:00
/ * *
* Return the current theme .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2020-06-26 09:33:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The current theme .
2020-06-26 09:33:47 -04:00
* /
function getCurrentTheme ( state ) {
2022-04-11 08:04:30 -04:00
return getEntityRecord ( state , 'root' , 'theme' , state . currentTheme ) ;
2021-11-08 09:29:21 -05:00
}
/ * *
* Return the ID of the current global styles object .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2021-11-08 09:29:21 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return The current global styles ID .
2021-11-08 09:29:21 -05:00
* /
function _ _experimentalGetCurrentGlobalStylesId ( state ) {
return state . currentGlobalStylesId ;
2020-06-26 09:33:47 -04:00
}
2019-10-15 11:37:08 -04:00
/ * *
* Return theme supports data in the index .
2018-12-13 23:41:57 -05:00
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2018-12-13 23:41:57 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return Index data .
2018-12-13 23:41:57 -05:00
* /
2019-10-15 11:37:08 -04:00
function getThemeSupports ( state ) {
2023-06-27 10:24:19 -04:00
var _getCurrentTheme$them ;
2021-11-08 09:29:21 -05:00
2023-06-27 10:24:19 -04:00
return ( _getCurrentTheme$them = getCurrentTheme ( state ) ? . theme _supports ) !== null && _getCurrentTheme$them !== void 0 ? _getCurrentTheme$them : EMPTY _OBJECT ;
2018-12-13 23:41:57 -05:00
}
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns the embed preview for the given URL .
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param url Embedded URL .
2019-09-19 11:19:18 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Undefined if the preview has not been fetched , otherwise , the preview fetched from the embed preview API .
2019-09-19 11:19:18 -04:00
* /
2019-10-15 11:37:08 -04:00
function getEmbedPreview ( state , url ) {
return state . embedPreviews [ url ] ;
}
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Determines if the returned preview is an oEmbed link fallback .
2018-12-13 23:41:57 -05:00
*
2019-10-15 11:37:08 -04:00
* 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 .
2018-12-13 23:41:57 -05:00
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param url Embedded URL .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Is the preview for the URL an oEmbed link fallback .
2018-12-13 23:41:57 -05:00
* /
2019-10-15 11:37:08 -04:00
function isPreviewEmbedFallback ( state , url ) {
2021-05-19 11:09:27 -04:00
const preview = state . embedPreviews [ url ] ;
const oEmbedLinkCheck = '<a href="' + url + '">' + url + '</a>' ;
2018-12-13 23:41:57 -05:00
2019-10-15 11:37:08 -04:00
if ( ! preview ) {
return false ;
2018-12-13 23:41:57 -05:00
}
2019-10-15 11:37:08 -04:00
return preview . html === oEmbedLinkCheck ;
2018-12-13 23:41:57 -05:00
}
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns whether the current user can perform the given action on the given
* REST resource .
2019-09-19 11:19:18 -04:00
*
2019-10-15 11:37:08 -04:00
* Calling this may trigger an OPTIONS request to the REST API via the
* ` canUser() ` resolver .
2019-09-19 11:19:18 -04:00
*
2019-10-15 11:37:08 -04:00
* https : //developer.wordpress.org/rest-api/reference/
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param action Action to check . One of : 'create' , 'read' , 'update' , 'delete' .
* @ param resource REST resource to check , e . g . 'media' or 'posts' .
* @ param id Optional ID of the rest resource to check .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Whether or not the user can perform the action ,
2019-10-15 11:37:08 -04:00
* or ` undefined ` if the OPTIONS request is still being made .
2019-09-19 11:19:18 -04:00
* /
2019-10-15 11:37:08 -04:00
function canUser ( state , action , resource , id ) {
2022-09-20 11:43:29 -04:00
const key = [ action , resource , id ] . filter ( Boolean ) . join ( '/' ) ;
2023-06-27 10:24:19 -04:00
return state . userPermissions [ key ] ;
2019-10-15 11:37:08 -04:00
}
2021-06-15 04:52:30 -04:00
/ * *
* 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/
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
* @ param kind Entity kind .
* @ param name Entity name .
* @ param recordId Record ' s id .
2022-09-20 11:43:29 -04:00
* @ return Whether or not the user can edit ,
2021-06-15 04:52:30 -04:00
* or ` undefined ` if the OPTIONS request is still being made .
* /
2021-06-15 11:30:24 -04:00
function canUserEditEntityRecord ( state , kind , name , recordId ) {
2022-04-12 11:12:47 -04:00
const entityConfig = getEntityConfig ( state , kind , name ) ;
2021-06-15 11:30:24 -04:00
2022-04-12 11:12:47 -04:00
if ( ! entityConfig ) {
2021-06-15 11:30:24 -04:00
return false ;
}
2022-04-12 11:12:47 -04:00
const resource = entityConfig . _ _unstable _rest _base ;
2021-06-15 04:52:30 -04:00
return canUser ( state , 'update' , resource , recordId ) ;
}
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns the latest autosaves for the post .
*
* May return multiple autosaves since the backend stores one autosave per
* author for each post .
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param postType The type of the parent post .
* @ param postId The id of the parent post .
2019-09-19 11:19:18 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return An array of autosaves for the post , or undefined if there is none .
2019-09-19 11:19:18 -04:00
* /
2019-10-15 11:37:08 -04:00
function getAutosaves ( state , postType , postId ) {
return state . autosaves [ postId ] ;
2019-09-19 11:19:18 -04:00
}
/ * *
2019-10-15 11:37:08 -04:00
* Returns the autosave for the post and author .
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param postType The type of the parent post .
* @ param postId The id of the parent post .
* @ param authorId The id of the author .
2019-09-19 11:19:18 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The autosave for the post and author .
2019-09-19 11:19:18 -04:00
* /
2019-10-15 11:37:08 -04:00
function getAutosave ( state , postType , postId , authorId ) {
if ( authorId === undefined ) {
return ;
}
2021-05-19 11:09:27 -04:00
const autosaves = state . autosaves [ postId ] ;
2023-06-27 10:24:19 -04:00
return autosaves ? . find ( autosave => autosave . author === authorId ) ;
2019-10-15 11:37:08 -04:00
}
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* Returns true if the REST request for autosaves has completed .
2019-09-19 11:19:18 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param state State tree .
* @ param postType The type of the parent post .
* @ param postId The id of the parent post .
2019-09-19 11:19:18 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return True if the REST request was completed . False otherwise .
2019-09-19 11:19:18 -04:00
* /
2022-04-11 08:04:30 -04:00
const hasFetchedAutosaves = ( 0 , external _wp _data _namespaceObject . createRegistrySelector ) ( select => ( state , postType , postId ) => {
2021-05-19 11:09:27 -04:00
return select ( STORE _NAME ) . hasFinishedResolution ( 'getAutosaves' , [ postType , postId ] ) ;
2019-10-15 11:37:08 -04:00
} ) ;
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* 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 .
2019-09-19 11:19:18 -04:00
*
2019-10-15 11:37:08 -04:00
* @ example
2019-09-19 11:19:18 -04:00
*
2019-10-15 11:37:08 -04:00
* ` ` `
* const hasEditOccurred = (
* getReferenceByDistinctEdits ( beforeState ) !==
* getReferenceByDistinctEdits ( afterState )
* ) ;
* ` ` `
*
2023-06-27 10:24:19 -04:00
* @ param state Editor state .
2019-10-15 11:37:08 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return A value whose reference will change only when an edit occurs .
2019-09-19 11:19:18 -04:00
* /
2022-09-20 11:43:29 -04:00
const getReferenceByDistinctEdits = rememo ( // This unused state argument is listed here for the documentation generating tool (docgen).
2023-06-27 10:24:19 -04:00
state => [ ] , state => [ state . undo . list . length , state . undo . offset ] ) ;
2021-01-27 21:04:13 -05:00
/ * *
* Retrieve the frontend template used for a given link .
*
2023-06-27 10:24:19 -04:00
* @ param state Editor state .
* @ param link Link .
2021-01-27 21:04:13 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return The template record .
2021-01-27 21:04:13 -05:00
* /
function _ _experimentalGetTemplateForLink ( state , link ) {
2021-05-19 11:09:27 -04:00
const records = getEntityRecords ( state , 'postType' , 'wp_template' , {
2021-01-27 21:04:13 -05:00
'find-template' : link
} ) ;
2021-05-21 06:14:23 -04:00
2023-06-27 10:24:19 -04:00
if ( records ? . length ) {
2022-09-20 11:43:29 -04:00
return getEditedEntityRecord ( state , 'postType' , 'wp_template' , records [ 0 ] . id ) ;
2021-05-21 06:14:23 -04:00
}
2022-09-20 11:43:29 -04:00
return null ;
2021-01-27 21:04:13 -05:00
}
2020-06-26 09:33:47 -04:00
/ * *
2021-11-08 09:29:21 -05:00
* Retrieve the current theme ' s base global styles
*
2023-06-27 10:24:19 -04:00
* @ param state Editor state .
2021-11-08 09:29:21 -05:00
*
2022-09-20 11:43:29 -04:00
* @ return The Global Styles object .
2020-06-26 09:33:47 -04:00
* /
2021-11-08 09:29:21 -05:00
function _ _experimentalGetCurrentThemeBaseGlobalStyles ( state ) {
const currentTheme = getCurrentTheme ( state ) ;
if ( ! currentTheme ) {
return null ;
}
return state . themeBaseGlobalStyles [ currentTheme . stylesheet ] ;
}
2022-04-12 11:12:47 -04:00
/ * *
* Return the ID of the current global styles object .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2022-04-12 11:12:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return The current global styles ID .
2022-04-12 11:12:47 -04:00
* /
function _ _experimentalGetCurrentThemeGlobalStylesVariations ( state ) {
const currentTheme = getCurrentTheme ( state ) ;
if ( ! currentTheme ) {
return null ;
}
return state . themeGlobalStyleVariations [ currentTheme . stylesheet ] ;
}
/ * *
* Retrieve the list of registered block patterns .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2022-04-12 11:12:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Block pattern list .
2022-04-12 11:12:47 -04:00
* /
function getBlockPatterns ( state ) {
return state . blockPatterns ;
}
/ * *
* Retrieve the list of registered block pattern categories .
*
2023-06-27 10:24:19 -04:00
* @ param state Data state .
2022-04-12 11:12:47 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return Block pattern category list .
2022-04-12 11:12:47 -04:00
* /
function getBlockPatternCategories ( state ) {
return state . blockPatternCategories ;
}
2023-06-27 10:24:19 -04:00
/ * *
* Returns the revisions of the current global styles theme .
*
* @ param state Data state .
*
* @ return The current global styles .
* /
function getCurrentThemeGlobalStylesRevisions ( state ) {
const currentGlobalStylesId = _ _experimentalGetCurrentGlobalStylesId ( state ) ;
if ( ! currentGlobalStylesId ) {
return null ;
}
return state . themeGlobalStyleRevisions [ currentGlobalStylesId ] ;
}
2021-11-08 09:29:21 -05:00
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/camel-case/dist.es2015/index.js
function camelCaseTransform ( input , index ) {
if ( index === 0 )
return input . toLowerCase ( ) ;
return pascalCaseTransform ( input , index ) ;
}
function camelCaseTransformMerge ( input , index ) {
if ( index === 0 )
return input . toLowerCase ( ) ;
return pascalCaseTransformMerge ( input ) ;
}
function camelCase ( input , options ) {
if ( options === void 0 ) { options = { } ; }
return pascalCase ( input , _ _assign ( { transform : camelCaseTransform } , options ) ) ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/utils/forward-resolver.js
2020-06-26 09:33:47 -04:00
/ * *
2021-11-08 09:29:21 -05:00
* Higher - order function which forward the resolution to another resolver with the same arguments .
2020-06-26 09:33:47 -04:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } resolverName forwarded resolver .
2020-06-26 09:33:47 -04:00
*
* @ return { Function } Enhanced resolver .
* /
2023-06-27 10:24:19 -04:00
const forwardResolver = resolverName => ( ... args ) => async ( {
resolveSelect
} ) => {
await resolveSelect [ resolverName ] ( ... args ) ;
2020-06-26 09:33:47 -04:00
} ;
2021-11-08 09:29:21 -05:00
/* harmony default export */ var forward _resolver = ( forwardResolver ) ;
2020-06-26 09:33:47 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/resolvers.js
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* External dependencies
2019-09-19 11:19:18 -04:00
* /
/ * *
2019-10-15 11:37:08 -04:00
* WordPress dependencies
2019-09-19 11:19:18 -04:00
* /
2021-01-27 21:04:13 -05:00
/ * *
* Internal dependencies
* /
2018-12-13 23:41:57 -05:00
2021-01-27 21:04:13 -05:00
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Requests authors from the REST API .
2020-12-01 07:19:43 -05:00
*
* @ param { Object | undefined } query Optional object of query parameters to
* include with request .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getAuthors = query => async ( {
dispatch
} ) => {
2022-04-11 08:04:30 -04:00
const path = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/users/?who=authors&per_page=100' , query ) ;
2021-11-08 09:29:21 -05:00
const users = await external _wp _apiFetch _default ( ) ( {
2021-05-19 11:09:27 -04:00
path
} ) ;
2021-11-08 09:29:21 -05:00
dispatch . receiveUserQuery ( path , users ) ;
} ;
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Requests the current user from the REST API .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getCurrentUser = ( ) => async ( {
dispatch
} ) => {
2021-11-08 09:29:21 -05:00
const currentUser = await external _wp _apiFetch _default ( ) ( {
2021-05-19 11:09:27 -04:00
path : '/wp/v2/users/me'
} ) ;
2021-11-08 09:29:21 -05:00
dispatch . receiveCurrentUser ( currentUser ) ;
} ;
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Requests an entity ' s record from the REST API .
2019-03-07 04:09:59 -05:00
*
2020-10-13 09:10:30 -04:00
* @ param { string } kind Entity kind .
* @ param { string } name Entity name .
* @ param { number | string } key Record ' s key
* @ param { Object | undefined } query Optional object of query parameters to
2022-09-20 11:43:29 -04:00
* include with request . If requesting specific
* fields , fields must always include the ID .
2019-03-07 04:09:59 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getEntityRecord = ( kind , name , key = '' , query ) => async ( {
select ,
dispatch
} ) => {
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
const entityConfig = configs . find ( config => config . name === name && config . kind === kind ) ;
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
if ( ! entityConfig || entityConfig ? . _ _experimentalNoFetch ) {
return ;
}
2020-10-13 09:10:30 -04:00
2023-06-27 10:24:19 -04:00
const lock = await dispatch . _ _unstableAcquireStoreLock ( STORE _NAME , [ 'entities' , 'records' , kind , name , key ] , {
exclusive : false
} ) ;
2019-10-15 11:37:08 -04:00
2023-06-27 10:24:19 -04:00
try {
if ( query !== undefined && query . _fields ) {
// If requesting specific fields, items and query association to said
// records are stored by ID reference. Thus, fields must always include
// the ID.
query = { ... query ,
_fields : [ ... new Set ( [ ... ( get _normalized _comma _separable ( query . _fields ) || [ ] ) , entityConfig . key || DEFAULT _ENTITY _KEY ] ) ] . join ( )
} ;
} // Disable reason: While true that an early return could leave `path`
// unused, it's important that path is derived using the query prior to
// additional query modifications in the condition below, since those
// modifications are relevant to how the data is tracked in state, and not
// for how the request is made to the REST API.
// eslint-disable-next-line @wordpress/no-unused-vars-before-return
2019-10-15 11:37:08 -04:00
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
const path = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( entityConfig . baseURL + ( key ? '/' + key : '' ) , { ... entityConfig . baseURLParams ,
... query
} ) ;
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
if ( query !== undefined ) {
query = { ... query ,
include : [ key ]
} ; // The resolution cache won't consider query as reusable based on the
// fields, so it's tested here, prior to initiating the REST request,
// and without causing `getEntityRecords` resolution to occur.
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
const hasRecords = select . hasEntityRecords ( kind , name , query ) ;
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
if ( hasRecords ) {
return ;
2019-10-15 11:37:08 -04:00
}
2021-11-15 07:50:17 -05:00
}
2023-06-27 10:24:19 -04:00
const record = await external _wp _apiFetch _default ( ) ( {
path
} ) ;
dispatch . receiveEntityRecords ( kind , name , record , query ) ;
} finally {
dispatch . _ _unstableReleaseStoreLock ( lock ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2020-06-26 09:33:47 -04:00
/ * *
* Requests an entity ' s record from the REST API .
* /
2021-11-08 09:29:21 -05:00
const resolvers _getRawEntityRecord = forward _resolver ( 'getEntityRecord' ) ;
2020-06-26 09:33:47 -04:00
/ * *
* Requests an entity ' s record from the REST API .
* /
2021-11-08 09:29:21 -05:00
const resolvers _getEditedEntityRecord = forward _resolver ( 'getEntityRecord' ) ;
2019-03-07 04:09:59 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Requests the entity ' s records from the REST API .
2019-03-07 04:09:59 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } kind Entity kind .
* @ param { string } name Entity name .
2022-09-20 11:43:29 -04:00
* @ param { Object ? } query Query Object . If requesting specific fields , fields
* must always include the ID .
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 10:37:00 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getEntityRecords = ( kind , name , query = { } ) => async ( {
dispatch
} ) => {
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
const entityConfig = configs . find ( config => config . name === name && config . kind === kind ) ;
if ( ! entityConfig || entityConfig ? . _ _experimentalNoFetch ) {
return ;
}
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
const lock = await dispatch . _ _unstableAcquireStoreLock ( STORE _NAME , [ 'entities' , 'records' , kind , name ] , {
exclusive : false
} ) ;
try {
if ( query . _fields ) {
// If requesting specific fields, items and query association to said
// records are stored by ID reference. Thus, fields must always include
// the ID.
query = { ... query ,
_fields : [ ... new Set ( [ ... ( get _normalized _comma _separable ( query . _fields ) || [ ] ) , entityConfig . key || DEFAULT _ENTITY _KEY ] ) ] . join ( )
} ;
2021-05-19 11:09:27 -04:00
}
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
const path = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( entityConfig . baseURL , { ... entityConfig . baseURLParams ,
... query
2021-05-19 11:09:27 -04:00
} ) ;
2023-06-27 10:24:19 -04:00
let records = Object . values ( await external _wp _apiFetch _default ( ) ( {
path
} ) ) ; // If we request fields but the result doesn't contain the fields,
// explicitly set these fields as "undefined"
// that way we consider the query "fullfilled".
if ( query . _fields ) {
records = records . map ( record => {
query . _fields . split ( ',' ) . forEach ( field => {
if ( ! record . hasOwnProperty ( field ) ) {
record [ field ] = undefined ;
}
} ) ;
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
return record ;
2021-05-19 11:09:27 -04:00
} ) ;
2023-06-27 10:24:19 -04:00
}
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
dispatch . receiveEntityRecords ( kind , name , records , query ) ; // When requesting all fields, the list of results can be used to
// resolve the `getEntityRecord` selector in addition to `getEntityRecords`.
// See https://github.com/WordPress/gutenberg/pull/26575
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
if ( ! query ? . _fields && ! query . context ) {
const key = entityConfig . key || DEFAULT _ENTITY _KEY ;
const resolutionsArgs = records . filter ( record => record [ key ] ) . map ( record => [ kind , name , record [ key ] ] ) ;
dispatch ( {
type : 'START_RESOLUTIONS' ,
selectorName : 'getEntityRecord' ,
args : resolutionsArgs
} ) ;
dispatch ( {
type : 'FINISH_RESOLUTIONS' ,
selectorName : 'getEntityRecord' ,
args : resolutionsArgs
} ) ;
2021-01-27 21:04:13 -05:00
}
2023-06-27 10:24:19 -04:00
} finally {
dispatch . _ _unstableReleaseStoreLock ( lock ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
resolvers _getEntityRecords . shouldInvalidate = ( action , kind , name ) => {
2021-01-27 21:04:13 -05:00
return ( action . type === 'RECEIVE_ITEMS' || action . type === 'REMOVE_ITEMS' ) && action . invalidateCache && kind === action . kind && name === action . name ;
} ;
/ * *
* Requests the current theme .
* /
2023-06-27 10:24:19 -04:00
const resolvers _getCurrentTheme = ( ) => async ( {
dispatch ,
resolveSelect
} ) => {
2021-11-08 09:29:21 -05:00
const activeThemes = await resolveSelect . getEntityRecords ( 'root' , 'theme' , {
status : 'active'
2021-05-19 11:09:27 -04:00
} ) ;
2021-11-08 09:29:21 -05:00
dispatch . receiveCurrentTheme ( activeThemes [ 0 ] ) ;
} ;
2020-06-26 09:33:47 -04:00
/ * *
* Requests theme supports data from the index .
* /
2021-11-08 09:29:21 -05:00
const resolvers _getThemeSupports = forward _resolver ( 'getCurrentTheme' ) ;
2019-09-19 11:19:18 -04:00
/ * *
2019-10-15 11:37:08 -04:00
* Requests a preview from the from the Embed API .
2019-09-19 11:19:18 -04:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } url URL to get the preview for .
2019-09-19 11:19:18 -04:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getEmbedPreview = url => async ( {
dispatch
} ) => {
2021-05-19 11:09:27 -04:00
try {
2021-11-08 09:29:21 -05:00
const embedProxyResponse = await external _wp _apiFetch _default ( ) ( {
2022-04-11 08:04:30 -04:00
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/oembed/1.0/proxy' , {
2021-05-19 11:09:27 -04:00
url
} )
} ) ;
2021-11-08 09:29:21 -05:00
dispatch . receiveEmbedPreview ( url , embedProxyResponse ) ;
2021-05-19 11:09:27 -04:00
} catch ( error ) {
// Embed API 404s if the URL cannot be embedded, so we have to catch the error from the apiRequest here.
2021-11-08 09:29:21 -05:00
dispatch . receiveEmbedPreview ( url , false ) ;
2021-05-19 11:09:27 -04:00
}
2021-11-08 09:29:21 -05:00
} ;
2018-12-17 22:14:52 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Checks whether the current user can perform the given action on the given
* REST resource .
*
2022-09-20 11:43:29 -04:00
* @ param { string } requestedAction Action to check . One of : 'create' , 'read' , 'update' ,
* 'delete' .
* @ param { string } resource REST resource to check , e . g . 'media' or 'posts' .
* @ param { ? string } id ID of the rest resource to check .
2018-12-17 22:14:52 -05:00
* /
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const resolvers _canUser = ( requestedAction , resource , id ) => async ( {
dispatch ,
registry
} ) => {
2022-09-20 11:43:29 -04:00
const {
hasStartedResolution
} = registry . select ( STORE _NAME ) ;
const resourcePath = id ? ` ${ resource } / ${ id } ` : resource ;
const retrievedActions = [ 'create' , 'read' , 'update' , 'delete' ] ;
if ( ! retrievedActions . includes ( requestedAction ) ) {
throw new Error ( ` ' ${ requestedAction } ' is not a valid action. ` ) ;
} // Prevent resolving the same resource twice.
2019-10-15 11:37:08 -04:00
2022-09-20 11:43:29 -04:00
for ( const relatedAction of retrievedActions ) {
if ( relatedAction === requestedAction ) {
continue ;
}
const isAlreadyResolving = hasStartedResolution ( 'canUser' , [ relatedAction , resource , id ] ) ;
if ( isAlreadyResolving ) {
return ;
}
2021-05-19 11:09:27 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-19 11:09:27 -04:00
let response ;
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
try {
2021-11-08 09:29:21 -05:00
response = await external _wp _apiFetch _default ( ) ( {
2022-09-20 11:43:29 -04:00
path : ` /wp/v2/ ${ resourcePath } ` ,
2022-04-12 11:12:47 -04:00
method : 'OPTIONS' ,
2021-05-19 11:09:27 -04:00
parse : false
} ) ;
} catch ( error ) {
// Do nothing if our OPTIONS request comes back with an API error (4xx or
// 5xx). The previously determined isAllowed value will remain in the store.
return ;
2022-04-12 11:12:47 -04:00
} // Optional chaining operator is used here because the API requests don't
// return the expected result in the native version. Instead, API requests
// only return the result, without including response properties like the headers.
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
const allowHeader = response . headers ? . get ( 'allow' ) ;
const allowedMethods = allowHeader ? . allow || allowHeader || '' ;
2022-09-20 11:43:29 -04:00
const permissions = { } ;
const methods = {
create : 'POST' ,
read : 'GET' ,
update : 'PUT' ,
delete : 'DELETE'
} ;
for ( const [ actionName , methodName ] of Object . entries ( methods ) ) {
permissions [ actionName ] = allowedMethods . includes ( methodName ) ;
}
for ( const action of retrievedActions ) {
dispatch . receiveUserPermission ( ` ${ action } / ${ resourcePath } ` , permissions [ action ] ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2021-06-15 04:52:30 -04:00
/ * *
* Checks whether the current user can perform the given action on the given
* REST resource .
*
2021-06-15 11:30:24 -04:00
* @ param { string } kind Entity kind .
* @ param { string } name Entity name .
2021-06-15 04:52:30 -04:00
* @ param { string } recordId Record ' s id .
* /
2023-06-27 10:24:19 -04:00
const resolvers _canUserEditEntityRecord = ( kind , name , recordId ) => async ( {
dispatch
} ) => {
2022-04-12 11:12:47 -04:00
const configs = await dispatch ( getOrLoadEntitiesConfig ( kind ) ) ;
2022-09-20 11:43:29 -04:00
const entityConfig = configs . find ( config => config . name === name && config . kind === kind ) ;
2021-06-15 11:30:24 -04:00
2022-04-12 11:12:47 -04:00
if ( ! entityConfig ) {
2021-06-15 11:30:24 -04:00
return ;
}
2022-04-12 11:12:47 -04:00
const resource = entityConfig . _ _unstable _rest _base ;
2021-11-08 09:29:21 -05:00
await dispatch ( resolvers _canUser ( 'update' , resource , recordId ) ) ;
} ;
2018-12-13 23:41:57 -05:00
/ * *
2019-10-15 11:37:08 -04:00
* Request autosave data from the REST API .
*
* @ param { string } postType The type of the parent post .
* @ param { number } postId The id of the parent post .
2018-12-13 23:41:57 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _getAutosaves = ( postType , postId ) => async ( {
dispatch ,
resolveSelect
} ) => {
2021-05-19 11:09:27 -04:00
const {
2022-09-20 11:43:29 -04:00
rest _base : restBase ,
rest _namespace : restNamespace = 'wp/v2'
2021-11-08 09:29:21 -05:00
} = await resolveSelect . getPostType ( postType ) ;
const autosaves = await external _wp _apiFetch _default ( ) ( {
2022-09-20 11:43:29 -04:00
path : ` / ${ restNamespace } / ${ restBase } / ${ postId } /autosaves?context=edit `
2021-05-19 11:09:27 -04:00
} ) ;
2019-10-15 11:37:08 -04:00
2021-05-19 11:09:27 -04:00
if ( autosaves && autosaves . length ) {
2021-11-08 09:29:21 -05:00
dispatch . receiveAutosaves ( postId , autosaves ) ;
2021-05-19 11:09:27 -04:00
}
2021-11-08 09:29:21 -05:00
} ;
2019-09-19 11:19:18 -04:00
/ * *
2021-01-27 21:04:13 -05:00
* Request autosave data from the REST API .
*
* This resolver exists to ensure the underlying autosaves are fetched via
* ` getAutosaves ` when a call to the ` getAutosave ` selector is made .
*
* @ param { string } postType The type of the parent post .
* @ param { number } postId The id of the parent post .
* /
2023-06-27 10:24:19 -04:00
const resolvers _getAutosave = ( postType , postId ) => async ( {
resolveSelect
} ) => {
2021-11-08 09:29:21 -05:00
await resolveSelect . getAutosaves ( postType , postId ) ;
} ;
2021-01-27 21:04:13 -05:00
/ * *
* Retrieve the frontend template used for a given link .
*
2021-11-08 09:29:21 -05:00
* @ param { string } link Link .
2021-01-27 21:04:13 -05:00
* /
2023-06-27 10:24:19 -04:00
const resolvers _experimentalGetTemplateForLink = link => async ( {
dispatch ,
resolveSelect
} ) => {
2021-05-19 11:09:27 -04:00
let template ;
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
try {
2023-06-27 10:24:19 -04:00
// This is NOT calling a REST endpoint but rather ends up with a response from
// an Ajax function which has a different shape from a WP_REST_Response.
template = await external _wp _apiFetch _default ( ) ( {
url : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( link , {
'_wp-find-template' : true
} )
} ) . then ( ( {
data
} ) => data ) ;
2021-05-19 11:09:27 -04:00
} catch ( e ) { // For non-FSE themes, it is possible that this request returns an error.
}
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
if ( ! template ) {
return ;
}
2021-01-27 21:04:13 -05:00
2021-11-08 09:29:21 -05:00
const record = await resolveSelect . getEntityRecord ( 'postType' , 'wp_template' , template . id ) ;
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
if ( record ) {
2021-11-08 09:29:21 -05:00
dispatch . receiveEntityRecords ( 'postType' , 'wp_template' , [ record ] , {
2021-05-19 11:09:27 -04:00
'find-template' : link
} ) ;
}
2021-11-08 09:29:21 -05:00
} ;
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
resolvers _experimentalGetTemplateForLink . shouldInvalidate = action => {
2021-05-07 07:48:27 -04:00
return ( action . type === 'RECEIVE_ITEMS' || action . type === 'REMOVE_ITEMS' ) && action . invalidateCache && action . kind === 'postType' && action . name === 'wp_template' ;
} ;
2023-06-27 10:24:19 -04:00
const resolvers _experimentalGetCurrentGlobalStylesId = ( ) => async ( {
dispatch ,
resolveSelect
} ) => {
2021-11-08 09:29:21 -05:00
const activeThemes = await resolveSelect . getEntityRecords ( 'root' , 'theme' , {
status : 'active'
} ) ;
2023-06-27 10:24:19 -04:00
const globalStylesURL = activeThemes ? . [ 0 ] ? . _links ? . [ 'wp:user-global-styles' ] ? . [ 0 ] ? . href ;
2021-11-08 09:29:21 -05:00
if ( globalStylesURL ) {
const globalStylesObject = await external _wp _apiFetch _default ( ) ( {
url : globalStylesURL
} ) ;
dispatch . _ _experimentalReceiveCurrentGlobalStylesId ( globalStylesObject . id ) ;
}
} ;
2023-06-27 10:24:19 -04:00
const resolvers _experimentalGetCurrentThemeBaseGlobalStyles = ( ) => async ( {
resolveSelect ,
dispatch
} ) => {
2021-11-08 09:29:21 -05:00
const currentTheme = await resolveSelect . getCurrentTheme ( ) ;
const themeGlobalStyles = await external _wp _apiFetch _default ( ) ( {
path : ` /wp/v2/global-styles/themes/ ${ currentTheme . stylesheet } `
} ) ;
2022-04-12 11:12:47 -04:00
dispatch . _ _experimentalReceiveThemeBaseGlobalStyles ( currentTheme . stylesheet , themeGlobalStyles ) ;
} ;
2023-06-27 10:24:19 -04:00
const resolvers _experimentalGetCurrentThemeGlobalStylesVariations = ( ) => async ( {
resolveSelect ,
dispatch
} ) => {
2022-04-12 11:12:47 -04:00
const currentTheme = await resolveSelect . getCurrentTheme ( ) ;
const variations = await external _wp _apiFetch _default ( ) ( {
path : ` /wp/v2/global-styles/themes/ ${ currentTheme . stylesheet } /variations `
} ) ;
dispatch . _ _experimentalReceiveThemeGlobalStyleVariations ( currentTheme . stylesheet , variations ) ;
} ;
2023-06-27 10:24:19 -04:00
/ * *
* Fetches and returns the revisions of the current global styles theme .
* /
const resolvers _getCurrentThemeGlobalStylesRevisions = ( ) => async ( {
resolveSelect ,
dispatch
} ) => {
const globalStylesId = await resolveSelect . _ _experimentalGetCurrentGlobalStylesId ( ) ;
const record = globalStylesId ? await resolveSelect . getEntityRecord ( 'root' , 'globalStyles' , globalStylesId ) : undefined ;
const revisionsURL = record ? . _links ? . [ 'version-history' ] ? . [ 0 ] ? . href ;
if ( revisionsURL ) {
const resetRevisions = await external _wp _apiFetch _default ( ) ( {
url : revisionsURL
} ) ;
const revisions = resetRevisions ? . map ( revision => Object . fromEntries ( Object . entries ( revision ) . map ( ( [ key , value ] ) => [ camelCase ( key ) , value ] ) ) ) ;
dispatch . receiveThemeGlobalStyleRevisions ( globalStylesId , revisions ) ;
}
} ;
resolvers _getCurrentThemeGlobalStylesRevisions . shouldInvalidate = action => {
return action . type === 'SAVE_ENTITY_RECORD_FINISH' && action . kind === 'root' && ! action . error && action . name === 'globalStyles' ;
} ;
const resolvers _getBlockPatterns = ( ) => async ( {
dispatch
} ) => {
2022-04-12 11:12:47 -04:00
const restPatterns = await external _wp _apiFetch _default ( ) ( {
path : '/wp/v2/block-patterns/patterns'
} ) ;
2023-06-27 10:24:19 -04:00
const patterns = restPatterns ? . map ( pattern => Object . fromEntries ( Object . entries ( pattern ) . map ( ( [ key , value ] ) => [ camelCase ( key ) , value ] ) ) ) ;
2022-04-12 11:12:47 -04:00
dispatch ( {
type : 'RECEIVE_BLOCK_PATTERNS' ,
patterns
} ) ;
} ;
2023-06-27 10:24:19 -04:00
const resolvers _getBlockPatternCategories = ( ) => async ( {
dispatch
} ) => {
2022-04-12 11:12:47 -04:00
const categories = await external _wp _apiFetch _default ( ) ( {
path : '/wp/v2/block-patterns/categories'
} ) ;
dispatch ( {
type : 'RECEIVE_BLOCK_PATTERN_CATEGORIES' ,
categories
} ) ;
2021-11-08 09:29:21 -05:00
} ;
2023-06-27 10:24:19 -04:00
const resolvers _getNavigationFallbackId = ( ) => async ( {
2023-07-03 05:14:26 -04:00
dispatch ,
select
2023-06-27 10:24:19 -04:00
} ) => {
const fallback = await external _wp _apiFetch _default ( ) ( {
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp-block-editor/v1/navigation-fallback' , {
_embed : true
} )
} ) ;
const record = fallback ? . _embedded ? . self ;
dispatch . receiveNavigationFallbackId ( fallback ? . id ) ;
if ( record ) {
2023-07-03 05:14:26 -04:00
// If the fallback is already in the store, don't invalidate navigation queries.
// Otherwise, invalidate the cache for the scenario where there were no Navigation
// posts in the state and the fallback created one.
const existingFallbackEntityRecord = select . getEntityRecord ( 'postType' , 'wp_navigation' , fallback ? . id ) ;
const invalidateNavigationQueries = ! existingFallbackEntityRecord ;
2023-06-27 10:24:19 -04:00
dispatch . receiveEntityRecords ( 'postType' , 'wp_navigation' , record , undefined , invalidateNavigationQueries ) ; // Resolve to avoid further network requests.
dispatch . finishResolution ( 'getEntityRecord' , [ 'postType' , 'wp_navigation' , fallback ? . id ] ) ;
}
} ;
2021-11-08 09:29:21 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/locks/utils.js
2021-11-08 09:29:21 -05:00
function deepCopyLocksTreePath ( tree , path ) {
const newTree = { ... tree
} ;
let currentNode = newTree ;
for ( const branchName of path ) {
currentNode . children = { ... currentNode . children ,
[ branchName ] : {
locks : [ ] ,
children : { } ,
... currentNode . children [ branchName ]
}
} ;
currentNode = currentNode . children [ branchName ] ;
}
return newTree ;
}
function getNode ( tree , path ) {
let currentNode = tree ;
for ( const branchName of path ) {
const nextNode = currentNode . children [ branchName ] ;
if ( ! nextNode ) {
return null ;
}
currentNode = nextNode ;
}
return currentNode ;
}
function * iteratePath ( tree , path ) {
let currentNode = tree ;
yield currentNode ;
for ( const branchName of path ) {
const nextNode = currentNode . children [ branchName ] ;
if ( ! nextNode ) {
break ;
}
yield nextNode ;
currentNode = nextNode ;
}
}
function * iterateDescendants ( node ) {
const stack = Object . values ( node . children ) ;
while ( stack . length ) {
const childNode = stack . pop ( ) ;
yield childNode ;
stack . push ( ... Object . values ( childNode . children ) ) ;
}
}
2023-06-27 10:24:19 -04:00
function hasConflictingLock ( {
exclusive
} , locks ) {
2021-11-08 09:29:21 -05:00
if ( exclusive && locks . length ) {
return true ;
}
if ( ! exclusive && locks . filter ( lock => lock . exclusive ) . length ) {
return true ;
}
return false ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/locks/reducer.js
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
const DEFAULT _STATE = {
requests : [ ] ,
tree : {
locks : [ ] ,
children : { }
}
} ;
/ * *
* Reducer returning locks .
*
* @ param { Object } state Current state .
* @ param { Object } action Dispatched action .
*
* @ return { Object } Updated state .
* /
2023-06-27 10:24:19 -04:00
function locks ( state = DEFAULT _STATE , action ) {
2021-11-08 09:29:21 -05:00
switch ( action . type ) {
case 'ENQUEUE_LOCK_REQUEST' :
{
const {
request
} = action ;
return { ... state ,
requests : [ request , ... state . requests ]
} ;
}
case 'GRANT_LOCK_REQUEST' :
{
const {
lock ,
request
} = action ;
const {
store ,
path
} = request ;
const storePath = [ store , ... path ] ;
const newTree = deepCopyLocksTreePath ( state . tree , storePath ) ;
const node = getNode ( newTree , storePath ) ;
node . locks = [ ... node . locks , lock ] ;
return { ... state ,
requests : state . requests . filter ( r => r !== request ) ,
tree : newTree
} ;
}
case 'RELEASE_LOCK' :
{
const {
lock
} = action ;
const storePath = [ lock . store , ... lock . path ] ;
const newTree = deepCopyLocksTreePath ( state . tree , storePath ) ;
const node = getNode ( newTree , storePath ) ;
node . locks = node . locks . filter ( l => l !== lock ) ;
return { ... state ,
tree : newTree
} ;
}
}
return state ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/locks/selectors.js
2021-01-27 21:04:13 -05:00
/ * *
* Internal dependencies
* /
2021-11-08 09:29:21 -05:00
function getPendingLockRequests ( state ) {
return state . requests ;
2021-01-27 21:04:13 -05:00
}
2023-06-27 10:24:19 -04:00
function isLockAvailable ( state , store , path , {
exclusive
} ) {
2021-05-19 11:09:27 -04:00
const storePath = [ store , ... path ] ;
2021-11-08 09:29:21 -05:00
const locks = state . tree ; // Validate all parents and the node itself
2021-05-19 11:09:27 -04:00
for ( const node of iteratePath ( locks , storePath ) ) {
if ( hasConflictingLock ( {
exclusive
} , node . locks ) ) {
return false ;
}
} // iteratePath terminates early if path is unreachable, let's
// re-fetch the node and check it exists in the tree.
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
const node = getNode ( locks , storePath ) ;
2021-01-27 21:04:13 -05:00
if ( ! node ) {
return true ;
} // Validate all nested nodes
2021-05-19 11:09:27 -04:00
for ( const descendant of iterateDescendants ( node ) ) {
if ( hasConflictingLock ( {
exclusive
} , descendant . locks ) ) {
return false ;
2021-01-27 21:04:13 -05:00
}
}
return true ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/locks/engine.js
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
function createLocks ( ) {
2022-04-11 08:04:30 -04:00
let state = locks ( undefined , {
2021-11-08 09:29:21 -05:00
type : '@@INIT'
} ) ;
function processPendingLockRequests ( ) {
for ( const request of getPendingLockRequests ( state ) ) {
const {
store ,
path ,
exclusive ,
notifyAcquired
} = request ;
if ( isLockAvailable ( state , store , path , {
exclusive
} ) ) {
const lock = {
store ,
path ,
exclusive
} ;
2022-04-11 08:04:30 -04:00
state = locks ( state , {
2021-11-08 09:29:21 -05:00
type : 'GRANT_LOCK_REQUEST' ,
lock ,
request
} ) ;
notifyAcquired ( lock ) ;
}
}
}
function acquire ( store , path , exclusive ) {
return new Promise ( resolve => {
2022-04-11 08:04:30 -04:00
state = locks ( state , {
2021-11-08 09:29:21 -05:00
type : 'ENQUEUE_LOCK_REQUEST' ,
request : {
store ,
path ,
exclusive ,
notifyAcquired : resolve
}
} ) ;
processPendingLockRequests ( ) ;
} ) ;
}
function release ( lock ) {
2022-04-11 08:04:30 -04:00
state = locks ( state , {
2021-11-08 09:29:21 -05:00
type : 'RELEASE_LOCK' ,
lock
} ) ;
processPendingLockRequests ( ) ;
}
return {
acquire ,
release
} ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/locks/actions.js
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
function createLocksActions ( ) {
const locks = createLocks ( ) ;
2023-06-27 10:24:19 -04:00
function _ _unstableAcquireStoreLock ( store , path , {
exclusive
} ) {
2021-11-08 09:29:21 -05:00
return ( ) => locks . acquire ( store , path , exclusive ) ;
}
function _ _unstableReleaseStoreLock ( lock ) {
return ( ) => locks . release ( lock ) ;
}
return {
_ _unstableAcquireStoreLock ,
_ _unstableReleaseStoreLock
} ;
}
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: external ["wp","privateApis"]
var external _wp _privateApis _namespaceObject = window [ "wp" ] [ "privateApis" ] ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/private-apis.js
/ * *
* WordPress dependencies
* /
const {
lock ,
unlock
} = ( 0 , external _wp _privateApis _namespaceObject . _ _dangerousOptInToUnstableAPIsOnlyForCoreModules ) ( 'I know using unstable features means my plugin or theme will inevitably break on the next WordPress release.' , '@wordpress/core-data' ) ;
2023-07-03 05:14:26 -04:00
; // CONCATENATED MODULE: external ["wp","element"]
var external _wp _element _namespaceObject = window [ "wp" ] [ "element" ] ;
; // CONCATENATED MODULE: external ["wp","blocks"]
var external _wp _blocks _namespaceObject = window [ "wp" ] [ "blocks" ] ;
; // CONCATENATED MODULE: external ["wp","blockEditor"]
var external _wp _blockEditor _namespaceObject = window [ "wp" ] [ "blockEditor" ] ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/entity-provider.js
2021-01-27 21:04:13 -05:00
/ * *
* WordPress dependencies
* /
2023-06-27 10:24:19 -04:00
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
2023-06-27 10:24:19 -04:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('@wordpress/blocks').WPBlock} WPBlock */
const EMPTY _ARRAY = [ ] ;
2023-06-27 10:24:19 -04:00
let oldFootnotes = { } ;
2021-01-27 21:04:13 -05:00
/ * *
* Internal dependencies
* /
2022-04-12 11:12:47 -04:00
const entityContexts = { ... rootEntitiesConfig . reduce ( ( acc , loader ) => {
if ( ! acc [ loader . kind ] ) {
acc [ loader . kind ] = { } ;
2021-05-19 11:09:27 -04:00
}
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
acc [ loader . kind ] [ loader . name ] = {
context : ( 0 , external _wp _element _namespaceObject . createContext ) ( undefined )
2021-05-19 11:09:27 -04:00
} ;
return acc ;
} , { } ) ,
2022-04-12 11:12:47 -04:00
... additionalEntityConfigLoaders . reduce ( ( acc , loader ) => {
acc [ loader . kind ] = { } ;
2021-05-19 11:09:27 -04:00
return acc ;
} , { } )
} ;
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
const getEntityContext = ( kind , name ) => {
if ( ! entityContexts [ kind ] ) {
2021-05-19 11:09:27 -04:00
throw new Error ( ` Missing entity config for kind: ${ kind } . ` ) ;
2021-01-27 21:04:13 -05:00
}
2022-04-12 11:12:47 -04:00
if ( ! entityContexts [ kind ] [ name ] ) {
entityContexts [ kind ] [ name ] = {
context : ( 0 , external _wp _element _namespaceObject . createContext ) ( undefined )
2021-01-27 21:04:13 -05:00
} ;
}
2022-04-12 11:12:47 -04:00
return entityContexts [ kind ] [ name ] . context ;
2021-01-27 21:04:13 -05:00
} ;
/ * *
* Context provider component for providing
2022-04-12 11:12:47 -04:00
* an entity for a specific entity .
2021-01-27 21:04:13 -05:00
*
* @ param { Object } props The component ' s props .
* @ param { string } props . kind The entity kind .
2022-04-12 11:12:47 -04:00
* @ param { string } props . type The entity name .
2021-01-27 21:04:13 -05:00
* @ param { number } props . id The entity ID .
* @ param { * } props . children The children to wrap .
*
* @ return { Object } The provided children , wrapped with
* the entity ' s context provider .
* /
2023-06-27 10:24:19 -04:00
function EntityProvider ( {
kind ,
type : name ,
id ,
children
} ) {
2022-04-12 11:12:47 -04:00
const Provider = getEntityContext ( kind , name ) . Provider ;
2022-04-11 08:04:30 -04:00
return ( 0 , external _wp _element _namespaceObject . createElement ) ( Provider , {
2021-01-27 21:04:13 -05:00
value : id
} , children ) ;
}
/ * *
* Hook that returns the ID for the nearest
* provided entity of the specified type .
*
* @ param { string } kind The entity kind .
2022-04-12 11:12:47 -04:00
* @ param { string } name The entity name .
2021-01-27 21:04:13 -05:00
* /
2022-04-12 11:12:47 -04:00
function useEntityId ( kind , name ) {
return ( 0 , external _wp _element _namespaceObject . useContext ) ( getEntityContext ( kind , name ) ) ;
2021-01-27 21:04:13 -05:00
}
/ * *
* Hook that returns the value and a setter for the
* specified property of the nearest provided
* entity of the specified type .
*
* @ param { string } kind The entity kind .
2022-04-12 11:12:47 -04:00
* @ param { string } name The entity name .
2021-01-27 21:04:13 -05:00
* @ param { string } prop The property name .
* @ param { string } [ _id ] An entity ID to use instead of the context - provided one .
*
2021-06-15 04:52:30 -04:00
* @ return { [ * , Function , * ] } An array where the first item is the
* property value , the second is the
* setter and the third is the full value
* object from REST API containing more
* information like ` raw ` , ` rendered ` and
* ` protected ` props .
2021-01-27 21:04:13 -05:00
* /
2022-04-12 11:12:47 -04:00
function useEntityProp ( kind , name , prop , _id ) {
const providerId = useEntityId ( kind , name ) ;
2021-05-19 11:09:27 -04:00
const id = _id !== null && _id !== void 0 ? _id : providerId ;
const {
value ,
fullValue
2022-04-11 08:04:30 -04:00
} = ( 0 , external _wp _data _namespaceObject . useSelect ) ( select => {
2021-05-19 11:09:27 -04:00
const {
getEntityRecord ,
getEditedEntityRecord
2021-11-08 09:29:21 -05:00
} = select ( STORE _NAME ) ;
2022-04-12 11:12:47 -04:00
const record = getEntityRecord ( kind , name , id ) ; // Trigger resolver.
2021-05-19 11:09:27 -04:00
2022-04-12 11:12:47 -04:00
const editedRecord = getEditedEntityRecord ( kind , name , id ) ;
return record && editedRecord ? {
value : editedRecord [ prop ] ,
fullValue : record [ prop ]
2021-01-27 21:04:13 -05:00
} : { } ;
2022-04-12 11:12:47 -04:00
} , [ kind , name , id , prop ] ) ;
2021-05-19 11:09:27 -04:00
const {
editEntityRecord
2022-04-11 08:04:30 -04:00
} = ( 0 , external _wp _data _namespaceObject . useDispatch ) ( STORE _NAME ) ;
const setValue = ( 0 , external _wp _element _namespaceObject . useCallback ) ( newValue => {
2022-04-12 11:12:47 -04:00
editEntityRecord ( kind , name , id , {
2021-05-19 11:09:27 -04:00
[ prop ] : newValue
} ) ;
2022-04-12 11:12:47 -04:00
} , [ kind , name , id , prop ] ) ;
2021-01-27 21:04:13 -05:00
return [ value , setValue , fullValue ] ;
}
/ * *
* Hook that returns block content getters and setters for
* the nearest provided entity of the specified type .
*
* The return value has the shape ` [ blocks, onInput, onChange ] ` .
* ` onInput ` is for block changes that don ' t create undo levels
* or dirty the post , non - persistent changes , and ` onChange ` is for
* peristent changes . They map directly to the props of a
* ` BlockEditorProvider ` and are intended to be used with it ,
* or similar components or hooks .
*
2021-11-08 09:29:21 -05:00
* @ param { string } kind The entity kind .
2022-04-12 11:12:47 -04:00
* @ param { string } name The entity name .
2021-01-27 21:04:13 -05:00
* @ param { Object } options
2021-11-08 09:29:21 -05:00
* @ param { string } [ options . id ] An entity ID to use instead of the context - provided one .
2021-01-27 21:04:13 -05:00
*
* @ return { [ WPBlock [ ] , Function , Function ] } The block array and setters .
* /
2023-06-27 10:24:19 -04:00
function useEntityBlockEditor ( kind , name , {
id : _id
} = { } ) {
2022-04-12 11:12:47 -04:00
const providerId = useEntityId ( kind , name ) ;
2021-05-19 11:09:27 -04:00
const id = _id !== null && _id !== void 0 ? _id : providerId ;
const {
content ,
2023-07-07 03:21:17 -04:00
blocks ,
meta
2022-04-11 08:04:30 -04:00
} = ( 0 , external _wp _data _namespaceObject . useSelect ) ( select => {
2021-05-19 11:09:27 -04:00
const {
getEditedEntityRecord
2021-11-08 09:29:21 -05:00
} = select ( STORE _NAME ) ;
2022-04-12 11:12:47 -04:00
const editedRecord = getEditedEntityRecord ( kind , name , id ) ;
2021-01-27 21:04:13 -05:00
return {
2022-04-12 11:12:47 -04:00
blocks : editedRecord . blocks ,
2023-07-07 03:21:17 -04:00
content : editedRecord . content ,
meta : editedRecord . meta
2021-01-27 21:04:13 -05:00
} ;
2022-04-12 11:12:47 -04:00
} , [ kind , name , id ] ) ;
2021-05-19 11:09:27 -04:00
const {
_ _unstableCreateUndoLevel ,
editEntityRecord
2022-04-11 08:04:30 -04:00
} = ( 0 , external _wp _data _namespaceObject . useDispatch ) ( STORE _NAME ) ;
( 0 , external _wp _element _namespaceObject . useEffect ) ( ( ) => {
2021-01-27 21:04:13 -05:00
// Load the blocks from the content if not already in state
// Guard against other instances that might have
// set content to a function already or the blocks are already in state.
if ( content && typeof content !== 'function' && ! blocks ) {
2022-04-11 08:04:30 -04:00
const parsedContent = ( 0 , external _wp _blocks _namespaceObject . parse ) ( content ) ;
2022-04-12 11:12:47 -04:00
editEntityRecord ( kind , name , id , {
2021-01-27 21:04:13 -05:00
blocks : parsedContent
} , {
undoIgnore : true
} ) ;
}
} , [ content ] ) ;
2023-06-27 10:24:19 -04:00
const updateFootnotes = ( 0 , external _wp _element _namespaceObject . useCallback ) ( _blocks => {
2023-07-11 02:59:09 -04:00
const output = {
blocks : _blocks
} ;
if ( ! meta ) return output ; // If meta.footnotes is empty, it means the meta is not registered.
2023-06-27 10:24:19 -04:00
2023-07-11 02:59:09 -04:00
if ( meta . footnotes === undefined ) return output ;
2023-06-27 10:24:19 -04:00
const {
getRichTextValues
} = unlock ( external _wp _blockEditor _namespaceObject . privateApis ) ;
const _content = getRichTextValues ( _blocks ) . join ( '' ) || '' ;
const newOrder = [ ] ; // This can be avoided when
// https://github.com/WordPress/gutenberg/pull/43204 lands. We can then
// get the order directly from the rich text values.
if ( _content . indexOf ( 'data-fn' ) !== - 1 ) {
const regex = /data-fn="([^"]+)"/g ;
let match ;
while ( ( match = regex . exec ( _content ) ) !== null ) {
newOrder . push ( match [ 1 ] ) ;
}
}
const footnotes = meta . footnotes ? JSON . parse ( meta . footnotes ) : [ ] ;
const currentOrder = footnotes . map ( fn => fn . id ) ;
2023-07-11 02:59:09 -04:00
if ( currentOrder . join ( '' ) === newOrder . join ( '' ) ) return output ;
2023-06-27 10:24:19 -04:00
const newFootnotes = newOrder . map ( fnId => footnotes . find ( fn => fn . id === fnId ) || oldFootnotes [ fnId ] || {
id : fnId ,
content : ''
} ) ;
2023-07-11 02:59:09 -04:00
function updateAttributes ( attributes ) {
attributes = { ... attributes
} ;
for ( const key in attributes ) {
const value = attributes [ key ] ;
if ( Array . isArray ( value ) ) {
attributes [ key ] = value . map ( updateAttributes ) ;
continue ;
}
if ( typeof value !== 'string' ) {
continue ;
}
if ( value . indexOf ( 'data-fn' ) === - 1 ) {
continue ;
} // When we store rich text values, this would no longer
// require a regex.
const regex = /(<sup[^>]+data-fn="([^"]+)"[^>]*><a[^>]*>)[\d*]*<\/a><\/sup>/g ;
attributes [ key ] = value . replace ( regex , ( match , opening , fnId ) => {
const index = newOrder . indexOf ( fnId ) ;
return ` ${ opening } ${ index + 1 } </a></sup> ` ;
} ) ;
const compatRegex = /<a[^>]+data-fn="([^"]+)"[^>]*>\*<\/a>/g ;
attributes [ key ] = attributes [ key ] . replace ( compatRegex , ( match , fnId ) => {
const index = newOrder . indexOf ( fnId ) ;
return ` <sup data-fn=" ${ fnId } " class="fn"><a href="# ${ fnId } " id=" ${ fnId } -link"> ${ index + 1 } </a></sup> ` ;
} ) ;
}
return attributes ;
}
function updateBlocksAttributes ( _ _blocks ) {
return _ _blocks . map ( block => {
return { ... block ,
attributes : updateAttributes ( block . attributes ) ,
innerBlocks : updateBlocksAttributes ( block . innerBlocks )
} ;
} ) ;
} // We need to go through all block attributs deeply and update the
// footnote anchor numbering (textContent) to match the new order.
const newBlocks = updateBlocksAttributes ( _blocks ) ;
2023-06-27 10:24:19 -04:00
oldFootnotes = { ... oldFootnotes ,
... footnotes . reduce ( ( acc , fn ) => {
if ( ! newOrder . includes ( fn . id ) ) {
acc [ fn . id ] = fn ;
}
return acc ;
} , { } )
} ;
2023-07-07 03:21:17 -04:00
return {
meta : { ... meta ,
footnotes : JSON . stringify ( newFootnotes )
2023-07-11 02:59:09 -04:00
} ,
blocks : newBlocks
2021-01-27 21:04:13 -05:00
} ;
2023-07-07 03:21:17 -04:00
} , [ meta ] ) ;
const onChange = ( 0 , external _wp _element _namespaceObject . useCallback ) ( ( newBlocks , options ) => {
const noChange = blocks === newBlocks ;
2021-01-27 21:04:13 -05:00
if ( noChange ) {
2022-04-12 11:12:47 -04:00
return _ _unstableCreateUndoLevel ( kind , name , id ) ;
2023-07-07 03:21:17 -04:00
}
const {
selection
} = options ; // We create a new function here on every persistent edit
2021-01-27 21:04:13 -05:00
// to make sure the edit makes the post dirty and creates
// a new undo level.
2023-07-07 03:21:17 -04:00
const edits = {
selection ,
content : ( {
blocks : blocksForSerialization = [ ]
} ) => ( 0 , external _wp _blocks _namespaceObject . _ _unstableSerializeAndClean ) ( blocksForSerialization ) ,
... updateFootnotes ( newBlocks )
} ;
editEntityRecord ( kind , name , id , edits , {
isCached : false
2023-06-27 10:24:19 -04:00
} ) ;
2023-07-07 03:21:17 -04:00
} , [ kind , name , id , blocks , updateFootnotes , _ _unstableCreateUndoLevel , editEntityRecord ] ) ;
2022-04-11 08:04:30 -04:00
const onInput = ( 0 , external _wp _element _namespaceObject . useCallback ) ( ( newBlocks , options ) => {
2021-05-19 11:09:27 -04:00
const {
selection
} = options ;
2023-07-07 03:21:17 -04:00
const footnotesChanges = updateFootnotes ( newBlocks ) ;
2021-05-19 11:09:27 -04:00
const edits = {
2023-07-07 03:21:17 -04:00
selection ,
... footnotesChanges
2021-01-27 21:04:13 -05:00
} ;
2023-07-07 03:21:17 -04:00
editEntityRecord ( kind , name , id , edits , {
isCached : true
2023-06-27 10:24:19 -04:00
} ) ;
2023-07-07 03:21:17 -04:00
} , [ kind , name , id , updateFootnotes , editEntityRecord ] ) ;
2022-04-12 11:12:47 -04:00
return [ blocks !== null && blocks !== void 0 ? blocks : EMPTY _ARRAY , onInput , onChange ] ;
}
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: external ["wp","htmlEntities"]
var external _wp _htmlEntities _namespaceObject = window [ "wp" ] [ "htmlEntities" ] ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/fetch/__experimental-fetch-link-suggestions.js
2022-04-12 11:12:47 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* WordPress dependencies
2022-04-12 11:12:47 -04:00
* /
/ * *
2022-09-20 11:43:29 -04:00
* Filters the search by type
*
* @ typedef { 'attachment' | 'post' | 'term' | 'post-format' } WPLinkSearchType
2022-04-12 11:12:47 -04:00
* /
/ * *
2022-09-20 11:43:29 -04:00
* A link with an id may be of kind post - type or taxonomy
*
* @ typedef { 'post-type' | 'taxonomy' } WPKind
2022-04-12 11:12:47 -04:00
* /
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef WPLinkSearchOptions
*
* @ property { boolean } [ isInitialSuggestions ] Displays initial search suggestions , when true .
* @ property { WPLinkSearchType } [ type ] Filters by search type .
* @ property { string } [ subtype ] Slug of the post - type or taxonomy .
* @ property { number } [ page ] Which page of results to return .
* @ property { number } [ perPage ] Search results per page .
* /
/ * *
* @ typedef WPLinkSearchResult
*
* @ property { number } id Post or term id .
* @ property { string } url Link url .
* @ property { string } title Title of the link .
* @ property { string } type The taxonomy or post type slug or type URL .
* @ property { WPKind } [ kind ] Link kind of post - type or taxonomy
* /
2022-04-12 11:12:47 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef WPLinkSearchResultAugments
*
* @ property { { kind : WPKind } } [ meta ] Contains kind information .
* @ property { WPKind } [ subtype ] Optional subtype if it exists .
* /
2022-04-12 11:12:47 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { WPLinkSearchResult & WPLinkSearchResultAugments } WPLinkSearchResultAugmented
* /
2022-04-12 11:12:47 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* @ typedef WPEditorSettings
2021-04-15 11:19:43 -04:00
*
* @ property { boolean } [ disablePostFormats ] Disables post formats , when true .
* /
/ * *
* Fetches link suggestions from the API .
*
* @ async
* @ param { string } search
* @ param { WPLinkSearchOptions } [ searchOptions ]
* @ param { WPEditorSettings } [ settings ]
*
* @ example
* ` ` ` js
* import { _ _experimentalFetchLinkSuggestions as fetchLinkSuggestions } from '@wordpress/core-data' ;
*
* //...
*
* export function initialize ( id , settings ) {
*
* settings . _ _experimentalFetchLinkSuggestions = (
* search ,
* searchOptions
* ) => fetchLinkSuggestions ( search , searchOptions , settings ) ;
* ` ` `
* @ return { Promise < WPLinkSearchResult [ ] > } List of search suggestions
* /
2023-06-27 10:24:19 -04:00
const fetchLinkSuggestions = async ( search , searchOptions = { } , settings = { } ) => {
2021-05-19 11:09:27 -04:00
const {
isInitialSuggestions = false ,
type = undefined ,
subtype = undefined ,
page = undefined ,
perPage = isInitialSuggestions ? 3 : 20
} = searchOptions ;
const {
disablePostFormats = false
} = settings ;
2022-04-12 11:12:47 -04:00
/** @type {Promise<WPLinkSearchResult>[]} */
2021-05-19 11:09:27 -04:00
const queries = [ ] ;
if ( ! type || type === 'post' ) {
queries . push ( external _wp _apiFetch _default ( ) ( {
2022-04-11 08:04:30 -04:00
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/search' , {
2021-05-19 11:09:27 -04:00
search ,
2021-04-15 11:19:43 -04:00
page ,
2021-05-19 11:09:27 -04:00
per _page : perPage ,
type : 'post' ,
subtype
} )
} ) . then ( results => {
return results . map ( result => {
return { ... result ,
meta : {
kind : 'post-type' ,
subtype
}
} ;
} ) ;
2022-04-12 11:12:47 -04:00
} ) . catch ( ( ) => [ ] ) // Fail by returning no results.
2021-05-19 11:09:27 -04:00
) ;
}
2021-04-15 11:19:43 -04:00
2021-05-19 11:09:27 -04:00
if ( ! type || type === 'term' ) {
queries . push ( external _wp _apiFetch _default ( ) ( {
2022-04-11 08:04:30 -04:00
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/search' , {
2021-05-19 11:09:27 -04:00
search ,
page ,
per _page : perPage ,
type : 'term' ,
subtype
} )
} ) . then ( results => {
return results . map ( result => {
return { ... result ,
meta : {
kind : 'taxonomy' ,
subtype
}
} ;
} ) ;
2022-04-12 11:12:47 -04:00
} ) . catch ( ( ) => [ ] ) // Fail by returning no results.
) ;
2021-05-19 11:09:27 -04:00
}
2021-04-15 11:19:43 -04:00
2021-05-19 11:09:27 -04:00
if ( ! disablePostFormats && ( ! type || type === 'post-format' ) ) {
queries . push ( external _wp _apiFetch _default ( ) ( {
2022-04-11 08:04:30 -04:00
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/search' , {
2021-05-19 11:09:27 -04:00
search ,
page ,
per _page : perPage ,
type : 'post-format' ,
subtype
} )
2021-05-21 06:14:23 -04:00
} ) . then ( results => {
return results . map ( result => {
return { ... result ,
meta : {
kind : 'taxonomy' ,
subtype
}
} ;
} ) ;
2022-04-12 11:12:47 -04:00
} ) . catch ( ( ) => [ ] ) // Fail by returning no results.
) ;
}
if ( ! type || type === 'attachment' ) {
queries . push ( external _wp _apiFetch _default ( ) ( {
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '/wp/v2/media' , {
search ,
page ,
per _page : perPage
} )
} ) . then ( results => {
return results . map ( result => {
return { ... result ,
meta : {
kind : 'media'
}
} ;
} ) ;
} ) . catch ( ( ) => [ ] ) // Fail by returning no results.
) ;
2021-05-19 11:09:27 -04:00
}
2021-04-15 11:19:43 -04:00
2021-05-19 11:09:27 -04:00
return Promise . all ( queries ) . then ( results => {
2022-04-12 11:12:47 -04:00
return results . reduce ( (
/** @type {WPLinkSearchResult[]} */
accumulator , current ) => accumulator . concat ( current ) , // Flatten list.
2021-05-19 11:09:27 -04:00
[ ] ) . filter (
/ * *
* @ param { { id : number } } result
* /
result => {
return ! ! result . id ;
2022-04-12 11:12:47 -04:00
} ) . slice ( 0 , perPage ) . map ( (
/** @type {WPLinkSearchResultAugmented} */
result ) => {
2022-09-20 11:43:29 -04:00
const isMedia = result . type === 'attachment' ;
return {
id : result . id ,
// @ts-ignore fix when we make this a TS file
url : isMedia ? result . source _url : result . url ,
title : ( 0 , external _wp _htmlEntities _namespaceObject . decodeEntities ) ( isMedia ? // @ts-ignore fix when we make this a TS file
result . title . rendered : result . title || '' ) || ( 0 , external _wp _i18n _namespaceObject . _ _ ) ( '(no title)' ) ,
type : result . subtype || result . type ,
2023-06-27 10:24:19 -04:00
kind : result ? . meta ? . kind
2022-09-20 11:43:29 -04:00
} ;
} ) ;
} ) ;
} ;
/* harmony default export */ var _experimental _fetch _link _suggestions = ( fetchLinkSuggestions ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/fetch/__experimental-fetch-url-data.js
/ * *
* WordPress dependencies
* /
/ * *
* A simple in - memory cache for requests .
* This avoids repeat HTTP requests which may be beneficial
* for those wishing to preserve low - bandwidth .
* /
const CACHE = new Map ( ) ;
/ * *
* @ typedef WPRemoteUrlData
*
* @ property { string } title contents of the remote URL ' s ` <title> ` tag .
* /
/ * *
* Fetches data about a remote URL .
* eg : < title > tag , favicon ... etc .
*
* @ async
* @ param { string } url the URL to request details from .
* @ param { Object ? } options any options to pass to the underlying fetch .
* @ example
* ` ` ` js
* import { _ _experimentalFetchUrlData as fetchUrlData } from '@wordpress/core-data' ;
*
* //...
*
* export function initialize ( id , settings ) {
*
* settings . _ _experimentalFetchUrlData = (
* url
* ) => fetchUrlData ( url ) ;
* ` ` `
* @ return { Promise < WPRemoteUrlData [ ] > } Remote URL data .
* /
2023-06-27 10:24:19 -04:00
const fetchUrlData = async ( url , options = { } ) => {
2022-09-20 11:43:29 -04:00
const endpoint = '/wp-block-editor/v1/url-details' ;
const args = {
url : ( 0 , external _wp _url _namespaceObject . prependHTTP ) ( url )
} ;
if ( ! ( 0 , external _wp _url _namespaceObject . isURL ) ( url ) ) {
return Promise . reject ( ` ${ url } is not a valid URL. ` ) ;
} // Test for "http" based URL as it is possible for valid
// yet unusable URLs such as `tel:123456` to be passed.
const protocol = ( 0 , external _wp _url _namespaceObject . getProtocol ) ( url ) ;
if ( ! protocol || ! ( 0 , external _wp _url _namespaceObject . isValidProtocol ) ( protocol ) || ! protocol . startsWith ( 'http' ) || ! /^https?:\/\/[^\/\s]/i . test ( url ) ) {
return Promise . reject ( ` ${ url } does not have a valid protocol. URLs must be "http" based ` ) ;
}
if ( CACHE . has ( url ) ) {
return CACHE . get ( url ) ;
}
return external _wp _apiFetch _default ( ) ( {
path : ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( endpoint , args ) ,
... options
} ) . then ( res => {
CACHE . set ( url , res ) ;
return res ;
} ) ;
} ;
/* harmony default export */ var _experimental _fetch _url _data = ( fetchUrlData ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/fetch/index.js
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/memize/dist/index.js
/ * *
* Memize options object .
*
* @ typedef MemizeOptions
*
* @ property { number } [ maxSize ] Maximum size of the cache .
* /
/ * *
* Internal cache entry .
*
* @ typedef MemizeCacheNode
*
* @ property { ? MemizeCacheNode | undefined } [ prev ] Previous node .
* @ property { ? MemizeCacheNode | undefined } [ next ] Next node .
* @ property { Array < * > } args Function arguments for cache
* entry .
* @ property { * } val Function result .
* /
/ * *
* Properties of the enhanced function for controlling cache .
*
* @ typedef MemizeMemoizedFunction
*
* @ property { ( ) => void } clear Clear the cache .
* /
/ * *
* Accepts a function to be memoized , and returns a new memoized function , with
* optional options .
*
* @ template { ( ... args : any [ ] ) => any } F
*
* @ param { F } fn Function to memoize .
* @ param { MemizeOptions } [ options ] Options object .
*
* @ return { ( ( ... args : Parameters < F > ) => ReturnType < F > ) & MemizeMemoizedFunction } Memoized function .
* /
function memize ( fn , options ) {
var size = 0 ;
/** @type {?MemizeCacheNode|undefined} */
var head ;
/** @type {?MemizeCacheNode|undefined} */
var tail ;
options = options || { } ;
function memoized ( /* ...args */ ) {
var node = head ,
len = arguments . length ,
args ,
i ;
searchCache : while ( node ) {
// Perform a shallow equality test to confirm that whether the node
// under test is a candidate for the arguments passed. Two arrays
// are shallowly equal if their length matches and each entry is
// strictly equal between the two sets. Avoid abstracting to a
// function which could incur an arguments leaking deoptimization.
// Check whether node arguments match arguments length
if ( node . args . length !== arguments . length ) {
node = node . next ;
continue ;
}
// Check whether node arguments match arguments values
for ( i = 0 ; i < len ; i ++ ) {
if ( node . args [ i ] !== arguments [ i ] ) {
node = node . next ;
continue searchCache ;
}
}
// At this point we can assume we've found a match
// Surface matched node to head if not already
if ( node !== head ) {
// As tail, shift to previous. Must only shift if not also
// head, since if both head and tail, there is no previous.
if ( node === tail ) {
tail = node . prev ;
}
// Adjust siblings to point to each other. If node was tail,
// this also handles new tail's empty `next` assignment.
/** @type {MemizeCacheNode} */ ( node . prev ) . next = node . next ;
if ( node . next ) {
node . next . prev = node . prev ;
}
node . next = head ;
node . prev = null ;
/** @type {MemizeCacheNode} */ ( head ) . prev = node ;
head = node ;
}
// Return immediately
return node . val ;
}
// No cached value found. Continue to insertion phase:
// Create a copy of arguments (avoid leaking deoptimization)
args = new Array ( len ) ;
for ( i = 0 ; i < len ; i ++ ) {
args [ i ] = arguments [ i ] ;
}
node = {
args : args ,
// Generate the result from original function
val : fn . apply ( null , args ) ,
} ;
// Don't need to check whether node is already head, since it would
// have been returned above already if it was
// Shift existing head down list
if ( head ) {
head . prev = node ;
node . next = head ;
} else {
// If no head, follows that there's no tail (at initial or reset)
tail = node ;
}
// Trim tail if we're reached max size and are pending cache insertion
if ( size === /** @type {MemizeOptions} */ ( options ) . maxSize ) {
tail = /** @type {MemizeCacheNode} */ ( tail ) . prev ;
/** @type {MemizeCacheNode} */ ( tail ) . next = null ;
} else {
size ++ ;
}
head = node ;
return node . val ;
}
memoized . clear = function ( ) {
head = null ;
tail = null ;
size = 0 ;
} ;
// Ignore reason: There's not a clear solution to create an intersection of
// the function with additional properties, where the goal is to retain the
// function signature of the incoming argument and add control properties
// on the return value.
// @ts-ignore
return memoized ;
}
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/memoize.js
/ * *
* External dependencies
* /
// re-export due to restrictive esModuleInterop setting
2023-06-27 10:24:19 -04:00
/* harmony default export */ var memoize = ( memize ) ;
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/constants.js
let Status ;
( function ( Status ) {
Status [ "Idle" ] = "IDLE" ;
Status [ "Resolving" ] = "RESOLVING" ;
Status [ "Error" ] = "ERROR" ;
Status [ "Success" ] = "SUCCESS" ;
} ) ( Status || ( Status = { } ) ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/use-query-select.js
/ * *
* WordPress dependencies
* /
/ * *
* Internal dependencies
* /
const META _SELECTORS = [ 'getIsResolving' , 'hasStartedResolution' , 'hasFinishedResolution' , 'isResolving' , 'getCachedResolvers' ] ;
/ * *
* Like useSelect , but the selectors return objects containing
* both the original data AND the resolution info .
*
* @ since 6.1 . 0 Introduced in WordPress core .
* @ private
*
* @ param { Function } mapQuerySelect see useSelect
* @ param { Array } deps see useSelect
*
* @ example
* ` ` ` js
* import { useQuerySelect } from '@wordpress/data' ;
* import { store as coreDataStore } from '@wordpress/core-data' ;
*
* function PageTitleDisplay ( { id } ) {
* const { data : page , isResolving } = useQuerySelect ( ( query ) => {
* return query ( coreDataStore ) . getEntityRecord ( 'postType' , 'page' , id )
* } , [ id ] ) ;
*
* if ( isResolving ) {
* return 'Loading...' ;
* }
*
* return page . title ;
* }
*
* // Rendered in the application:
* // <PageTitleDisplay id={ 10 } />
* ` ` `
*
* In the above example , when ` PageTitleDisplay ` is rendered into an
* application , the page and the resolution details will be retrieved from
* the store state using the ` mapSelect ` callback on ` useQuerySelect ` .
*
* If the id prop changes then any page in the state for that id is
* retrieved . If the id prop doesn ' t change and other props are passed in
* that do change , the title will not change because the dependency is just
* the id .
* @ see useSelect
*
* @ return { QuerySelectResponse } Queried data .
* /
function useQuerySelect ( mapQuerySelect , deps ) {
return ( 0 , external _wp _data _namespaceObject . useSelect ) ( ( select , registry ) => {
const resolve = store => enrichSelectors ( select ( store ) ) ;
return mapQuerySelect ( resolve , registry ) ;
} , deps ) ;
}
/ * *
* Transform simple selectors into ones that return an object with the
* original return value AND the resolution info .
*
* @ param { Object } selectors Selectors to enrich
* @ return { EnrichedSelectors } Enriched selectors
* /
const enrichSelectors = memoize ( selectors => {
const resolvers = { } ;
for ( const selectorName in selectors ) {
if ( META _SELECTORS . includes ( selectorName ) ) {
continue ;
}
Object . defineProperty ( resolvers , selectorName , {
2023-06-27 10:24:19 -04:00
get : ( ) => ( ... args ) => {
2022-09-20 11:43:29 -04:00
const {
getIsResolving ,
hasFinishedResolution
} = selectors ;
const isResolving = ! ! getIsResolving ( selectorName , args ) ;
const hasResolved = ! isResolving && hasFinishedResolution ( selectorName , args ) ;
const data = selectors [ selectorName ] ( ... args ) ;
let status ;
if ( isResolving ) {
status = Status . Resolving ;
} else if ( hasResolved ) {
if ( data ) {
status = Status . Success ;
} else {
status = Status . Error ;
}
} else {
status = Status . Idle ;
}
return {
data ,
status ,
isResolving ,
hasResolved
} ;
}
2021-05-19 11:09:27 -04:00
} ) ;
2022-09-20 11:43:29 -04:00
}
2021-04-15 11:19:43 -04:00
2022-09-20 11:43:29 -04:00
return resolvers ;
} ) ;
2021-04-15 11:19:43 -04:00
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/use-entity-record.js
2021-05-19 11:09:27 -04:00
/ * *
* WordPress dependencies
* /
2021-04-15 11:19:43 -04:00
2022-09-20 11:43:29 -04:00
2021-11-08 09:29:21 -05:00
/ * *
2022-09-20 11:43:29 -04:00
* Internal dependencies
2021-11-08 09:29:21 -05:00
* /
2022-09-20 11:43:29 -04:00
2021-05-19 11:09:27 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* Resolves the specified entity record .
2021-05-19 11:09:27 -04:00
*
2022-09-20 11:43:29 -04:00
* @ since 6.1 . 0 Introduced in WordPress core .
*
2023-06-27 10:24:19 -04:00
* @ param kind Kind of the entity , e . g . ` root ` or a ` postType ` . See rootEntitiesConfig in . . / entities . ts for a list of available kinds .
* @ param name Name of the entity , e . g . ` plugin ` or a ` post ` . See rootEntitiesConfig in . . / entities . ts for a list of available names .
* @ param recordId ID of the requested entity record .
* @ param options Optional hook options .
2022-09-20 11:43:29 -04:00
* @ example
* ` ` ` js
* import { useEntityRecord } from '@wordpress/core-data' ;
*
* function PageTitleDisplay ( { id } ) {
* const { record , isResolving } = useEntityRecord ( 'postType' , 'page' , id ) ;
*
* if ( isResolving ) {
* return 'Loading...' ;
* }
*
* return record . title ;
* }
*
* // Rendered in the application:
* // <PageTitleDisplay id={ 1 } />
* ` ` `
*
* In the above example , when ` PageTitleDisplay ` is rendered into an
* application , the page and the resolution details will be retrieved from
* the store state using ` getEntityRecord() ` , or resolved if missing .
*
* @ example
* ` ` ` js
* import { useDispatch } from '@wordpress/data' ;
* import { useCallback } from '@wordpress/element' ;
* import { _ _ } from '@wordpress/i18n' ;
* import { TextControl } from '@wordpress/components' ;
* import { store as noticeStore } from '@wordpress/notices' ;
* import { useEntityRecord } from '@wordpress/core-data' ;
*
* function PageRenameForm ( { id } ) {
* const page = useEntityRecord ( 'postType' , 'page' , id ) ;
* const { createSuccessNotice , createErrorNotice } =
* useDispatch ( noticeStore ) ;
*
* const setTitle = useCallback ( ( title ) => {
* page . edit ( { title } ) ;
* } , [ page . edit ] ) ;
*
* if ( page . isResolving ) {
* return 'Loading...' ;
* }
*
* async function onRename ( event ) {
* event . preventDefault ( ) ;
* try {
* await page . save ( ) ;
* createSuccessNotice ( _ _ ( 'Page renamed.' ) , {
* type : 'snackbar' ,
* } ) ;
* } catch ( error ) {
* createErrorNotice ( error . message , { type : 'snackbar' } ) ;
* }
* }
*
* return (
* < form onSubmit = { onRename } >
* < TextControl
* label = { _ _ ( 'Name' ) }
* value = { page . editedRecord . title }
* onChange = { setTitle }
* / >
* < button type = "submit" > { _ _ ( 'Save' ) } < / b u t t o n >
* < / f o r m >
* ) ;
* }
*
* // Rendered in the application:
* // <PageRenameForm id={ 1 } />
* ` ` `
*
* In the above example , updating and saving the page title is handled
* via the ` edit() ` and ` save() ` mutation helpers provided by
* ` useEntityRecord() ` ;
*
* @ return Entity record data .
* @ template RecordType
* /
2023-06-27 10:24:19 -04:00
function useEntityRecord ( kind , name , recordId , options = {
enabled : true
} ) {
2022-09-20 11:43:29 -04:00
const {
editEntityRecord ,
saveEditedEntityRecord
} = ( 0 , external _wp _data _namespaceObject . useDispatch ) ( store ) ;
const mutations = ( 0 , external _wp _element _namespaceObject . useMemo ) ( ( ) => ( {
edit : record => editEntityRecord ( kind , name , recordId , record ) ,
2023-06-27 10:24:19 -04:00
save : ( saveOptions = { } ) => saveEditedEntityRecord ( kind , name , recordId , {
throwOnError : true ,
... saveOptions
} )
} ) , [ editEntityRecord , kind , name , recordId , saveEditedEntityRecord ] ) ;
2022-09-20 11:43:29 -04:00
const {
editedRecord ,
hasEdits
} = ( 0 , external _wp _data _namespaceObject . useSelect ) ( select => ( {
editedRecord : select ( store ) . getEditedEntityRecord ( kind , name , recordId ) ,
hasEdits : select ( store ) . hasEditsForEntityRecord ( kind , name , recordId )
} ) , [ kind , name , recordId ] ) ;
const {
data : record ,
... querySelectRest
} = useQuerySelect ( query => {
if ( ! options . enabled ) {
2023-06-27 10:24:19 -04:00
return {
data : null
} ;
2022-09-20 11:43:29 -04:00
}
return query ( store ) . getEntityRecord ( kind , name , recordId ) ;
} , [ kind , name , recordId , options . enabled ] ) ;
return {
record ,
editedRecord ,
hasEdits ,
... querySelectRest ,
... mutations
} ;
}
function _ _experimentalUseEntityRecord ( kind , name , recordId , options ) {
external _wp _deprecated _default ( ) ( ` wp.data.__experimentalUseEntityRecord ` , {
alternative : 'wp.data.useEntityRecord' ,
since : '6.1'
} ) ;
return useEntityRecord ( kind , name , recordId , options ) ;
}
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/use-entity-records.js
/ * *
* WordPress dependencies
2021-05-19 11:09:27 -04:00
* /
2022-09-20 11:43:29 -04:00
2021-05-19 11:09:27 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* Internal dependencies
* /
const use _entity _records _EMPTY _ARRAY = [ ] ;
/ * *
* Resolves the specified entity records .
2021-05-19 11:09:27 -04:00
*
2022-09-20 11:43:29 -04:00
* @ since 6.1 . 0 Introduced in WordPress core .
*
2023-06-27 10:24:19 -04:00
* @ param kind Kind of the entity , e . g . ` root ` or a ` postType ` . See rootEntitiesConfig in . . / entities . ts for a list of available kinds .
* @ param name Name of the entity , e . g . ` plugin ` or a ` post ` . See rootEntitiesConfig in . . / entities . ts for a list of available names .
* @ param queryArgs Optional HTTP query description for how to fetch the data , passed to the requested API endpoint .
* @ param options Optional hook options .
2021-05-19 11:09:27 -04:00
* @ example
* ` ` ` js
2023-06-27 10:24:19 -04:00
* import { useEntityRecords } from '@wordpress/core-data' ;
2021-05-19 11:09:27 -04:00
*
2022-09-20 11:43:29 -04:00
* function PageTitlesList ( ) {
* const { records , isResolving } = useEntityRecords ( 'postType' , 'page' ) ;
2021-05-19 11:09:27 -04:00
*
2022-09-20 11:43:29 -04:00
* if ( isResolving ) {
* return 'Loading...' ;
* }
2021-05-20 08:20:04 -04:00
*
2022-09-20 11:43:29 -04:00
* return (
* < ul >
* { records . map ( ( page ) => (
* < li > { page . title } < / l i >
* ) ) }
* < / u l >
* ) ;
* }
*
* // Rendered in the application:
* // <PageTitlesList />
2022-04-11 08:04:30 -04:00
* ` ` `
2022-09-20 11:43:29 -04:00
*
* In the above example , when ` PageTitlesList ` is rendered into an
* application , the list of records and the resolution details will be retrieved from
* the store state using ` getEntityRecords() ` , or resolved if missing .
*
* @ return Entity records data .
* @ template RecordType
2021-05-19 11:09:27 -04:00
* /
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
function useEntityRecords ( kind , name , queryArgs = { } , options = {
enabled : true
} ) {
2022-09-20 11:43:29 -04:00
// Serialize queryArgs to a string that can be safely used as a React dep.
// We can't just pass queryArgs as one of the deps, because if it is passed
// as an object literal, then it will be a different object on each call even
// if the values remain the same.
const queryAsString = ( 0 , external _wp _url _namespaceObject . addQueryArgs ) ( '' , queryArgs ) ;
const {
data : records ,
... rest
} = useQuerySelect ( query => {
if ( ! options . enabled ) {
return {
// Avoiding returning a new reference on every execution.
data : use _entity _records _EMPTY _ARRAY
} ;
}
2021-01-27 21:04:13 -05:00
2022-09-20 11:43:29 -04:00
return query ( store ) . getEntityRecords ( kind , name , queryArgs ) ;
} , [ kind , name , queryAsString , options . enabled ] ) ;
return {
records ,
... rest
} ;
}
function _ _experimentalUseEntityRecords ( kind , name , queryArgs , options ) {
external _wp _deprecated _default ( ) ( ` wp.data.__experimentalUseEntityRecords ` , {
alternative : 'wp.data.useEntityRecords' ,
since : '6.1'
} ) ;
return useEntityRecords ( kind , name , queryArgs , options ) ;
}
2021-01-27 21:04:13 -05:00
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/use-resource-permissions.js
/ * *
* WordPress dependencies
* /
2019-09-19 11:19:18 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* Internal dependencies
* /
2019-10-15 11:37:08 -04:00
2021-01-27 21:04:13 -05:00
2022-09-20 11:43:29 -04:00
/ * *
* Resolves resource permissions .
*
* @ since 6.1 . 0 Introduced in WordPress core .
*
2023-06-27 10:24:19 -04:00
* @ param resource The resource in question , e . g . media .
* @ param id ID of a specific resource entry , if needed , e . g . 10.
2022-09-20 11:43:29 -04:00
*
* @ example
* ` ` ` js
* import { useResourcePermissions } from '@wordpress/core-data' ;
*
* function PagesList ( ) {
* const { canCreate , isResolving } = useResourcePermissions ( 'pages' ) ;
*
* if ( isResolving ) {
* return 'Loading ...' ;
* }
*
* return (
* < div >
* { canCreate ? ( < button > + Create a new page < / b u t t o n > ) : f a l s e }
* // ...
* < / d i v >
* ) ;
* }
*
* // Rendered in the application:
* // <PagesList />
* ` ` `
*
* @ example
* ` ` ` js
* import { useResourcePermissions } from '@wordpress/core-data' ;
*
* function Page ( { pageId } ) {
* const {
* canCreate ,
* canUpdate ,
* canDelete ,
* isResolving
* } = useResourcePermissions ( 'pages' , pageId ) ;
*
* if ( isResolving ) {
* return 'Loading ...' ;
* }
*
* return (
* < div >
* { canCreate ? ( < button > + Create a new page < / b u t t o n > ) : f a l s e }
* { canUpdate ? ( < button > Edit page < / b u t t o n > ) : f a l s e }
* { canDelete ? ( < button > Delete page < / b u t t o n > ) : f a l s e }
* // ...
* < / d i v >
* ) ;
* }
*
* // Rendered in the application:
* // <Page pageId={ 15 } />
* ` ` `
*
* In the above example , when ` PagesList ` is rendered into an
* application , the appropriate permissions and the resolution details will be retrieved from
* the store state using ` canUser() ` , or resolved if missing .
*
* @ return Entity records data .
* @ template IdType
* /
function useResourcePermissions ( resource , id ) {
return useQuerySelect ( resolve => {
const {
canUser
} = resolve ( store ) ;
const create = canUser ( 'create' , resource ) ;
if ( ! id ) {
const read = canUser ( 'read' , resource ) ;
const isResolving = create . isResolving || read . isResolving ;
const hasResolved = create . hasResolved && read . hasResolved ;
let status = Status . Idle ;
if ( isResolving ) {
status = Status . Resolving ;
} else if ( hasResolved ) {
status = Status . Success ;
}
return {
status ,
isResolving ,
hasResolved ,
canCreate : create . hasResolved && create . data ,
canRead : read . hasResolved && read . data
} ;
}
const read = canUser ( 'read' , resource , id ) ;
const update = canUser ( 'update' , resource , id ) ;
const _delete = canUser ( 'delete' , resource , id ) ;
const isResolving = read . isResolving || create . isResolving || update . isResolving || _delete . isResolving ;
const hasResolved = read . hasResolved && create . hasResolved && update . hasResolved && _delete . hasResolved ;
let status = Status . Idle ;
if ( isResolving ) {
status = Status . Resolving ;
} else if ( hasResolved ) {
status = Status . Success ;
}
return {
status ,
isResolving ,
hasResolved ,
canRead : hasResolved && read . data ,
canCreate : hasResolved && create . data ,
canUpdate : hasResolved && update . data ,
canDelete : hasResolved && _delete . data
} ;
} , [ resource , id ] ) ;
}
function _ _experimentalUseResourcePermissions ( resource , id ) {
external _wp _deprecated _default ( ) ( ` wp.data.__experimentalUseResourcePermissions ` , {
alternative : 'wp.data.useResourcePermissions' ,
since : '6.1'
2022-04-11 08:04:30 -04:00
} ) ;
2022-09-20 11:43:29 -04:00
return useResourcePermissions ( resource , id ) ;
}
2021-01-27 21:04:13 -05:00
2022-09-20 11:43:29 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/hooks/index.js
2021-04-15 11:19:43 -04:00
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/core-data/build-module/index.js
/ * *
* WordPress dependencies
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
/ * *
* Internal dependencies
* /
2021-01-27 21:04:13 -05:00
2018-12-13 23:41:57 -05:00
2019-10-15 11:37:08 -04:00
2020-02-06 16:03:31 -05:00
2019-10-15 11:37:08 -04:00
2023-07-03 05:14:26 -04:00
2022-04-11 08:04:30 -04:00
// The entity selectors/resolvers and actions are shortcuts to their generic equivalents
2022-04-12 11:12:47 -04:00
// (getEntityRecord, getEntityRecords, updateEntityRecord, updateEntityRecords)
// Instead of getEntityRecord, the consumer could use more user-friendly named selector: getPostType, getTaxonomy...
2022-04-11 08:04:30 -04:00
// The "kind" and the "name" of the entity are combined to generate these shortcuts.
2019-10-15 11:37:08 -04:00
2022-04-12 11:12:47 -04:00
const entitySelectors = rootEntitiesConfig . reduce ( ( result , entity ) => {
2022-04-11 08:04:30 -04:00
const {
kind ,
name
} = entity ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
result [ getMethodName ( kind , name ) ] = ( state , key , query ) => getEntityRecord ( state , kind , name , key , query ) ;
2020-01-08 06:57:23 -05:00
2022-04-12 11:12:47 -04:00
result [ getMethodName ( kind , name , 'get' , true ) ] = ( state , query ) => getEntityRecords ( state , kind , name , query ) ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
return result ;
} , { } ) ;
2022-04-12 11:12:47 -04:00
const entityResolvers = rootEntitiesConfig . reduce ( ( result , entity ) => {
2022-04-11 08:04:30 -04:00
const {
kind ,
name
} = entity ;
2020-01-08 06:57:23 -05:00
2022-04-11 08:04:30 -04:00
result [ getMethodName ( kind , name ) ] = ( key , query ) => resolvers _getEntityRecord ( kind , name , key , query ) ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
const pluralMethodName = getMethodName ( kind , name , 'get' , true ) ;
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
result [ pluralMethodName ] = ( ... args ) => resolvers _getEntityRecords ( kind , name , ... args ) ;
2022-04-11 08:04:30 -04:00
2022-04-12 11:12:47 -04:00
result [ pluralMethodName ] . shouldInvalidate = action => resolvers _getEntityRecords . shouldInvalidate ( action , kind , name ) ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
return result ;
} , { } ) ;
2022-04-12 11:12:47 -04:00
const entityActions = rootEntitiesConfig . reduce ( ( result , entity ) => {
2022-04-11 08:04:30 -04:00
const {
kind ,
name
} = entity ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
result [ getMethodName ( kind , name , 'save' ) ] = key => saveEntityRecord ( kind , name , key ) ;
2021-04-15 11:19:43 -04:00
2022-04-11 08:04:30 -04:00
result [ getMethodName ( kind , name , 'delete' ) ] = ( key , query ) => deleteEntityRecord ( kind , name , key , query ) ;
2021-04-15 11:19:43 -04:00
2022-04-11 08:04:30 -04:00
return result ;
} , { } ) ;
2021-04-15 11:19:43 -04:00
2022-04-11 08:04:30 -04:00
const storeConfig = ( ) => ( {
reducer : build _module _reducer ,
actions : { ... build _module _actions _namespaceObject ,
... entityActions ,
... createLocksActions ( )
} ,
selectors : { ... build _module _selectors _namespaceObject ,
... entitySelectors
} ,
resolvers : { ... resolvers _namespaceObject ,
... entityResolvers
2022-04-12 11:12:47 -04:00
}
2022-04-11 08:04:30 -04:00
} ) ;
/ * *
* Store definition for the code data namespace .
*
* @ see https : //github.com/WordPress/gutenberg/blob/HEAD/packages/data/README.md#createReduxStore
* /
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
const store = ( 0 , external _wp _data _namespaceObject . createReduxStore ) ( STORE _NAME , storeConfig ( ) ) ;
2023-07-03 05:14:26 -04:00
unlock ( store ) . registerPrivateSelectors ( {
getNavigationFallbackId : getNavigationFallbackId
} ) ;
( 0 , external _wp _data _namespaceObject . register ) ( store ) ; // Register store after unlocking private selectors to allow resolvers to use them.
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
2022-04-11 08:04:30 -04:00
} ( ) ;
( window . wp = window . wp || { } ) . coreData = _ _webpack _exports _ _ ;
/******/ } ) ( )
;