2022-04-11 08:04:30 -04:00
/******/ ( function ( ) { // webpackBootstrap
/******/ var _ _webpack _modules _ _ = ( {
2020-03-23 19:40:19 -04:00
2023-06-27 10:24:19 -04:00
/***/ 1919 :
/***/ ( function ( module ) {
"use strict" ;
var isMergeableObject = function isMergeableObject ( value ) {
return isNonNullObject ( value )
&& ! isSpecial ( value )
} ;
function isNonNullObject ( value ) {
return ! ! value && typeof value === 'object'
}
function isSpecial ( value ) {
var stringValue = Object . prototype . toString . call ( value ) ;
return stringValue === '[object RegExp]'
|| stringValue === '[object Date]'
|| isReactElement ( value )
}
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
var canUseSymbol = typeof Symbol === 'function' && Symbol . for ;
var REACT _ELEMENT _TYPE = canUseSymbol ? Symbol . for ( 'react.element' ) : 0xeac7 ;
function isReactElement ( value ) {
return value . $$typeof === REACT _ELEMENT _TYPE
}
function emptyTarget ( val ) {
return Array . isArray ( val ) ? [ ] : { }
}
function cloneUnlessOtherwiseSpecified ( value , options ) {
return ( options . clone !== false && options . isMergeableObject ( value ) )
? deepmerge ( emptyTarget ( value ) , value , options )
: value
}
function defaultArrayMerge ( target , source , options ) {
return target . concat ( source ) . map ( function ( element ) {
return cloneUnlessOtherwiseSpecified ( element , options )
} )
}
function getMergeFunction ( key , options ) {
if ( ! options . customMerge ) {
return deepmerge
}
var customMerge = options . customMerge ( key ) ;
return typeof customMerge === 'function' ? customMerge : deepmerge
}
function getEnumerableOwnPropertySymbols ( target ) {
return Object . getOwnPropertySymbols
? Object . getOwnPropertySymbols ( target ) . filter ( function ( symbol ) {
return Object . propertyIsEnumerable . call ( target , symbol )
} )
: [ ]
}
function getKeys ( target ) {
return Object . keys ( target ) . concat ( getEnumerableOwnPropertySymbols ( target ) )
}
function propertyIsOnObject ( object , property ) {
try {
return property in object
} catch ( _ ) {
return false
}
}
// Protects from prototype poisoning and unexpected merging up the prototype chain.
function propertyIsUnsafe ( target , key ) {
return propertyIsOnObject ( target , key ) // Properties are safe to merge if they don't exist in the target yet,
&& ! ( Object . hasOwnProperty . call ( target , key ) // unsafe if they exist up the prototype chain,
&& Object . propertyIsEnumerable . call ( target , key ) ) // and also unsafe if they're nonenumerable.
}
function mergeObject ( target , source , options ) {
var destination = { } ;
if ( options . isMergeableObject ( target ) ) {
getKeys ( target ) . forEach ( function ( key ) {
destination [ key ] = cloneUnlessOtherwiseSpecified ( target [ key ] , options ) ;
} ) ;
}
getKeys ( source ) . forEach ( function ( key ) {
if ( propertyIsUnsafe ( target , key ) ) {
return
}
if ( propertyIsOnObject ( target , key ) && options . isMergeableObject ( source [ key ] ) ) {
destination [ key ] = getMergeFunction ( key , options ) ( target [ key ] , source [ key ] , options ) ;
} else {
destination [ key ] = cloneUnlessOtherwiseSpecified ( source [ key ] , options ) ;
}
} ) ;
return destination
}
function deepmerge ( target , source , options ) {
options = options || { } ;
options . arrayMerge = options . arrayMerge || defaultArrayMerge ;
options . isMergeableObject = options . isMergeableObject || isMergeableObject ;
// cloneUnlessOtherwiseSpecified is added to `options` so that custom arrayMerge()
// implementations can use it. The caller may not replace it.
options . cloneUnlessOtherwiseSpecified = cloneUnlessOtherwiseSpecified ;
var sourceIsArray = Array . isArray ( source ) ;
var targetIsArray = Array . isArray ( target ) ;
var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray ;
if ( ! sourceAndTargetTypesMatch ) {
return cloneUnlessOtherwiseSpecified ( source , options )
} else if ( sourceIsArray ) {
return options . arrayMerge ( target , source , options )
} else {
return mergeObject ( target , source , options )
}
}
deepmerge . all = function deepmergeAll ( array , options ) {
if ( ! Array . isArray ( array ) ) {
throw new Error ( 'first argument should be an array' )
}
return array . reduce ( function ( prev , next ) {
return deepmerge ( prev , next , options )
} , { } )
} ;
var deepmerge _1 = deepmerge ;
module . exports = deepmerge _1 ;
/***/ } ) ,
2022-04-11 08:04:30 -04:00
/***/ 2167 :
/***/ ( function ( module ) {
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
"use strict" ;
2018-12-14 06:02:53 -05:00
2019-09-19 11:19:18 -04: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 ;
} ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
return _typeof ( obj ) ;
}
2019-09-19 11:19:18 -04: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" ) ;
}
}
2019-09-19 11:19:18 -04: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 ) ;
}
}
2019-03-07 04:09:59 -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 ;
}
2019-03-07 04:09:59 -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.
2019-10-15 11:37:08 -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-04-15 11:19:43 -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-04-15 11:19:43 -04:00
2021-05-20 08:20:04 -04:00
var map = Array . isArray ( key ) ? _arrayTreeMap : _objectTreeMap ;
2020-01-08 06:57:23 -05: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 ) ;
2019-10-15 11:37:08 -04:00
2021-05-20 08:20:04 -04:00
if ( map === undefined ) {
return ;
}
2019-10-15 11:37:08 -04:00
2021-05-20 08:20:04 -04:00
var propertyValue = key [ property ] ;
map = map . get ( propertyValue ) ;
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
if ( map === undefined ) {
return ;
}
}
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
var valuePair = map . get ( '_ekm_value' ) ;
2021-05-07 07:48: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.
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
_map . delete ( valuePair [ 0 ] ) ;
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
valuePair [ 0 ] = key ;
map . set ( '_ekm_value' , valuePair ) ;
_map . set ( key , valuePair ) ;
return valuePair ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
/ * *
* Variant of a Map object which enables lookup by equivalent ( deeply equal )
* object and array keys .
* /
2020-10-13 09:10:30 -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 ) ;
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
this . clear ( ) ;
2020-10-13 09:10:30 -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 ] ) ;
2021-05-19 11:09:27 -04:00
} ) ;
2021-05-20 08:20:04 -04:00
iterable = iterablePairs ;
2021-05-19 11:09:27 -04:00
}
2020-10-13 09:10:30 -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 ] ) ;
}
2021-02-02 00:17:13 -05:00
}
}
2021-05-20 08:20:04 -04:00
/ * *
* Accessor property returning the number of elements .
*
* @ return { number } Number of elements .
* /
2021-02-02 00:17:13 -05:00
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
_createClass ( EquivalentKeyMap , [ {
key : "set" ,
2021-02-02 00:17:13 -05: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 ) ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
return this ;
} // Sort keys to ensure stable assignment into tree.
2020-10-13 09:10:30 -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.
2018-12-14 06:02:53 -05:00
2021-05-20 08:20:04 -04:00
var map = Array . isArray ( key ) ? this . _arrayTreeMap : this . _objectTreeMap ;
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
for ( var i = 0 ; i < properties . length ; i ++ ) {
var property = properties [ i ] ;
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
if ( ! map . has ( property ) ) {
map . set ( property , new EquivalentKeyMap ( ) ) ;
}
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
map = map . get ( property ) ;
var propertyValue = key [ property ] ;
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
if ( ! map . has ( propertyValue ) ) {
map . set ( propertyValue , new EquivalentKeyMap ( ) ) ;
}
2021-02-02 00:17:13 -05: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.
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
var previousValuePair = map . get ( '_ekm_value' ) ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( previousValuePair ) {
this . _map . delete ( previousValuePair [ 0 ] ) ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
map . set ( '_ekm_value' , valuePair ) ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
this . _map . set ( key , valuePair ) ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
return this ;
}
/ * *
* 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 .
* /
2019-09-19 11:19:18 -04: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-06-29 07:50:29 -04:00
2021-05-20 08:20:04 -04:00
var valuePair = getValuePair ( this , key ) ;
2020-06-29 07:50:29 -04:00
2021-05-20 08:20:04 -04:00
if ( valuePair ) {
return valuePair [ 1 ] ;
}
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
/ * *
* 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.
2020-06-29 07:50:29 -04:00
2021-05-20 08:20:04 -04:00
return getValuePair ( this , key ) !== undefined ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
/ * *
* 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 .
* /
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
} , {
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.
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
this . set ( key , undefined ) ;
return true ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
/ * *
* 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 ` .
* /
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
} , {
key : "forEach" ,
value : function forEach ( callback ) {
var _this = this ;
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
var thisArg = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : this ;
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
this . _map . forEach ( function ( value , key ) {
// Unwrap value from object-like value pair.
if ( key !== null && _typeof ( key ) === 'object' ) {
value = value [ 1 ] ;
}
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
callback . call ( thisArg , value , key , _this ) ;
} ) ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
/ * *
* Removes all elements .
* /
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
} , {
key : "clear" ,
value : function clear ( ) {
this . _map = new Map ( ) ;
this . _arrayTreeMap = new Map ( ) ;
this . _objectTreeMap = new Map ( ) ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
} , {
key : "size" ,
get : function get ( ) {
return this . _map . size ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
} ] ) ;
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
return EquivalentKeyMap ;
} ( ) ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
module . exports = EquivalentKeyMap ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
/***/ } ) ,
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
/***/ 9125 :
/***/ ( function ( module ) {
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
function combineReducers ( reducers ) {
var keys = Object . keys ( reducers ) ,
getNextState ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
getNextState = ( function ( ) {
var fn , i , key ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
fn = 'return {' ;
for ( i = 0 ; i < keys . length ; i ++ ) {
// Rely on Quoted escaping of JSON.stringify with guarantee that
// each member of Object.keys is a string.
//
// "If Type(value) is String, then return the result of calling the
// abstract operation Quote with argument value. [...] The abstract
// operation Quote(value) wraps a String value in double quotes and
// escapes characters within it."
//
// https://www.ecma-international.org/ecma-262/5.1/#sec-15.12.3
key = JSON . stringify ( keys [ i ] ) ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
fn += key + ':r[' + key + '](s[' + key + '],a),' ;
}
fn += '}' ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
return new Function ( 'r,s,a' , fn ) ;
} ) ( ) ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
return function combinedReducer ( state , action ) {
var nextState , i , key ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
// Assumed changed if initial state.
if ( state === undefined ) {
return getNextState ( reducers , { } , action ) ;
}
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
nextState = getNextState ( reducers , state , action ) ;
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
// Determine whether state has changed.
i = keys . length ;
while ( i -- ) {
key = keys [ i ] ;
if ( state [ key ] !== nextState [ key ] ) {
// Return immediately if a changed value is encountered.
return nextState ;
}
}
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
return state ;
} ;
2021-05-20 08:20:04 -04:00
}
2018-12-16 23:52:00 -05:00
2022-04-11 08:04:30 -04:00
module . exports = combineReducers ;
2018-12-16 23:52:00 -05:00
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
/***/ } )
2021-05-07 07:48:27 -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 _ _ = { } ;
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
! function ( ) {
2021-05-20 08:20:04 -04:00
"use strict" ;
// ESM COMPAT FLAG
_ _webpack _require _ _ . r ( _ _webpack _exports _ _ ) ;
// EXPORTS
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( _ _webpack _exports _ _ , {
"AsyncModeProvider" : function ( ) { return /* reexport */ async _mode _provider _context ; } ,
"RegistryConsumer" : function ( ) { return /* reexport */ RegistryConsumer ; } ,
"RegistryProvider" : function ( ) { return /* reexport */ context ; } ,
2022-09-20 11:43:29 -04:00
"combineReducers" : function ( ) { return /* binding */ build _module _combineReducers ; } ,
2022-04-11 08:04:30 -04:00
"controls" : function ( ) { return /* reexport */ controls ; } ,
"createReduxStore" : function ( ) { return /* reexport */ createReduxStore ; } ,
"createRegistry" : function ( ) { return /* reexport */ createRegistry ; } ,
"createRegistryControl" : function ( ) { return /* reexport */ createRegistryControl ; } ,
"createRegistrySelector" : function ( ) { return /* reexport */ createRegistrySelector ; } ,
2023-06-27 10:24:19 -04:00
"dispatch" : function ( ) { return /* reexport */ dispatch _dispatch ; } ,
2022-04-11 08:04:30 -04:00
"plugins" : function ( ) { return /* reexport */ plugins _namespaceObject ; } ,
"register" : function ( ) { return /* binding */ register ; } ,
"registerGenericStore" : function ( ) { return /* binding */ registerGenericStore ; } ,
"registerStore" : function ( ) { return /* binding */ registerStore ; } ,
"resolveSelect" : function ( ) { return /* binding */ build _module _resolveSelect ; } ,
2023-06-27 10:24:19 -04:00
"select" : function ( ) { return /* reexport */ select _select ; } ,
2022-04-11 08:04:30 -04:00
"subscribe" : function ( ) { return /* binding */ subscribe ; } ,
2022-09-20 11:43:29 -04:00
"suspendSelect" : function ( ) { return /* binding */ suspendSelect ; } ,
2022-04-11 08:04:30 -04:00
"use" : function ( ) { return /* binding */ use ; } ,
"useDispatch" : function ( ) { return /* reexport */ use _dispatch ; } ,
"useRegistry" : function ( ) { return /* reexport */ useRegistry ; } ,
"useSelect" : function ( ) { return /* reexport */ useSelect ; } ,
2022-09-20 11:43:29 -04:00
"useSuspenseSelect" : function ( ) { return /* reexport */ useSuspenseSelect ; } ,
2022-04-11 08:04:30 -04:00
"withDispatch" : function ( ) { return /* reexport */ with _dispatch ; } ,
"withRegistry" : function ( ) { return /* reexport */ with _registry ; } ,
"withSelect" : function ( ) { return /* reexport */ with _select ; }
} ) ;
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/data/build-module/redux-store/metadata/selectors.js
var selectors _namespaceObject = { } ;
_ _webpack _require _ _ . r ( selectors _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( selectors _namespaceObject , {
"getCachedResolvers" : function ( ) { return getCachedResolvers ; } ,
"getIsResolving" : function ( ) { return getIsResolving ; } ,
2022-04-12 11:12:47 -04:00
"getResolutionError" : function ( ) { return getResolutionError ; } ,
"getResolutionState" : function ( ) { return getResolutionState ; } ,
2022-04-11 08:04:30 -04:00
"hasFinishedResolution" : function ( ) { return hasFinishedResolution ; } ,
2022-04-12 11:12:47 -04:00
"hasResolutionFailed" : function ( ) { return hasResolutionFailed ; } ,
2023-06-27 10:24:19 -04:00
"hasResolvingSelectors" : function ( ) { return hasResolvingSelectors ; } ,
2022-04-11 08:04:30 -04:00
"hasStartedResolution" : function ( ) { return hasStartedResolution ; } ,
"isResolving" : function ( ) { return isResolving ; }
} ) ;
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/data/build-module/redux-store/metadata/actions.js
var actions _namespaceObject = { } ;
_ _webpack _require _ _ . r ( actions _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( actions _namespaceObject , {
2022-04-12 11:12:47 -04:00
"failResolution" : function ( ) { return failResolution ; } ,
"failResolutions" : function ( ) { return failResolutions ; } ,
2022-04-11 08:04:30 -04:00
"finishResolution" : function ( ) { return finishResolution ; } ,
"finishResolutions" : function ( ) { return finishResolutions ; } ,
"invalidateResolution" : function ( ) { return invalidateResolution ; } ,
"invalidateResolutionForStore" : function ( ) { return invalidateResolutionForStore ; } ,
"invalidateResolutionForStoreSelector" : function ( ) { return invalidateResolutionForStoreSelector ; } ,
"startResolution" : function ( ) { return startResolution ; } ,
"startResolutions" : function ( ) { return startResolutions ; }
} ) ;
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
// NAMESPACE OBJECT: ./node_modules/@wordpress/data/build-module/plugins/index.js
var plugins _namespaceObject = { } ;
_ _webpack _require _ _ . r ( plugins _namespaceObject ) ;
2022-04-11 08:04:30 -04:00
_ _webpack _require _ _ . d ( plugins _namespaceObject , {
"persistence" : function ( ) { return persistence ; }
} ) ;
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
// EXTERNAL MODULE: ./node_modules/turbo-combine-reducers/index.js
2022-04-11 08:04:30 -04:00
var turbo _combine _reducers = _ _webpack _require _ _ ( 9125 ) ;
2021-05-20 08:20:04 -04:00
var turbo _combine _reducers _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( turbo _combine _reducers ) ;
2022-04-12 11:12:47 -04:00
; // 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 ) ;
2023-02-07 02:04:52 -05:00
; // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
function _typeof ( obj ) {
"@babel/helpers - typeof" ;
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol . iterator ? function ( obj ) {
return typeof obj ;
} : function ( obj ) {
return obj && "function" == typeof Symbol && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
} , _typeof ( obj ) ;
}
; // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPrimitive.js
function _toPrimitive ( input , hint ) {
if ( _typeof ( input ) !== "object" || input === null ) return input ;
var prim = input [ Symbol . toPrimitive ] ;
if ( prim !== undefined ) {
var res = prim . call ( input , hint || "default" ) ;
if ( _typeof ( res ) !== "object" ) return res ;
throw new TypeError ( "@@toPrimitive must return a primitive value." ) ;
}
return ( hint === "string" ? String : Number ) ( input ) ;
}
; // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js
function _toPropertyKey ( arg ) {
var key = _toPrimitive ( arg , "string" ) ;
return _typeof ( key ) === "symbol" ? key : String ( key ) ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
2023-02-07 02:04:52 -05:00
2021-05-20 08:20:04 -04:00
function _defineProperty ( obj , key , value ) {
2023-02-07 02:04:52 -05:00
key = _toPropertyKey ( key ) ;
2021-05-20 08:20:04 -04:00
if ( key in obj ) {
Object . defineProperty ( obj , key , {
value : value ,
enumerable : true ,
configurable : true ,
writable : true
} ) ;
} else {
obj [ key ] = value ;
2021-05-07 07:48:27 -04:00
}
2021-05-20 08:20:04 -04:00
return obj ;
2021-05-07 07:48:27 -04:00
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
function ownKeys ( object , enumerableOnly ) {
var keys = Object . keys ( object ) ;
if ( Object . getOwnPropertySymbols ) {
var symbols = Object . getOwnPropertySymbols ( object ) ;
2021-12-21 02:02:34 -05:00
enumerableOnly && ( symbols = symbols . filter ( function ( sym ) {
return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ;
} ) ) , keys . push . apply ( keys , symbols ) ;
2021-05-19 11:09:27 -04:00
}
2021-05-20 08:20:04 -04:00
return keys ;
2021-05-07 07:48:27 -04:00
}
2021-05-20 08:20:04 -04:00
function _objectSpread2 ( target ) {
for ( var i = 1 ; i < arguments . length ; i ++ ) {
2021-12-21 02:02:34 -05:00
var source = null != arguments [ i ] ? arguments [ i ] : { } ;
i % 2 ? ownKeys ( Object ( source ) , ! 0 ) . forEach ( function ( key ) {
_defineProperty ( target , key , source [ key ] ) ;
} ) : Object . getOwnPropertyDescriptors ? Object . defineProperties ( target , Object . getOwnPropertyDescriptors ( source ) ) : ownKeys ( Object ( source ) ) . forEach ( function ( key ) {
Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ;
} ) ;
2019-09-19 11:19:18 -04:00
}
2021-05-20 08:20:04 -04:00
return target ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/redux/es/redux.js
2018-12-13 23:41:57 -05:00
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Adapted from React : https : //github.com/facebook/react/blob/master/packages/shared/formatProdErrorMessage.js
*
* Do not require this module directly ! Use normal throw error calls . These messages will be replaced with error codes
* during build .
* @ param { number } code
* /
function formatProdErrorMessage ( code ) {
return "Minified Redux error #" + code + "; visit https://redux.js.org/Errors?code=" + code + " for the full message or " + 'use the non-minified dev environment for full errors. ' ;
2019-03-21 08:48:00 -04:00
}
2021-05-20 08:20:04 -04:00
// Inlined version of the `symbol-observable` polyfill
var $$observable = ( function ( ) {
return typeof Symbol === 'function' && Symbol . observable || '@@observable' ;
} ) ( ) ;
/ * *
* These are private action types reserved by Redux .
* For any unknown actions , you must return the current state .
* If the current state is undefined , you must return the initial state .
* Do not reference these action types directly in your code .
2021-02-02 00:17:13 -05:00
* /
2021-05-20 08:20:04 -04:00
var randomString = function randomString ( ) {
return Math . random ( ) . toString ( 36 ) . substring ( 7 ) . split ( '' ) . join ( '.' ) ;
} ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
var ActionTypes = {
INIT : "@@redux/INIT" + randomString ( ) ,
REPLACE : "@@redux/REPLACE" + randomString ( ) ,
PROBE _UNKNOWN _ACTION : function PROBE _UNKNOWN _ACTION ( ) {
return "@@redux/PROBE_UNKNOWN_ACTION" + randomString ( ) ;
}
} ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* @ param { any } obj The object to inspect .
* @ returns { boolean } True if the argument appears to be a plain object .
* /
function isPlainObject ( obj ) {
if ( typeof obj !== 'object' || obj === null ) return false ;
var proto = obj ;
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
while ( Object . getPrototypeOf ( proto ) !== null ) {
proto = Object . getPrototypeOf ( proto ) ;
}
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
return Object . getPrototypeOf ( obj ) === proto ;
}
2019-03-21 08:48:00 -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
// Inlined / shortened version of `kindOf` from https://github.com/jonschlinkert/kind-of
function miniKindOf ( val ) {
if ( val === void 0 ) return 'undefined' ;
if ( val === null ) return 'null' ;
var type = typeof val ;
switch ( type ) {
case 'boolean' :
case 'string' :
case 'number' :
case 'symbol' :
case 'function' :
{
return type ;
}
}
if ( Array . isArray ( val ) ) return 'array' ;
if ( isDate ( val ) ) return 'date' ;
if ( isError ( val ) ) return 'error' ;
var constructorName = ctorName ( val ) ;
switch ( constructorName ) {
case 'Symbol' :
case 'Promise' :
case 'WeakMap' :
case 'WeakSet' :
case 'Map' :
case 'Set' :
return constructorName ;
} // other
return type . slice ( 8 , - 1 ) . toLowerCase ( ) . replace ( /\s/g , '' ) ;
}
function ctorName ( val ) {
return typeof val . constructor === 'function' ? val . constructor . name : null ;
}
function isError ( val ) {
return val instanceof Error || typeof val . message === 'string' && val . constructor && typeof val . constructor . stackTraceLimit === 'number' ;
}
function isDate ( val ) {
if ( val instanceof Date ) return true ;
return typeof val . toDateString === 'function' && typeof val . getDate === 'function' && typeof val . setDate === 'function' ;
}
2021-05-20 08:20:04 -04:00
function kindOf ( val ) {
var typeOfVal = typeof val ;
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
if ( false ) { }
return typeOfVal ;
}
2019-03-21 08:48:00 -04:00
2018-12-13 23:41:57 -05:00
/ * *
2022-04-19 11:11:17 -04:00
* @ deprecated
2021-02-02 00:17:13 -05:00
*
2022-04-19 11:11:17 -04:00
* * * We recommend using the ` configureStore ` method
* of the ` @reduxjs/toolkit ` package * * , which replaces ` createStore ` .
2021-02-02 00:17:13 -05:00
*
2022-04-19 11:11:17 -04:00
* Redux Toolkit is our recommended approach for writing Redux logic today ,
* including store setup , reducers , data fetching , and more .
2021-02-02 00:17:13 -05:00
*
2022-04-19 11:11:17 -04:00
* * * For more details , please read this Redux docs page : * *
* * * https : //redux.js.org/introduction/why-rtk-is-redux-today**
2021-02-02 00:17:13 -05:00
*
2022-04-19 11:11:17 -04:00
* ` configureStore ` from Redux Toolkit is an improved version of ` createStore ` that
* simplifies setup and helps avoid common bugs .
*
* You should not be using the ` redux ` core package by itself today , except for learning purposes .
* The ` createStore ` method from the core ` redux ` package will not be removed , but we encourage
* all users to migrate to using Redux Toolkit for all Redux code .
*
* If you want to use ` createStore ` without this visual deprecation warning , use
* the ` legacy_createStore ` import instead :
*
* ` import { legacy_createStore as createStore} from 'redux' `
2021-02-02 00:17:13 -05:00
*
2018-12-13 23:41:57 -05:00
* /
2021-05-20 08:20:04 -04:00
2022-04-11 08:04:30 -04:00
function createStore ( reducer , preloadedState , enhancer ) {
2021-05-20 08:20:04 -04:00
var _ref2 ;
if ( typeof preloadedState === 'function' && typeof enhancer === 'function' || typeof enhancer === 'function' && typeof arguments [ 3 ] === 'function' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 0 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
if ( typeof preloadedState === 'function' && typeof enhancer === 'undefined' ) {
enhancer = preloadedState ;
preloadedState = undefined ;
}
if ( typeof enhancer !== 'undefined' ) {
if ( typeof enhancer !== 'function' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 1 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2022-04-11 08:04:30 -04:00
return enhancer ( createStore ) ( reducer , preloadedState ) ;
2021-05-20 08:20:04 -04:00
}
if ( typeof reducer !== 'function' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 2 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
var currentReducer = reducer ;
var currentState = preloadedState ;
var currentListeners = [ ] ;
var nextListeners = currentListeners ;
var isDispatching = false ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* This makes a shallow copy of currentListeners so we can use
* nextListeners as a temporary list while dispatching .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* This prevents any bugs around consumers calling
* subscribe / unsubscribe in the middle of a dispatch .
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function ensureCanMutateNextListeners ( ) {
if ( nextListeners === currentListeners ) {
nextListeners = currentListeners . slice ( ) ;
}
}
/ * *
* Reads the state tree managed by the store .
*
* @ returns { any } The current state tree of your application .
* /
2019-09-19 11:19:18 -04:00
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function getState ( ) {
if ( isDispatching ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 3 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
return currentState ;
}
/ * *
* Adds a change listener . It will be called any time an action is dispatched ,
* and some part of the state tree may potentially have changed . You may then
* call ` getState() ` to read the current state tree inside the callback .
*
* You may call ` dispatch() ` from a change listener , with the following
* caveats :
*
* 1. The subscriptions are snapshotted just before every ` dispatch() ` call .
* If you subscribe or unsubscribe while the listeners are being invoked , this
* will not have any effect on the ` dispatch() ` that is currently in progress .
* However , the next ` dispatch() ` call , whether nested or not , will use a more
* recent snapshot of the subscription list .
*
* 2. The listener should not expect to see all state changes , as the state
* might have been updated multiple times during a nested ` dispatch() ` before
* the listener is called . It is , however , guaranteed that all subscribers
* registered before the ` dispatch() ` started will be called with the latest
* state by the time it exits .
*
* @ param { Function } listener A callback to be invoked on every dispatch .
* @ returns { Function } A function to remove this change listener .
* /
2020-10-20 09:36:16 -04:00
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
function subscribe ( listener ) {
if ( typeof listener !== 'function' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 4 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( isDispatching ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 5 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
var isSubscribed = true ;
ensureCanMutateNextListeners ( ) ;
nextListeners . push ( listener ) ;
return function unsubscribe ( ) {
if ( ! isSubscribed ) {
return ;
}
2018-12-16 23:52:00 -05:00
2021-05-20 08:20:04 -04:00
if ( isDispatching ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 6 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2018-12-16 23:52:00 -05:00
2021-05-20 08:20:04 -04:00
isSubscribed = false ;
ensureCanMutateNextListeners ( ) ;
var index = nextListeners . indexOf ( listener ) ;
nextListeners . splice ( index , 1 ) ;
currentListeners = null ;
} ;
}
/ * *
* Dispatches an action . It is the only way to trigger a state change .
*
* The ` reducer ` function , used to create the store , will be called with the
* current state tree and the given ` action ` . Its return value will
* be considered the * * next * * state of the tree , and the change listeners
* will be notified .
*
* The base implementation only supports plain object actions . If you want to
* dispatch a Promise , an Observable , a thunk , or something else , you need to
* wrap your store creating function into the corresponding middleware . For
* example , see the documentation for the ` redux-thunk ` package . Even the
* middleware will eventually dispatch plain object actions using this method .
*
* @ param { Object } action A plain object representing “ what changed ” . It is
* a good idea to keep actions serializable so you can record and replay user
* sessions , or use the time travelling ` redux-devtools ` . An action must have
* a ` type ` property which may not be ` undefined ` . It is a good idea to use
* string constants for action types .
*
* @ returns { Object } For convenience , the same action object you dispatched .
*
* Note that , if you use a custom middleware , it may wrap ` dispatch() ` to
* return something else ( for example , a Promise you can await ) .
* /
2019-09-19 11:19:18 -04:00
2018-12-16 23:52:00 -05:00
2021-05-20 08:20:04 -04:00
function dispatch ( action ) {
if ( ! isPlainObject ( action ) ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 7 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2018-12-16 23:52:00 -05:00
2021-05-20 08:20:04 -04:00
if ( typeof action . type === 'undefined' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 8 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
if ( isDispatching ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 9 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
try {
isDispatching = true ;
currentState = currentReducer ( currentState , action ) ;
} finally {
isDispatching = false ;
}
var listeners = currentListeners = nextListeners ;
for ( var i = 0 ; i < listeners . length ; i ++ ) {
var listener = listeners [ i ] ;
listener ( ) ;
}
return action ;
}
/ * *
* Replaces the reducer currently used by the store to calculate the state .
*
* You might need this if your app implements code splitting and you want to
* load some of the reducers dynamically . You might also need this if you
* implement a hot reloading mechanism for Redux .
*
* @ param { Function } nextReducer The reducer for the store to use instead .
* @ returns { void }
* /
function replaceReducer ( nextReducer ) {
if ( typeof nextReducer !== 'function' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 10 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
currentReducer = nextReducer ; // This action has a similiar effect to ActionTypes.INIT.
// Any reducers that existed in both the new and old rootReducer
// will receive the previous state. This effectively populates
// the new state tree with any relevant data from the old one.
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
dispatch ( {
type : ActionTypes . REPLACE
2021-05-19 11:09:27 -04:00
} ) ;
}
2021-05-20 08:20:04 -04:00
/ * *
* Interoperability point for observable / reactive libraries .
* @ returns { observable } A minimal observable of state changes .
* For more information , see the observable proposal :
* https : //github.com/tc39/proposal-observable
* /
2019-09-19 11:19:18 -04:00
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
function observable ( ) {
var _ref ;
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
var outerSubscribe = subscribe ;
return _ref = {
/ * *
* The minimal observable subscription method .
* @ param { Object } observer Any object that can be used as an observer .
* The observer object should have a ` next ` method .
* @ returns { subscription } An object with an ` unsubscribe ` method that can
* be used to unsubscribe the observable from the store , and prevent further
* emission of values from the observable .
* /
subscribe : function subscribe ( observer ) {
if ( typeof observer !== 'object' || observer === null ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 11 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
function observeState ( ) {
if ( observer . next ) {
observer . next ( getState ( ) ) ;
}
}
observeState ( ) ;
var unsubscribe = outerSubscribe ( observeState ) ;
return {
unsubscribe : unsubscribe
} ;
}
} , _ref [ $$observable ] = function ( ) {
return this ;
} , _ref ;
} // When a store is created, an "INIT" action is dispatched so that every
// reducer returns their initial state. This effectively populates
// the initial state tree.
dispatch ( {
type : ActionTypes . INIT
} ) ;
return _ref2 = {
dispatch : dispatch ,
subscribe : subscribe ,
getState : getState ,
replaceReducer : replaceReducer
} , _ref2 [ $$observable ] = observable , _ref2 ;
}
2022-04-19 11:11:17 -04:00
/ * *
* Creates a Redux store that holds the state tree .
*
* * * We recommend using ` configureStore ` from the
* ` @reduxjs/toolkit ` package * * , which replaces ` createStore ` :
* * * https : //redux.js.org/introduction/why-rtk-is-redux-today**
*
* The only way to change the data in the store is to call ` dispatch() ` on it .
*
* There should only be a single store in your app . To specify how different
* parts of the state tree respond to actions , you may combine several reducers
* into a single reducer function by using ` combineReducers ` .
*
* @ param { Function } reducer A function that returns the next state tree , given
* the current state tree and the action to handle .
*
* @ param { any } [ preloadedState ] The initial state . You may optionally specify it
* to hydrate the state from the server in universal apps , or to restore a
* previously serialized user session .
* If you use ` combineReducers ` to produce the root reducer function , this must be
* an object with the same shape as ` combineReducers ` keys .
*
* @ param { Function } [ enhancer ] The store enhancer . You may optionally specify it
* to enhance the store with third - party capabilities such as middleware ,
* time travel , persistence , etc . The only store enhancer that ships with Redux
* is ` applyMiddleware() ` .
*
* @ returns { Store } A Redux store that lets you read the state , dispatch actions
* and subscribe to changes .
* /
var legacy _createStore = ( /* unused pure expression or super */ null && ( createStore ) ) ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Prints a warning in the console if it exists .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { String } message The warning message .
* @ returns { void }
2018-12-14 06:02:53 -05:00
* /
2021-05-20 08:20:04 -04:00
function warning ( message ) {
/* eslint-disable no-console */
if ( typeof console !== 'undefined' && typeof console . error === 'function' ) {
console . error ( message ) ;
}
/* eslint-enable no-console */
2018-12-14 06:02:53 -05:00
2021-05-20 08:20:04 -04:00
try {
// This error was thrown as a convenience so that if you enable
// "break on all exceptions" in your console,
// it would pause the execution at this line.
throw new Error ( message ) ;
} catch ( e ) { } // eslint-disable-line no-empty
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
}
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
function getUnexpectedStateShapeWarningMessage ( inputState , reducers , action , unexpectedKeyCache ) {
var reducerKeys = Object . keys ( reducers ) ;
var argumentName = action && action . type === ActionTypes . INIT ? 'preloadedState argument passed to createStore' : 'previous state received by the reducer' ;
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
if ( reducerKeys . length === 0 ) {
return 'Store does not have a valid reducer. Make sure the argument passed ' + 'to combineReducers is an object whose values are reducers.' ;
}
if ( ! isPlainObject ( inputState ) ) {
return "The " + argumentName + " has unexpected type of \"" + kindOf ( inputState ) + "\". Expected argument to be an object with the following " + ( "keys: \"" + reducerKeys . join ( '", "' ) + "\"" ) ;
}
var unexpectedKeys = Object . keys ( inputState ) . filter ( function ( key ) {
return ! reducers . hasOwnProperty ( key ) && ! unexpectedKeyCache [ key ] ;
2021-05-19 11:09:27 -04:00
} ) ;
2021-05-20 08:20:04 -04:00
unexpectedKeys . forEach ( function ( key ) {
unexpectedKeyCache [ key ] = true ;
} ) ;
if ( action && action . type === ActionTypes . REPLACE ) return ;
2018-12-14 06:02:53 -05:00
2021-05-20 08:20:04 -04:00
if ( unexpectedKeys . length > 0 ) {
return "Unexpected " + ( unexpectedKeys . length > 1 ? 'keys' : 'key' ) + " " + ( "\"" + unexpectedKeys . join ( '", "' ) + "\" found in " + argumentName + ". " ) + "Expected to find one of the known reducer keys instead: " + ( "\"" + reducerKeys . join ( '", "' ) + "\". Unexpected keys will be ignored." ) ;
}
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function assertReducerShape ( reducers ) {
Object . keys ( reducers ) . forEach ( function ( key ) {
var reducer = reducers [ key ] ;
var initialState = reducer ( undefined , {
type : ActionTypes . INIT
} ) ;
if ( typeof initialState === 'undefined' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 12 ) : 0 ) ;
2021-05-19 11:09:27 -04:00
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( typeof reducer ( undefined , {
type : ActionTypes . PROBE _UNKNOWN _ACTION ( )
} ) === 'undefined' ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 13 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
}
} ) ;
2021-02-02 00:17:13 -05:00
}
/ * *
2021-05-20 08:20:04 -04:00
* Turns an object whose values are different reducer functions , into a single
* reducer function . It will call every child reducer , and gather their results
* into a single state object , whose keys correspond to the keys of the passed
* reducer functions .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Object } reducers An object whose values correspond to different
* reducer functions that need to be combined into one . One handy way to obtain
* it is to use ES6 ` import * as reducers ` syntax . The reducers may never return
* undefined for any action . Instead , they should return their initial state
* if the state passed to them was undefined , and the current state for any
* unrecognized action .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ returns { Function } A reducer function that invokes every reducer inside the
* passed object , and builds a state object with the same shape .
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function combineReducers ( reducers ) {
var reducerKeys = Object . keys ( reducers ) ;
var finalReducers = { } ;
for ( var i = 0 ; i < reducerKeys . length ; i ++ ) {
var key = reducerKeys [ i ] ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( false ) { }
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( typeof reducers [ key ] === 'function' ) {
finalReducers [ key ] = reducers [ key ] ;
}
2021-05-19 11:09:27 -04:00
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
var finalReducerKeys = Object . keys ( finalReducers ) ; // This is used to make sure we don't warn about the same
// keys multiple times.
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
var unexpectedKeyCache ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( false ) { }
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
var shapeAssertionError ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
try {
assertReducerShape ( finalReducers ) ;
} catch ( e ) {
shapeAssertionError = e ;
}
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
return function combination ( state , action ) {
if ( state === void 0 ) {
state = { } ;
}
2020-10-13 09:10:30 -04:00
2021-05-20 08:20:04 -04:00
if ( shapeAssertionError ) {
throw shapeAssertionError ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( false ) { var warningMessage ; }
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
var hasChanged = false ;
var nextState = { } ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
for ( var _i = 0 ; _i < finalReducerKeys . length ; _i ++ ) {
var _key = finalReducerKeys [ _i ] ;
var reducer = finalReducers [ _key ] ;
var previousStateForKey = state [ _key ] ;
var nextStateForKey = reducer ( previousStateForKey , action ) ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( typeof nextStateForKey === 'undefined' ) {
var actionType = action && action . type ;
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 14 ) : 0 ) ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
nextState [ _key ] = nextStateForKey ;
hasChanged = hasChanged || nextStateForKey !== previousStateForKey ;
}
hasChanged = hasChanged || finalReducerKeys . length !== Object . keys ( state ) . length ;
return hasChanged ? nextState : state ;
} ;
}
function bindActionCreator ( actionCreator , dispatch ) {
return function ( ) {
return dispatch ( actionCreator . apply ( this , arguments ) ) ;
} ;
}
2018-12-13 23:41:57 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Turns an object whose values are action creators , into an object with the
* same keys , but with every function wrapped into a ` dispatch ` call so they
* may be invoked directly . This is just a convenience method , as you can call
* ` store.dispatch(MyActionCreators.doSomething()) ` yourself just fine .
2019-09-19 11:19:18 -04:00
*
2021-05-20 08:20:04 -04:00
* For convenience , you can also pass an action creator as the first argument ,
* and get a dispatch wrapped function in return .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Function | Object } actionCreators An object whose values are action
* creator functions . One handy way to obtain it is to use ES6 ` import * as `
* syntax . You may also pass a single function .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Function } dispatch The ` dispatch ` function available on your Redux
* store .
*
* @ returns { Function | Object } The object mimicking the original object , but with
* every action creator wrapped into the ` dispatch ` call . If you passed a
* function as ` actionCreators ` , the return value will also be a single
* function .
2018-12-13 23:41:57 -05:00
* /
2021-05-20 08:20:04 -04:00
function bindActionCreators ( actionCreators , dispatch ) {
if ( typeof actionCreators === 'function' ) {
return bindActionCreator ( actionCreators , dispatch ) ;
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( typeof actionCreators !== 'object' || actionCreators === null ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 16 ) : 0 ) ;
2021-02-02 00:17:13 -05:00
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
var boundActionCreators = { } ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
for ( var key in actionCreators ) {
var actionCreator = actionCreators [ key ] ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( typeof actionCreator === 'function' ) {
boundActionCreators [ key ] = bindActionCreator ( actionCreator , dispatch ) ;
}
}
return boundActionCreators ;
}
2019-09-19 11:19:18 -04:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Composes single - argument functions from right to left . The rightmost
* function can take multiple arguments as it provides the signature for
* the resulting composite function .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { ... Function } funcs The functions to compose .
* @ returns { Function } A function obtained by composing the argument functions
* from right to left . For example , compose ( f , g , h ) is identical to doing
* ( ... args ) => f ( g ( h ( ... args ) ) ) .
2021-02-02 00:17:13 -05:00
* /
2021-05-20 08:20:04 -04:00
function compose ( ) {
for ( var _len = arguments . length , funcs = new Array ( _len ) , _key = 0 ; _key < _len ; _key ++ ) {
funcs [ _key ] = arguments [ _key ] ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( funcs . length === 0 ) {
return function ( arg ) {
return arg ;
} ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( funcs . length === 1 ) {
return funcs [ 0 ] ;
2021-02-02 00:17:13 -05:00
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
return funcs . reduce ( function ( a , b ) {
return function ( ) {
return a ( b . apply ( void 0 , arguments ) ) ;
} ;
} ) ;
2019-09-19 11:19:18 -04:00
}
2021-05-20 08:20:04 -04:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Creates a store enhancer that applies middleware to the dispatch method
* of the Redux store . This is handy for a variety of tasks , such as expressing
* asynchronous actions in a concise manner , or logging every action payload .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* See ` redux-thunk ` package as an example of the Redux middleware .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* Because middleware is potentially asynchronous , this should be the first
* store enhancer in the composition chain .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* Note that each middleware will be given the ` dispatch ` and ` getState ` functions
* as named arguments .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { ... Function } middlewares The middleware chain to be applied .
* @ returns { Function } A store enhancer applying the middleware .
2021-02-02 00:17:13 -05:00
* /
2020-02-06 16:03:31 -05:00
2021-05-20 08:20:04 -04:00
function applyMiddleware ( ) {
for ( var _len = arguments . length , middlewares = new Array ( _len ) , _key = 0 ; _key < _len ; _key ++ ) {
middlewares [ _key ] = arguments [ _key ] ;
}
return function ( createStore ) {
return function ( ) {
var store = createStore . apply ( void 0 , arguments ) ;
var _dispatch = function dispatch ( ) {
2022-04-11 08:04:30 -04:00
throw new Error ( true ? formatProdErrorMessage ( 15 ) : 0 ) ;
2021-05-20 08:20:04 -04:00
} ;
var middlewareAPI = {
getState : store . getState ,
dispatch : function dispatch ( ) {
return _dispatch . apply ( void 0 , arguments ) ;
}
} ;
var chain = middlewares . map ( function ( middleware ) {
return middleware ( middlewareAPI ) ;
} ) ;
_dispatch = compose . apply ( void 0 , chain ) ( store . dispatch ) ;
return _objectSpread2 ( _objectSpread2 ( { } , store ) , { } , {
dispatch : _dispatch
} ) ;
} ;
} ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
// EXTERNAL MODULE: ./node_modules/equivalent-key-map/equivalent-key-map.js
2022-04-11 08:04:30 -04:00
var equivalent _key _map = _ _webpack _require _ _ ( 2167 ) ;
2021-05-20 08:20:04 -04:00
var equivalent _key _map _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( equivalent _key _map ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: external ["wp","reduxRoutine"]
var external _wp _reduxRoutine _namespaceObject = window [ "wp" ] [ "reduxRoutine" ] ;
var external _wp _reduxRoutine _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( external _wp _reduxRoutine _namespaceObject ) ;
2023-02-07 02:04:52 -05:00
; // CONCATENATED MODULE: external ["wp","compose"]
var external _wp _compose _namespaceObject = window [ "wp" ] [ "compose" ] ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/factory.js
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Creates a selector function that takes additional curried argument with the
* registry ` select ` function . While a regular selector has signature
* ` ` ` js
* ( state , ... selectorArgs ) => ( result )
* ` ` `
* that allows to select data from the store ' s ` state ` , a registry selector
* has signature :
* ` ` ` js
* ( select ) => ( state , ... selectorArgs ) => ( result )
* ` ` `
* that supports also selecting from other registered stores .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ example
* ` ` ` js
2022-09-20 11:43:29 -04:00
* import { store as coreStore } from '@wordpress/core-data' ;
* import { store as editorStore } from '@wordpress/editor' ;
*
2021-05-20 08:20:04 -04:00
* const getCurrentPostId = createRegistrySelector ( ( select ) => ( state ) => {
2022-09-20 11:43:29 -04:00
* return select ( editorStore ) . getCurrentPostId ( ) ;
2021-05-20 08:20:04 -04:00
* } ) ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const getPostEdits = createRegistrySelector ( ( select ) => ( state ) => {
* // calling another registry selector just like any other function
* const postType = getCurrentPostType ( state ) ;
* const postId = getCurrentPostId ( state ) ;
2022-09-20 11:43:29 -04:00
* return select ( coreStore ) . getEntityRecordEdits ( 'postType' , postType , postId ) ;
2021-05-20 08:20:04 -04:00
* } ) ;
* ` ` `
*
* Note how the ` getCurrentPostId ` selector can be called just like any other function ,
* ( it works even inside a regular non - registry selector ) and we don ' t need to pass the
* registry as argument . The registry binding happens automatically when registering the selector
* with a store .
*
* @ param { Function } registrySelector Function receiving a registry ` select `
2021-11-08 09:29:21 -05:00
* function and returning a state selector .
2021-05-20 08:20:04 -04:00
*
* @ return { Function } Registry selector that can be registered with a store .
2021-02-02 00:17:13 -05:00
* /
2021-05-20 08:20:04 -04:00
function createRegistrySelector ( registrySelector ) {
2022-04-12 11:12:47 -04:00
// Create a selector function that is bound to the registry referenced by `selector.registry`
2021-05-20 08:20:04 -04:00
// and that has the same API as a regular selector. Binding it in such a way makes it
// possible to call the selector directly from another selector.
2023-06-27 10:24:19 -04:00
const selector = ( ... args ) => registrySelector ( selector . registry . select ) ( ... args ) ;
2021-05-20 08:20:04 -04:00
/ * *
* Flag indicating that the selector is a registry selector that needs the correct registry
2023-06-27 10:24:19 -04:00
* reference to be assigned to ` selector.registry ` to make it work correctly .
2021-05-20 08:20:04 -04:00
* be mapped as a registry selector .
*
* @ type { boolean }
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
selector . isRegistrySelector = true ;
return selector ;
2021-02-02 00:17:13 -05:00
}
/ * *
2021-05-20 08:20:04 -04:00
* Creates a control function that takes additional curried argument with the ` registry ` object .
* While a regular control has signature
* ` ` ` js
* ( action ) => ( iteratorOrPromise )
* ` ` `
* where the control works with the ` action ` that it ' s bound to , a registry control has signature :
* ` ` ` js
* ( registry ) => ( action ) => ( iteratorOrPromise )
* ` ` `
* A registry control is typically used to select data or dispatch an action to a registered
* store .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* When registering a control created with ` createRegistryControl ` with a store , the store
* knows which calling convention to use when executing the control .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Function } registryControl Function receiving a registry object and returning a control .
*
* @ return { Function } Registry control that can be registered with a store .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
function createRegistryControl ( registryControl ) {
registryControl . isRegistryControl = true ;
return registryControl ;
2021-02-02 00:17:13 -05:00
}
2019-09-19 11:19:18 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/controls.js
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Internal dependencies
2021-02-02 00:17:13 -05:00
* /
2021-05-20 08:20:04 -04:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('./types').StoreDescriptor} StoreDescriptor */
2021-11-08 09:29:21 -05:00
2021-05-20 08:20:04 -04:00
const SELECT = '@@data/SELECT' ;
const RESOLVE _SELECT = '@@data/RESOLVE_SELECT' ;
const DISPATCH = '@@data/DISPATCH' ;
2022-09-20 11:43:29 -04:00
function isObject ( object ) {
return object !== null && typeof object === 'object' ;
}
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Dispatches a control action for triggering a synchronous registry select .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* Note : This control synchronously returns the current selector value , triggering the
* resolution , but not waiting for it .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { string | StoreDescriptor } storeNameOrDescriptor Unique namespace identifier for the store
* @ param { string } selectorName The name of the selector .
* @ param { Array } args Arguments for the selector .
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* @ example
* ` ` ` js
* import { controls } from '@wordpress/data' ;
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* // Action generator using `select`.
* export function * myAction ( ) {
* const isEditorSideBarOpened = yield controls . select ( 'core/edit-post' , 'isEditorSideBarOpened' ) ;
* // Do stuff with the result from the `select`.
* }
* ` ` `
*
* @ return { Object } The control descriptor .
2021-05-19 11:09:27 -04:00
* /
2022-09-20 11:43:29 -04:00
2023-06-27 10:24:19 -04:00
function controls _select ( storeNameOrDescriptor , selectorName , ... args ) {
2021-05-19 11:09:27 -04:00
return {
2021-05-20 08:20:04 -04:00
type : SELECT ,
2022-09-20 11:43:29 -04:00
storeKey : isObject ( storeNameOrDescriptor ) ? storeNameOrDescriptor . name : storeNameOrDescriptor ,
2021-05-19 11:09:27 -04:00
selectorName ,
args
} ;
}
/ * *
2021-05-20 08:20:04 -04:00
* Dispatches a control action for triggering and resolving a registry select .
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* Note : when this control action is handled , it automatically considers
* selectors that may have a resolver . In such case , it will return a ` Promise ` that resolves
* after the selector finishes resolving , with the final result value .
2021-05-19 11:09:27 -04:00
*
2022-04-12 11:12:47 -04:00
* @ param { string | StoreDescriptor } storeNameOrDescriptor Unique namespace identifier for the store
* @ param { string } selectorName The name of the selector
* @ param { Array } args Arguments for the selector .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ example
* ` ` ` js
* import { controls } from '@wordpress/data' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* // Action generator using resolveSelect
* export function * myAction ( ) {
* const isSidebarOpened = yield controls . resolveSelect ( 'core/edit-post' , 'isEditorSideBarOpened' ) ;
* // do stuff with the result from the select.
* }
* ` ` `
*
* @ return { Object } The control descriptor .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
2023-06-27 10:24:19 -04:00
function resolveSelect ( storeNameOrDescriptor , selectorName , ... args ) {
2021-02-02 00:17:13 -05:00
return {
2021-05-20 08:20:04 -04:00
type : RESOLVE _SELECT ,
2022-09-20 11:43:29 -04:00
storeKey : isObject ( storeNameOrDescriptor ) ? storeNameOrDescriptor . name : storeNameOrDescriptor ,
2021-05-19 11:09:27 -04:00
selectorName ,
args
2021-02-02 00:17:13 -05:00
} ;
}
/ * *
2021-05-20 08:20:04 -04:00
* Dispatches a control action for triggering a registry dispatch .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { string | StoreDescriptor } storeNameOrDescriptor Unique namespace identifier for the store
* @ param { string } actionName The name of the action to dispatch
* @ param { Array } args Arguments for the dispatch action .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ example
* ` ` ` js
* import { controls } from '@wordpress/data-controls' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* // Action generator using dispatch
* export function * myAction ( ) {
* yield controls . dispatch ( 'core/edit-post' , 'togglePublishSidebar' ) ;
* // do some other things.
* }
* ` ` `
*
* @ return { Object } The control descriptor .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
2023-06-27 10:24:19 -04:00
function dispatch ( storeNameOrDescriptor , actionName , ... args ) {
2019-09-19 11:19:18 -04:00
return {
2021-05-20 08:20:04 -04:00
type : DISPATCH ,
2022-09-20 11:43:29 -04:00
storeKey : isObject ( storeNameOrDescriptor ) ? storeNameOrDescriptor . name : storeNameOrDescriptor ,
2021-05-20 08:20:04 -04:00
actionName ,
args
2019-09-19 11:19:18 -04:00
} ;
}
2022-04-11 08:04:30 -04:00
const controls = {
2021-05-20 08:20:04 -04:00
select : controls _select ,
2022-04-11 08:04:30 -04:00
resolveSelect ,
dispatch
2021-05-20 08:20:04 -04:00
} ;
const builtinControls = {
2023-06-27 10:24:19 -04:00
[ SELECT ] : createRegistryControl ( registry => ( {
storeKey ,
selectorName ,
args
} ) => registry . select ( storeKey ) [ selectorName ] ( ... args ) ) ,
[ RESOLVE _SELECT ] : createRegistryControl ( registry => ( {
storeKey ,
selectorName ,
args
} ) => {
2021-05-20 08:20:04 -04:00
const method = registry . select ( storeKey ) [ selectorName ] . hasResolver ? 'resolveSelect' : 'select' ;
return registry [ method ] ( storeKey ) [ selectorName ] ( ... args ) ;
} ) ,
2023-06-27 10:24:19 -04:00
[ DISPATCH ] : createRegistryControl ( registry => ( {
storeKey ,
actionName ,
args
} ) => registry . dispatch ( storeKey ) [ actionName ] ( ... args ) )
2021-05-20 08:20:04 -04:00
} ;
2018-12-13 23:41:57 -05:00
2023-02-14 10:44:36 -05:00
; // CONCATENATED MODULE: external ["wp","privateApis"]
var external _wp _privateApis _namespaceObject = window [ "wp" ] [ "privateApis" ] ;
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/lock-unlock.js
2023-02-07 02:04:52 -05:00
/ * *
* WordPress dependencies
* /
const {
lock ,
unlock
2023-02-14 10:44:36 -05:00
} = ( 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/data' ) ;
2023-02-07 02:04:52 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/is-promise/index.mjs
function isPromise ( obj ) {
return ! ! obj && ( typeof obj === 'object' || typeof obj === 'function' ) && typeof obj . then === 'function' ;
}
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/promise-middleware.js
2018-12-13 23:41:57 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* External dependencies
2018-12-13 23:41:57 -05:00
* /
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Simplest possible promise redux middleware .
2021-02-02 00:17:13 -05:00
*
2021-11-08 09:29:21 -05:00
* @ type { import ( 'redux' ) . Middleware }
2021-02-02 00:17:13 -05:00
* /
2021-05-20 08:20:04 -04:00
const promiseMiddleware = ( ) => next => action => {
2022-04-11 08:04:30 -04:00
if ( isPromise ( action ) ) {
2021-05-20 08:20:04 -04:00
return action . then ( resolvedAction => {
if ( resolvedAction ) {
return next ( resolvedAction ) ;
}
} ) ;
}
return next ( action ) ;
} ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var promise _middleware = ( promiseMiddleware ) ;
2021-05-19 11:09:27 -04:00
2022-04-12 11:12:47 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/store/index.js
const coreDataStore = {
name : 'core/data' ,
instantiate ( registry ) {
2023-06-27 10:24:19 -04:00
const getCoreDataSelector = selectorName => ( key , ... args ) => {
2022-04-12 11:12:47 -04:00
return registry . select ( key ) [ selectorName ] ( ... args ) ;
} ;
2023-06-27 10:24:19 -04:00
const getCoreDataAction = actionName => ( key , ... args ) => {
2022-04-12 11:12:47 -04:00
return registry . dispatch ( key ) [ actionName ] ( ... args ) ;
} ;
return {
getSelectors ( ) {
return Object . fromEntries ( [ 'getIsResolving' , 'hasStartedResolution' , 'hasFinishedResolution' , 'isResolving' , 'getCachedResolvers' ] . map ( selectorName => [ selectorName , getCoreDataSelector ( selectorName ) ] ) ) ;
} ,
getActions ( ) {
return Object . fromEntries ( [ 'startResolution' , 'finishResolution' , 'invalidateResolution' , 'invalidateResolutionForStore' , 'invalidateResolutionForStoreSelector' ] . map ( actionName => [ actionName , getCoreDataAction ( actionName ) ] ) ) ;
} ,
subscribe ( ) {
// There's no reasons to trigger any listener when we subscribe to this store
// because there's no state stored in this store that need to retrigger selectors
// if a change happens, the corresponding store where the tracking stated live
// would have already triggered a "subscribe" call.
return ( ) => ( ) => { } ;
}
} ;
}
} ;
/* harmony default export */ var store = ( coreDataStore ) ;
2021-11-08 09:29:21 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/resolvers-cache-middleware.js
2021-11-08 09:29:21 -05:00
/ * *
* Internal dependencies
* /
2021-05-20 08:20:04 -04:00
/** @typedef {import('./registry').WPDataRegistry} WPDataRegistry */
2021-05-19 11:09:27 -04:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Creates a middleware handling resolvers cache invalidation .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { WPDataRegistry } registry The registry reference for which to create
* the middleware .
* @ param { string } reducerKey The namespace for which to create the
* middleware .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ return { Function } Middleware function .
2021-02-02 00:17:13 -05:00
* /
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
const createResolversCacheMiddleware = ( registry , reducerKey ) => ( ) => next => action => {
2022-04-12 11:12:47 -04:00
const resolvers = registry . select ( store ) . getCachedResolvers ( reducerKey ) ;
2023-06-27 10:24:19 -04:00
Object . entries ( resolvers ) . forEach ( ( [ selectorName , resolversByArgs ] ) => {
const resolver = registry . stores ? . [ reducerKey ] ? . resolvers ? . [ selectorName ] ;
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
if ( ! resolver || ! resolver . shouldInvalidate ) {
return ;
}
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
resolversByArgs . forEach ( ( value , args ) => {
// resolversByArgs is the map Map([ args ] => boolean) storing the cache resolution status for a given selector.
2022-04-12 11:12:47 -04:00
// If the value is "finished" or "error" it means this resolver has finished its resolution which means we need
// to invalidate it, if it's true it means it's inflight and the invalidation is not necessary.
2023-06-27 10:24:19 -04:00
if ( value ? . status !== 'finished' && value ? . status !== 'error' || ! resolver . shouldInvalidate ( action , ... args ) ) {
2021-05-20 08:20:04 -04:00
return ;
} // Trigger cache invalidation
2020-01-08 06:57:23 -05:00
2022-04-12 11:12:47 -04:00
registry . dispatch ( store ) . invalidateResolution ( reducerKey , selectorName , args ) ;
2021-05-20 08:20:04 -04:00
} ) ;
} ) ;
return next ( action ) ;
} ;
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var resolvers _cache _middleware = ( createResolversCacheMiddleware ) ;
2021-04-15 11:19:43 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/thunk-middleware.js
2021-05-20 08:20:04 -04:00
function createThunkMiddleware ( args ) {
return ( ) => next => action => {
if ( typeof action === 'function' ) {
return action ( args ) ;
}
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
return next ( action ) ;
} ;
}
2021-02-02 00:17:13 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/metadata/utils.js
2022-04-12 11:12:47 -04:00
/ * *
* External dependencies
* /
2021-05-20 08:20:04 -04:00
/ * *
* Higher - order reducer creator which creates a combined reducer object , keyed
* by a property on the action object .
*
2023-06-27 10:24:19 -04:00
* @ param actionProperty Action property by which to key object .
2022-04-12 11:12:47 -04:00
* @ return Higher - order reducer .
2021-05-20 08:20:04 -04:00
* /
2023-06-27 10:24:19 -04:00
const onSubKey = actionProperty => reducer => ( state = { } , action ) => {
2021-05-20 08:20:04 -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-14 06:02:53 -05:00
2021-05-20 08:20:04 -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.
2019-03-07 04:09:59 -05:00
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
const nextKeyState = reducer ( state [ key ] , action ) ;
2019-03-07 04:09:59 -05:00
2021-05-20 08:20:04 -04:00
if ( nextKeyState === state [ key ] ) {
return state ;
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
return { ... state ,
[ key ] : nextKeyState
} ;
} ;
2022-04-12 11:12:47 -04:00
/ * *
* Normalize selector argument array by defaulting ` undefined ` value to an empty array
* and removing trailing ` undefined ` values .
*
2023-06-27 10:24:19 -04:00
* @ param args Selector argument array
2022-04-12 11:12:47 -04:00
* @ return Normalized state key array
* /
function selectorArgsToStateKey ( args ) {
if ( args === undefined || args === null ) {
return [ ] ;
}
const len = args . length ;
let idx = len ;
while ( idx > 0 && args [ idx - 1 ] === undefined ) {
idx -- ;
}
return idx === len ? args : args . slice ( 0 , idx ) ;
}
2019-09-19 11:19:18 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/metadata/reducer.js
2021-05-20 08:20:04 -04:00
/ * *
* External dependencies
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
/ * *
* Internal dependencies
* /
2018-12-13 23:41:57 -05:00
2019-03-07 04:09:59 -05:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Reducer function returning next state for selector resolution of
* subkeys , object form :
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* selectorName - > EquivalentKeyMap < Array , boolean >
2021-02-02 00:17:13 -05:00
* /
2023-06-27 10:24:19 -04:00
const subKeysIsResolved = onSubKey ( 'selectorName' ) ( ( state = new ( equivalent _key _map _default ( ) ) ( ) , action ) => {
2021-05-20 08:20:04 -04:00
switch ( action . type ) {
case 'START_RESOLUTION' :
2022-04-12 11:12:47 -04:00
{
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
nextState . set ( selectorArgsToStateKey ( action . args ) , {
status : 'resolving'
} ) ;
return nextState ;
}
2021-05-20 08:20:04 -04:00
case 'FINISH_RESOLUTION' :
{
2022-04-11 08:04:30 -04:00
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
2022-04-12 11:12:47 -04:00
nextState . set ( selectorArgsToStateKey ( action . args ) , {
status : 'finished'
} ) ;
return nextState ;
}
case 'FAIL_RESOLUTION' :
{
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
nextState . set ( selectorArgsToStateKey ( action . args ) , {
status : 'error' ,
error : action . error
} ) ;
2021-05-20 08:20:04 -04:00
return nextState ;
}
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
case 'START_RESOLUTIONS' :
2022-04-12 11:12:47 -04:00
{
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
for ( const resolutionArgs of action . args ) {
nextState . set ( selectorArgsToStateKey ( resolutionArgs ) , {
status : 'resolving'
} ) ;
}
return nextState ;
}
2021-05-20 08:20:04 -04:00
case 'FINISH_RESOLUTIONS' :
{
2022-04-11 08:04:30 -04:00
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
for ( const resolutionArgs of action . args ) {
2022-04-12 11:12:47 -04:00
nextState . set ( selectorArgsToStateKey ( resolutionArgs ) , {
status : 'finished'
} ) ;
2021-05-20 08:20:04 -04:00
}
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
return nextState ;
}
2022-04-12 11:12:47 -04:00
case 'FAIL_RESOLUTIONS' :
{
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
action . args . forEach ( ( resolutionArgs , idx ) => {
const resolutionState = {
status : 'error' ,
error : undefined
} ;
const error = action . errors [ idx ] ;
if ( error ) {
resolutionState . error = error ;
}
nextState . set ( selectorArgsToStateKey ( resolutionArgs ) , resolutionState ) ;
} ) ;
return nextState ;
}
2021-05-20 08:20:04 -04:00
case 'INVALIDATE_RESOLUTION' :
{
2022-04-11 08:04:30 -04:00
const nextState = new ( equivalent _key _map _default ( ) ) ( state ) ;
2022-04-12 11:12:47 -04:00
nextState . delete ( selectorArgsToStateKey ( action . args ) ) ;
2021-05-20 08:20:04 -04:00
return nextState ;
}
2021-01-27 21:04:13 -05:00
}
2021-05-20 08:20:04 -04:00
return state ;
} ) ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Reducer function returning next state for selector resolution , object form :
*
* selectorName - > EquivalentKeyMap < Array , boolean >
*
2023-06-27 10:24:19 -04:00
* @ param state Current state .
* @ param action Dispatched action .
2021-02-02 00:17:13 -05:00
*
2021-11-08 09:29:21 -05:00
* @ return Next state .
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2023-06-27 10:24:19 -04:00
const isResolved = ( state = { } , action ) => {
2021-05-20 08:20:04 -04:00
switch ( action . type ) {
case 'INVALIDATE_RESOLUTION_FOR_STORE' :
return { } ;
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
case 'INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR' :
2022-09-20 11:43:29 -04:00
{
if ( action . selectorName in state ) {
const {
[ action . selectorName ] : removedSelector ,
... restState
} = state ;
return restState ;
}
return state ;
}
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
case 'START_RESOLUTION' :
case 'FINISH_RESOLUTION' :
2022-04-12 11:12:47 -04:00
case 'FAIL_RESOLUTION' :
2021-05-20 08:20:04 -04:00
case 'START_RESOLUTIONS' :
case 'FINISH_RESOLUTIONS' :
2022-04-12 11:12:47 -04:00
case 'FAIL_RESOLUTIONS' :
2021-05-20 08:20:04 -04:00
case 'INVALIDATE_RESOLUTION' :
return subKeysIsResolved ( state , action ) ;
}
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
return state ;
} ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var metadata _reducer = ( isResolved ) ;
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/metadata/selectors.js
2022-04-12 11:12:47 -04:00
/ * *
* Internal dependencies
* /
2021-11-08 09:29:21 -05:00
/** @typedef {Record<string, import('./reducer').State>} State */
2022-04-12 11:12:47 -04:00
/** @typedef {import('./reducer').StateValue} StateValue */
/** @typedef {import('./reducer').Status} Status */
2021-05-20 08:20:04 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* Returns the raw resolution state value for a given selector name ,
2021-05-20 08:20:04 -04:00
* and arguments set . May be undefined if the selector has never been resolved
* or not resolved for the given set of arguments , otherwise true or false for
* resolution started and completed respectively .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { StateValue | undefined } isResolving value .
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
function getResolutionState ( state , selectorName , args ) {
2023-06-27 10:24:19 -04:00
const map = state [ selectorName ] ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( ! map ) {
2022-04-12 11:12:47 -04:00
return ;
2021-05-20 08:20:04 -04:00
}
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
return map . get ( selectorArgsToStateKey ( args ) ) ;
}
/ * *
* Returns the raw ` isResolving ` value for a given selector name ,
* and arguments set . May be undefined if the selector has never been resolved
* or not resolved for the given set of arguments , otherwise true or false for
* resolution started and completed respectively .
*
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
*
* @ return { boolean | undefined } isResolving value .
* /
function getIsResolving ( state , selectorName , args ) {
const resolutionState = getResolutionState ( state , selectorName , args ) ;
return resolutionState && resolutionState . status === 'resolving' ;
2021-02-02 00:17:13 -05:00
}
/ * *
2021-05-20 08:20:04 -04:00
* Returns true if resolution has already been triggered for a given
* selector name , and arguments set .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
2021-05-20 08:20:04 -04:00
*
* @ return { boolean } Whether resolution has been triggered .
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
function hasStartedResolution ( state , selectorName , args ) {
return getResolutionState ( state , selectorName , args ) !== undefined ;
2021-02-02 00:17:13 -05:00
}
2018-12-17 22:14:52 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Returns true if resolution has completed for a given selector
* name , and arguments set .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
2021-05-20 08:20:04 -04:00
*
* @ return { boolean } Whether resolution has completed .
2018-12-17 22:14:52 -05:00
* /
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
function hasFinishedResolution ( state , selectorName , args ) {
2023-06-27 10:24:19 -04:00
const status = getResolutionState ( state , selectorName , args ) ? . status ;
2022-04-12 11:12:47 -04:00
return status === 'finished' || status === 'error' ;
}
/ * *
* Returns true if resolution has failed for a given selector
* name , and arguments set .
*
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
*
* @ return { boolean } Has resolution failed
* /
function hasResolutionFailed ( state , selectorName , args ) {
2023-06-27 10:24:19 -04:00
return getResolutionState ( state , selectorName , args ) ? . status === 'error' ;
2022-04-12 11:12:47 -04:00
}
/ * *
* Returns the resolution error for a given selector name , and arguments set .
* Note it may be of an Error type , but may also be null , undefined , or anything else
* that can be ` throw ` - n .
*
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
*
* @ return { Error | unknown } Last resolution error
* /
function getResolutionError ( state , selectorName , args ) {
const resolutionState = getResolutionState ( state , selectorName , args ) ;
2023-06-27 10:24:19 -04:00
return resolutionState ? . status === 'error' ? resolutionState . error : null ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Returns true if resolution has been triggered but has not yet completed for
* a given selector name , and arguments set .
*
2022-04-12 11:12:47 -04:00
* @ param { State } state Data state .
* @ param { string } selectorName Selector name .
* @ param { unknown [ ] ? } args Arguments passed to selector .
2021-05-20 08:20:04 -04:00
*
* @ return { boolean } Whether resolution is in progress .
* /
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
function isResolving ( state , selectorName , args ) {
2023-06-27 10:24:19 -04:00
return getResolutionState ( state , selectorName , args ) ? . status === 'resolving' ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Returns the list of the cached resolvers .
*
2021-11-08 09:29:21 -05:00
* @ param { State } state Data state .
2021-05-20 08:20:04 -04:00
*
2021-11-08 09:29:21 -05:00
* @ return { State } Resolvers mapped by args and selectorName .
2021-05-20 08:20:04 -04:00
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
function getCachedResolvers ( state ) {
return state ;
}
2023-06-27 10:24:19 -04:00
/ * *
* Whether the store has any currently resolving selectors .
*
* @ param { State } state Data state .
*
* @ return { boolean } True if one or more selectors are resolving , false otherwise .
* /
function hasResolvingSelectors ( state ) {
return Object . values ( state ) . some ( selectorState =>
/ * *
* This uses the internal ` _map ` property of ` EquivalentKeyMap ` for
* optimization purposes , since the ` EquivalentKeyMap ` implementation
* does not support a ` .values() ` implementation .
*
* @ see https : //github.com/aduth/equivalent-key-map
* /
Array . from ( selectorState . _map . values ( ) ) . some ( resolution => resolution [ 1 ] ? . status === 'resolving' ) ) ;
}
2018-12-13 23:41:57 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/metadata/actions.js
2021-05-20 08:20:04 -04:00
/ * *
* Returns an action object used in signalling that selector resolution has
* started .
*
2021-11-08 09:29:21 -05:00
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] } args Arguments to associate for uniqueness .
2021-05-20 08:20:04 -04:00
*
2021-11-08 09:29:21 -05:00
* @ return { { type : 'START_RESOLUTION' , selectorName : string , args : unknown [ ] } } Action object .
2021-05-20 08:20:04 -04:00
* /
function startResolution ( selectorName , args ) {
return {
type : 'START_RESOLUTION' ,
selectorName ,
args
} ;
}
/ * *
* Returns an action object used in signalling that selector resolution has
* completed .
*
2021-11-08 09:29:21 -05:00
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] } args Arguments to associate for uniqueness .
2021-05-20 08:20:04 -04:00
*
2021-11-08 09:29:21 -05:00
* @ return { { type : 'FINISH_RESOLUTION' , selectorName : string , args : unknown [ ] } } Action object .
2021-05-20 08:20:04 -04:00
* /
2019-03-07 04:09:59 -05:00
2021-05-20 08:20:04 -04:00
function finishResolution ( selectorName , args ) {
return {
type : 'FINISH_RESOLUTION' ,
selectorName ,
args
} ;
}
2022-04-12 11:12:47 -04:00
/ * *
* Returns an action object used in signalling that selector resolution has
* failed .
*
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] } args Arguments to associate for uniqueness .
* @ param { Error | unknown } error The error that caused the failure .
*
* @ return { { type : 'FAIL_RESOLUTION' , selectorName : string , args : unknown [ ] , error : Error | unknown } } Action object .
* /
function failResolution ( selectorName , args , error ) {
return {
type : 'FAIL_RESOLUTION' ,
selectorName ,
args ,
error
} ;
}
2021-05-20 08:20:04 -04:00
/ * *
* Returns an action object used in signalling that a batch of selector resolutions has
* started .
*
2022-04-12 11:12:47 -04:00
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] [ ] } args Array of arguments to associate for uniqueness , each item
* is associated to a resolution .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { { type : 'START_RESOLUTIONS' , selectorName : string , args : unknown [ ] [ ] } } Action object .
2021-05-20 08:20:04 -04:00
* /
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
function startResolutions ( selectorName , args ) {
return {
type : 'START_RESOLUTIONS' ,
selectorName ,
args
2021-02-02 00:17:13 -05:00
} ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Returns an action object used in signalling that a batch of selector resolutions has
* completed .
*
2022-04-12 11:12:47 -04:00
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] [ ] } args Array of arguments to associate for uniqueness , each item
* is associated to a resolution .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ return { { type : 'FINISH_RESOLUTIONS' , selectorName : string , args : unknown [ ] [ ] } } Action object .
2021-05-20 08:20:04 -04:00
* /
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
function finishResolutions ( selectorName , args ) {
2021-02-02 00:17:13 -05:00
return {
2021-05-20 08:20:04 -04:00
type : 'FINISH_RESOLUTIONS' ,
selectorName ,
args
2021-02-02 00:17:13 -05:00
} ;
}
2022-04-12 11:12:47 -04:00
/ * *
* Returns an action object used in signalling that a batch of selector resolutions has
* completed and at least one of them has failed .
*
* @ param { string } selectorName Name of selector for which resolver triggered .
* @ param { unknown [ ] } args Array of arguments to associate for uniqueness , each item
* is associated to a resolution .
* @ param { ( Error | unknown ) [ ] } errors Array of errors to associate for uniqueness , each item
* is associated to a resolution .
* @ return { { type : 'FAIL_RESOLUTIONS' , selectorName : string , args : unknown [ ] , errors : Array < Error | unknown > } } Action object .
* /
function failResolutions ( selectorName , args , errors ) {
return {
type : 'FAIL_RESOLUTIONS' ,
selectorName ,
args ,
errors
} ;
}
2018-12-17 22:14:52 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Returns an action object used in signalling that we should invalidate the resolution cache .
2018-12-17 22:14:52 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { string } selectorName Name of selector for which resolver should be invalidated .
* @ param { unknown [ ] } args Arguments to associate for uniqueness .
2021-05-20 08:20:04 -04:00
*
2021-11-08 09:29:21 -05:00
* @ return { { type : 'INVALIDATE_RESOLUTION' , selectorName : string , args : any [ ] } } Action object .
2018-12-17 22:14:52 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function invalidateResolution ( selectorName , args ) {
return {
type : 'INVALIDATE_RESOLUTION' ,
selectorName ,
args
2021-02-02 00:17:13 -05:00
} ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Returns an action object used in signalling that the resolution
* should be invalidated .
*
2021-11-08 09:29:21 -05:00
* @ return { { type : 'INVALIDATE_RESOLUTION_FOR_STORE' } } Action object .
2021-05-20 08:20:04 -04:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function invalidateResolutionForStore ( ) {
return {
type : 'INVALIDATE_RESOLUTION_FOR_STORE'
2021-02-02 00:17:13 -05:00
} ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Returns an action object used in signalling that the resolution cache for a
* given selectorName should be invalidated .
*
* @ param { string } selectorName Name of selector for which all resolvers should
* be invalidated .
*
2021-11-08 09:29:21 -05:00
* @ return { { type : 'INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR' , selectorName : string } } Action object .
2021-05-20 08:20:04 -04:00
* /
2019-03-07 04:09:59 -05:00
2021-05-20 08:20:04 -04:00
function invalidateResolutionForStoreSelector ( selectorName ) {
2019-09-19 11:19:18 -04:00
return {
2021-05-20 08:20:04 -04:00
type : 'INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR' ,
selectorName
} ;
}
2021-05-19 11:09:27 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/redux-store/index.js
2021-05-20 08:20:04 -04:00
/ * *
* External dependencies
* /
2021-05-19 11:09:27 -04:00
2018-12-13 23:41:57 -05:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* WordPress dependencies
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
2023-02-07 02:04:52 -05:00
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2018-12-13 23:41:57 -05:00
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
2023-02-07 02:04:52 -05:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('../types').DataRegistry} DataRegistry */
2021-05-20 08:20:04 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { import ( '../types' ) . StoreDescriptor < C > } StoreDescriptor
2023-06-27 10:24:19 -04:00
* @ template { import ( '../types' ) . AnyConfig } C
2022-09-20 11:43:29 -04:00
* /
2021-05-20 08:20:04 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { import ( '../types' ) . ReduxStoreConfig < State , Actions , Selectors > } ReduxStoreConfig
2023-06-27 10:24:19 -04:00
* @ template State
* @ template { Record < string , import ( '../../types' ) . ActionCreator > } Actions
* @ template Selectors
2022-09-20 11:43:29 -04:00
* /
2018-12-13 23:41:57 -05:00
2021-11-08 09:29:21 -05:00
const trimUndefinedValues = array => {
const result = [ ... array ] ;
for ( let i = result . length - 1 ; i >= 0 ; i -- ) {
if ( result [ i ] === undefined ) {
result . splice ( i , 1 ) ;
}
}
return result ;
2023-06-27 10:24:19 -04:00
} ;
/ * *
* Creates a new object with the same keys , but with ` callback() ` called as
* a transformer function on each of the values .
*
* @ param { Object } obj The object to transform .
* @ param { Function } callback The function to transform each object value .
* @ return { Array } Transformed object .
* /
const mapValues = ( obj , callback ) => Object . fromEntries ( Object . entries ( obj !== null && obj !== void 0 ? obj : { } ) . map ( ( [ key , value ] ) => [ key , callback ( value , key ) ] ) ) ; // Convert Map objects to plain objects
2023-02-07 02:04:52 -05:00
const mapToObject = ( key , state ) => {
if ( state instanceof Map ) {
return Object . fromEntries ( state ) ;
}
return state ;
2021-11-08 09:29:21 -05:00
} ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Create a cache to track whether resolvers started running or not .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ return { Object } Resolvers Cache .
2021-02-02 00:17:13 -05:00
* /
2018-12-13 23:41:57 -05:00
2021-11-08 09:29:21 -05:00
2021-05-20 08:20:04 -04:00
function createResolversCache ( ) {
const cache = { } ;
return {
isRunning ( selectorName , args ) {
2021-11-08 09:29:21 -05:00
return cache [ selectorName ] && cache [ selectorName ] . get ( trimUndefinedValues ( args ) ) ;
2021-05-20 08:20:04 -04:00
} ,
clear ( selectorName , args ) {
if ( cache [ selectorName ] ) {
2021-11-08 09:29:21 -05:00
cache [ selectorName ] . delete ( trimUndefinedValues ( args ) ) ;
2021-05-20 08:20:04 -04:00
}
} ,
markAsRunning ( selectorName , args ) {
if ( ! cache [ selectorName ] ) {
2022-04-11 08:04:30 -04:00
cache [ selectorName ] = new ( equivalent _key _map _default ( ) ) ( ) ;
2021-05-20 08:20:04 -04:00
}
2021-11-08 09:29:21 -05:00
cache [ selectorName ] . set ( trimUndefinedValues ( args ) , true ) ;
2021-05-20 08:20:04 -04:00
}
} ;
}
2023-06-27 10:24:19 -04:00
function createBindingCache ( bind ) {
const cache = new WeakMap ( ) ;
return {
2023-07-03 05:14:26 -04:00
get ( item , itemName ) {
2023-06-27 10:24:19 -04:00
let boundItem = cache . get ( item ) ;
if ( ! boundItem ) {
2023-07-03 05:14:26 -04:00
boundItem = bind ( item , itemName ) ;
2023-06-27 10:24:19 -04:00
cache . set ( item , boundItem ) ;
}
return boundItem ;
}
} ;
}
2021-02-02 00:17:13 -05:00
/ * *
2022-04-12 11:12:47 -04:00
* Creates a data store descriptor for the provided Redux store configuration containing
2021-05-20 08:20:04 -04:00
* properties describing reducer , actions , selectors , controls and resolvers .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ example
* ` ` ` js
* import { createReduxStore } from '@wordpress/data' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const store = createReduxStore ( 'demo' , {
* reducer : ( state = 'OK' ) => state ,
* selectors : {
* getValue : ( state ) => state ,
* } ,
* } ) ;
* ` ` `
*
2023-06-27 10:24:19 -04:00
* @ template State
* @ template { Record < string , import ( '../../types' ) . ActionCreator > } Actions
* @ template Selectors
2022-09-20 11:43:29 -04:00
* @ param { string } key Unique namespace identifier .
* @ param { ReduxStoreConfig < State , Actions , Selectors > } options Registered store options , with properties
* describing reducer , actions , selectors ,
* and resolvers .
2021-05-20 08:20:04 -04:00
*
2022-09-20 11:43:29 -04:00
* @ return { StoreDescriptor < ReduxStoreConfig < State , Actions , Selectors >> } Store Object .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
function createReduxStore ( key , options ) {
2023-02-07 02:04:52 -05:00
const privateActions = { } ;
const privateSelectors = { } ;
const privateRegistrationFunctions = {
privateActions ,
registerPrivateActions : actions => {
Object . assign ( privateActions , actions ) ;
} ,
privateSelectors ,
registerPrivateSelectors : selectors => {
Object . assign ( privateSelectors , selectors ) ;
}
} ;
const storeDescriptor = {
2021-05-20 08:20:04 -04:00
name : key ,
instantiate : registry => {
const reducer = options . reducer ;
const thunkArgs = {
registry ,
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
get dispatch ( ) {
2023-06-27 10:24:19 -04:00
return thunkActions ;
2021-05-20 08:20:04 -04:00
} ,
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
get select ( ) {
2023-06-27 10:24:19 -04:00
return thunkSelectors ;
2021-05-20 08:20:04 -04:00
} ,
2020-03-23 19:40:19 -04:00
2021-05-20 08:20:04 -04:00
get resolveSelect ( ) {
return getResolveSelectors ( ) ;
}
2020-03-23 19:40:19 -04:00
2021-05-20 08:20:04 -04:00
} ;
2023-02-07 02:04:52 -05:00
const store = instantiateReduxStore ( key , options , registry , thunkArgs ) ; // Expose the private registration functions on the store
// so they can be copied to a sub registry in registry.js.
lock ( store , privateRegistrationFunctions ) ;
2021-05-20 08:20:04 -04:00
const resolversCache = createResolversCache ( ) ;
2023-06-27 10:24:19 -04:00
function bindAction ( action ) {
return ( ... args ) => Promise . resolve ( store . dispatch ( action ( ... args ) ) ) ;
}
const actions = { ... mapValues ( actions _namespaceObject , bindAction ) ,
... mapValues ( options . actions , bindAction )
} ;
const boundPrivateActions = createBindingCache ( bindAction ) ;
const allActions = new Proxy ( ( ) => { } , {
2023-02-07 02:04:52 -05:00
get : ( target , prop ) => {
2023-06-27 10:24:19 -04:00
const privateAction = privateActions [ prop ] ;
2023-07-03 05:14:26 -04:00
return privateAction ? boundPrivateActions . get ( privateAction , prop ) : actions [ prop ] ;
2023-02-07 02:04:52 -05:00
}
2023-06-27 10:24:19 -04:00
} ) ;
const thunkActions = new Proxy ( allActions , {
apply : ( target , thisArg , [ action ] ) => store . dispatch ( action )
} ) ;
lock ( actions , allActions ) ;
2023-07-03 05:14:26 -04:00
const resolvers = options . resolvers ? mapResolvers ( options . resolvers ) : { } ;
2021-11-15 07:50:17 -05:00
2023-07-03 05:14:26 -04:00
function bindSelector ( selector , selectorName ) {
2023-06-27 10:24:19 -04:00
if ( selector . isRegistrySelector ) {
selector . registry = registry ;
}
2021-05-20 08:20:04 -04:00
2023-06-27 10:24:19 -04:00
const boundSelector = ( ... args ) => {
const state = store . _ _unstableOriginalGetState ( ) ;
2021-11-15 07:50:17 -05:00
2023-06-27 10:24:19 -04:00
return selector ( state . root , ... args ) ;
} ;
2023-02-07 02:04:52 -05:00
2023-07-03 05:14:26 -04:00
const resolver = resolvers [ selectorName ] ;
if ( ! resolver ) {
boundSelector . hasResolver = false ;
return boundSelector ;
}
return mapSelectorWithResolver ( boundSelector , selectorName , resolver , store , resolversCache ) ;
2023-06-27 10:24:19 -04:00
}
function bindMetadataSelector ( selector ) {
const boundSelector = ( ... args ) => {
const state = store . _ _unstableOriginalGetState ( ) ;
return selector ( state . metadata , ... args ) ;
} ;
boundSelector . hasResolver = false ;
return boundSelector ;
}
2023-07-03 05:14:26 -04:00
const selectors = { ... mapValues ( selectors _namespaceObject , bindMetadataSelector ) ,
2023-06-27 10:24:19 -04:00
... mapValues ( options . selectors , bindSelector )
} ;
const boundPrivateSelectors = createBindingCache ( bindSelector ) ; // Pre-bind the private selectors that have been registered by the time of
// instantiation, so that registry selectors are bound to the registry.
2023-07-03 05:14:26 -04:00
for ( const [ selectorName , selector ] of Object . entries ( privateSelectors ) ) {
boundPrivateSelectors . get ( selector , selectorName ) ;
2023-06-27 10:24:19 -04:00
}
const allSelectors = new Proxy ( ( ) => { } , {
get : ( target , prop ) => {
const privateSelector = privateSelectors [ prop ] ;
2023-07-03 05:14:26 -04:00
return privateSelector ? boundPrivateSelectors . get ( privateSelector , prop ) : selectors [ prop ] ;
2023-06-27 10:24:19 -04:00
}
} ) ;
const thunkSelectors = new Proxy ( allSelectors , {
apply : ( target , thisArg , [ selector ] ) => selector ( store . _ _unstableOriginalGetState ( ) )
} ) ;
lock ( selectors , allSelectors ) ;
2021-05-20 08:20:04 -04:00
const resolveSelectors = mapResolveSelectors ( selectors , store ) ;
2022-09-20 11:43:29 -04:00
const suspendSelectors = mapSuspendSelectors ( selectors , store ) ;
2021-05-20 08:20:04 -04:00
const getSelectors = ( ) => selectors ;
const getActions = ( ) => actions ;
2022-09-20 11:43:29 -04:00
const getResolveSelectors = ( ) => resolveSelectors ;
const getSuspendSelectors = ( ) => suspendSelectors ; // We have some modules monkey-patching the store object
2021-05-20 08:20:04 -04:00
// It's wrong to do so but until we refactor all of our effects to controls
// We need to keep the same "store" instance here.
2020-03-23 19:40:19 -04:00
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
store . _ _unstableOriginalGetState = store . getState ;
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
store . getState = ( ) => store . _ _unstableOriginalGetState ( ) . root ; // Customize subscribe behavior to call listeners only on effective change,
// not on every dispatch.
2020-01-22 17:06:21 -05:00
2021-05-20 08:20:04 -04:00
const subscribe = store && ( listener => {
let lastState = store . _ _unstableOriginalGetState ( ) ;
return store . subscribe ( ( ) => {
const state = store . _ _unstableOriginalGetState ( ) ;
const hasChanged = state !== lastState ;
lastState = state ;
if ( hasChanged ) {
listener ( ) ;
}
} ) ;
} ) ; // This can be simplified to just { subscribe, getSelectors, getActions }
// Once we remove the use function.
return {
reducer ,
store ,
actions ,
selectors ,
resolvers ,
getSelectors ,
getResolveSelectors ,
2022-09-20 11:43:29 -04:00
getSuspendSelectors ,
2021-05-20 08:20:04 -04:00
getActions ,
subscribe
} ;
2021-02-02 00:17:13 -05:00
}
2023-02-07 02:04:52 -05:00
} ; // Expose the private registration functions on the store
// descriptor. That's a natural choice since that's where the
// public actions and selectors are stored .
lock ( storeDescriptor , privateRegistrationFunctions ) ;
return storeDescriptor ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Creates a redux store for a namespace .
*
2022-04-12 11:12:47 -04:00
* @ param { string } key Unique namespace identifier .
* @ param { Object } options Registered store options , with properties
* describing reducer , actions , selectors ,
* and resolvers .
* @ param { DataRegistry } registry Registry reference .
* @ param { Object } thunkArgs Argument object for the thunk middleware .
2021-05-20 08:20:04 -04:00
* @ return { Object } Newly created redux store .
* /
2020-03-23 19:40:19 -04:00
2021-05-20 08:20:04 -04:00
function instantiateReduxStore ( key , options , registry , thunkArgs ) {
const controls = { ... options . controls ,
... builtinControls
} ;
2023-06-27 10:24:19 -04:00
const normalizedControls = mapValues ( controls , control => control . isRegistryControl ? control ( registry ) : control ) ;
2022-04-12 11:12:47 -04:00
const middlewares = [ resolvers _cache _middleware ( registry , key ) , promise _middleware , external _wp _reduxRoutine _default ( ) ( normalizedControls ) , createThunkMiddleware ( thunkArgs ) ] ;
2021-05-20 08:20:04 -04:00
const enhancers = [ applyMiddleware ( ... middlewares ) ] ;
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
if ( typeof window !== 'undefined' && window . _ _REDUX _DEVTOOLS _EXTENSION _ _ ) {
enhancers . push ( window . _ _REDUX _DEVTOOLS _EXTENSION _ _ ( {
name : key ,
2023-02-07 02:04:52 -05:00
instanceId : key ,
serialize : {
replacer : mapToObject
}
2021-05-20 08:20:04 -04:00
} ) ) ;
2021-02-02 00:17:13 -05:00
}
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
const {
reducer ,
initialState
} = options ;
const enhancedReducer = turbo _combine _reducers _default ( ) ( {
metadata : metadata _reducer ,
root : reducer
} ) ;
2022-04-11 08:04:30 -04:00
return createStore ( enhancedReducer , {
2021-05-20 08:20:04 -04:00
root : initialState
2023-02-07 02:04:52 -05:00
} , ( 0 , external _wp _compose _namespaceObject . compose ) ( enhancers ) ) ;
2021-05-20 08:20:04 -04:00
}
/ * *
* Maps selectors to functions that return a resolution promise for them
*
* @ param { Object } selectors Selectors to map .
* @ param { Object } store The redux store the selectors select from .
2021-11-08 09:29:21 -05:00
*
* @ return { Object } Selectors mapped to their resolution functions .
2021-05-20 08:20:04 -04:00
* /
2018-12-13 23:41:57 -05:00
2021-05-20 08:20:04 -04:00
function mapResolveSelectors ( selectors , store ) {
2022-09-20 11:43:29 -04:00
const {
getIsResolving ,
hasStartedResolution ,
hasFinishedResolution ,
hasResolutionFailed ,
isResolving ,
getCachedResolvers ,
getResolutionState ,
getResolutionError ,
... storeSelectors
} = selectors ;
2023-06-27 10:24:19 -04:00
return mapValues ( storeSelectors , ( selector , selectorName ) => {
2022-04-12 11:12:47 -04:00
// If the selector doesn't have a resolver, just convert the return value
// (including exceptions) to a Promise, no additional extra behavior is needed.
if ( ! selector . hasResolver ) {
2023-06-27 10:24:19 -04:00
return async ( ... args ) => selector . apply ( null , args ) ;
2021-11-15 07:50:17 -05:00
}
2018-12-13 23:41:57 -05:00
2023-06-27 10:24:19 -04:00
return ( ... args ) => {
2022-04-12 11:12:47 -04:00
return new Promise ( ( resolve , reject ) => {
const hasFinished = ( ) => selectors . hasFinishedResolution ( selectorName , args ) ;
const finalize = result => {
const hasFailed = selectors . hasResolutionFailed ( selectorName , args ) ;
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
if ( hasFailed ) {
const error = selectors . getResolutionError ( selectorName , args ) ;
reject ( error ) ;
} else {
resolve ( result ) ;
}
} ;
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
const getResult = ( ) => selector . apply ( null , args ) ; // Trigger the selector (to trigger the resolver)
2018-12-13 23:41:57 -05:00
2022-04-12 11:12:47 -04:00
const result = getResult ( ) ;
2021-11-15 07:50:17 -05:00
if ( hasFinished ( ) ) {
2022-04-12 11:12:47 -04:00
return finalize ( result ) ;
2021-11-15 07:50:17 -05:00
}
2022-04-12 11:12:47 -04:00
const unsubscribe = store . subscribe ( ( ) => {
if ( hasFinished ( ) ) {
unsubscribe ( ) ;
finalize ( getResult ( ) ) ;
}
} ) ;
2021-11-15 07:50:17 -05:00
} ) ;
2022-04-12 11:12:47 -04:00
} ;
2021-11-15 07:50:17 -05:00
} ) ;
2021-05-20 08:20:04 -04:00
}
2022-09-20 11:43:29 -04:00
/ * *
* Maps selectors to functions that throw a suspense promise if not yet resolved .
*
* @ param { Object } selectors Selectors to map .
* @ param { Object } store The redux store the selectors select from .
*
* @ return { Object } Selectors mapped to their suspense functions .
* /
function mapSuspendSelectors ( selectors , store ) {
2023-06-27 10:24:19 -04:00
return mapValues ( selectors , ( selector , selectorName ) => {
2022-09-20 11:43:29 -04:00
// Selector without a resolver doesn't have any extra suspense behavior.
if ( ! selector . hasResolver ) {
return selector ;
}
2023-06-27 10:24:19 -04:00
return ( ... args ) => {
2022-09-20 11:43:29 -04:00
const result = selector . apply ( null , args ) ;
if ( selectors . hasFinishedResolution ( selectorName , args ) ) {
if ( selectors . hasResolutionFailed ( selectorName , args ) ) {
throw selectors . getResolutionError ( selectorName , args ) ;
}
return result ;
}
throw new Promise ( resolve => {
const unsubscribe = store . subscribe ( ( ) => {
if ( selectors . hasFinishedResolution ( selectorName , args ) ) {
resolve ( ) ;
unsubscribe ( ) ;
}
} ) ;
} ) ;
} ;
} ) ;
}
2021-05-20 08:20:04 -04:00
/ * *
2023-06-27 10:24:19 -04:00
* Convert resolvers to a normalized form , an object with ` fulfill ` method and
* optional methods like ` isFulfilled ` .
2021-05-20 08:20:04 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param { Object } resolvers Resolver to convert
2021-05-20 08:20:04 -04:00
* /
2018-12-13 23:41:57 -05:00
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
function mapResolvers ( resolvers ) {
return mapValues ( resolvers , resolver => {
2021-05-20 08:20:04 -04:00
if ( resolver . fulfill ) {
return resolver ;
}
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
return { ... resolver ,
2022-04-12 11:12:47 -04:00
// Copy the enumerable properties of the resolver function.
fulfill : resolver // Add the fulfill method.
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
} ;
} ) ;
2023-06-27 10:24:19 -04:00
}
/ * *
2023-07-03 05:14:26 -04:00
* Returns a selector with a matched resolver .
2023-06-27 10:24:19 -04:00
* Resolvers are side effects invoked once per argument set of a given selector call ,
* used in ensuring that the data needs for the selector are satisfied .
*
2023-07-03 05:14:26 -04:00
* @ param { Object } selector The selector function to be bound .
* @ param { string } selectorName The selector name .
* @ param { Object } resolver Resolver to call .
2023-06-27 10:24:19 -04:00
* @ param { Object } store The redux store to which the resolvers should be mapped .
* @ param { Object } resolversCache Resolvers Cache .
* /
2019-09-19 11:19:18 -04:00
2023-07-03 05:14:26 -04:00
function mapSelectorWithResolver ( selector , selectorName , resolver , store , resolversCache ) {
function fulfillSelector ( args ) {
2023-06-27 10:24:19 -04:00
const state = store . getState ( ) ;
if ( resolversCache . isRunning ( selectorName , args ) || typeof resolver . isFulfilled === 'function' && resolver . isFulfilled ( state , ... args ) ) {
return ;
2021-02-02 00:17:13 -05:00
}
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
const {
metadata
} = store . _ _unstableOriginalGetState ( ) ;
2021-11-15 07:50:17 -05:00
2023-06-27 10:24:19 -04:00
if ( hasStartedResolution ( metadata , selectorName , args ) ) {
return ;
}
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
resolversCache . markAsRunning ( selectorName , args ) ;
setTimeout ( async ( ) => {
resolversCache . clear ( selectorName , args ) ;
store . dispatch ( startResolution ( selectorName , args ) ) ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
try {
const action = resolver . fulfill ( ... args ) ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
if ( action ) {
await store . dispatch ( action ) ;
2021-05-20 08:20:04 -04:00
}
2020-02-06 16:03:31 -05:00
2023-06-27 10:24:19 -04:00
store . dispatch ( finishResolution ( selectorName , args ) ) ;
} catch ( error ) {
store . dispatch ( failResolution ( selectorName , args , error ) ) ;
2021-05-20 08:20:04 -04:00
}
2023-06-27 10:24:19 -04:00
} , 0 ) ;
}
2023-07-03 05:14:26 -04:00
const selectorResolver = ( ... args ) => {
fulfillSelector ( args ) ;
return selector ( ... args ) ;
} ;
2019-09-19 11:19:18 -04:00
2023-07-03 05:14:26 -04:00
selectorResolver . hasResolver = true ;
return selectorResolver ;
2021-05-20 08:20:04 -04:00
}
2019-09-19 11:19:18 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/utils/emitter.js
2021-11-08 09:29:21 -05:00
/ * *
* Create an event emitter .
*
2022-04-12 11:12:47 -04:00
* @ return { import ( "../types" ) . DataEmitter } Emitter .
2021-11-08 09:29:21 -05:00
* /
function createEmitter ( ) {
let isPaused = false ;
let isPending = false ;
const listeners = new Set ( ) ;
const notifyListeners = ( ) => // We use Array.from to clone the listeners Set
// This ensures that we don't run a listener
// that was added as a response to another listener.
Array . from ( listeners ) . forEach ( listener => listener ( ) ) ;
return {
get isPaused ( ) {
return isPaused ;
} ,
subscribe ( listener ) {
listeners . add ( listener ) ;
return ( ) => listeners . delete ( listener ) ;
} ,
pause ( ) {
isPaused = true ;
} ,
resume ( ) {
isPaused = false ;
if ( isPending ) {
isPending = false ;
notifyListeners ( ) ;
}
} ,
emit ( ) {
if ( isPaused ) {
isPending = true ;
return ;
}
notifyListeners ( ) ;
}
} ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/registry.js
2019-09-19 11:19:18 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* WordPress dependencies
2019-09-19 11:19:18 -04:00
* /
2022-04-12 11:12:47 -04:00
/ * *
* Internal dependencies
* /
2021-02-02 00:17:13 -05:00
2021-11-08 09:29:21 -05:00
2023-02-07 02:04:52 -05:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('./types').StoreDescriptor} StoreDescriptor */
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* @ typedef { Object } WPDataRegistry An isolated orchestrator of store registrations .
2019-09-19 11:19:18 -04:00
*
2021-05-20 08:20:04 -04:00
* @ property { Function } registerGenericStore Given a namespace key and settings
* object , registers a new generic
* store .
* @ property { Function } registerStore Given a namespace key and settings
* object , registers a new namespace
* store .
* @ property { Function } subscribe Given a function callback , invokes
* the callback on any change to state
* within any registered store .
* @ property { Function } select Given a namespace key , returns an
* object of the store ' s registered
* selectors .
* @ property { Function } dispatch Given a namespace key , returns an
* object of the store ' s registered
* action dispatchers .
2021-02-02 00:17:13 -05:00
* /
/ * *
2021-05-20 08:20:04 -04:00
* @ typedef { Object } WPDataPlugin An object of registry function overrides .
2019-09-19 11:19:18 -04:00
*
2021-05-20 08:20:04 -04:00
* @ property { Function } registerStore registers store .
2021-02-02 00:17:13 -05:00
* /
2023-02-07 02:04:52 -05:00
function getStoreName ( storeNameOrDescriptor ) {
return typeof storeNameOrDescriptor === 'string' ? storeNameOrDescriptor : storeNameOrDescriptor . name ;
2022-09-20 11:43:29 -04:00
}
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Creates a new store registry , given an optional object of initial store
* configurations .
2019-09-19 11:19:18 -04:00
*
2021-05-20 08:20:04 -04:00
* @ param { Object } storeConfigs Initial store configurations .
* @ param { Object ? } parent Parent registry .
2019-09-19 11:19:18 -04:00
*
2021-05-20 08:20:04 -04:00
* @ return { WPDataRegistry } Data registry .
2019-09-19 11:19:18 -04:00
* /
2022-09-20 11:43:29 -04:00
2023-06-27 10:24:19 -04:00
function createRegistry ( storeConfigs = { } , parent = null ) {
2021-05-20 08:20:04 -04:00
const stores = { } ;
2021-11-08 09:29:21 -05:00
const emitter = createEmitter ( ) ;
2023-02-07 02:04:52 -05:00
let listeningStores = null ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Global listener called for each store ' s update .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
function globalListener ( ) {
2021-11-08 09:29:21 -05:00
emitter . emit ( ) ;
2021-02-02 00:17:13 -05:00
}
/ * *
2023-02-07 02:04:52 -05:00
* Subscribe to changes to any data , either in all stores in registry , or
* in one specific store .
2021-02-02 00:17:13 -05:00
*
2023-02-07 02:04:52 -05:00
* @ param { Function } listener Listener function .
* @ param { string | StoreDescriptor ? } storeNameOrDescriptor Optional store name .
2021-05-20 08:20:04 -04:00
*
2021-11-08 09:29:21 -05:00
* @ return { Function } Unsubscribe function .
2021-02-02 00:17:13 -05:00
* /
2023-02-07 02:04:52 -05:00
const subscribe = ( listener , storeNameOrDescriptor ) => {
// subscribe to all stores
if ( ! storeNameOrDescriptor ) {
return emitter . subscribe ( listener ) ;
} // subscribe to one store
const storeName = getStoreName ( storeNameOrDescriptor ) ;
const store = stores [ storeName ] ;
if ( store ) {
return store . subscribe ( listener ) ;
} // Trying to access a store that hasn't been registered,
// this is a pattern rarely used but seen in some places.
// We fallback to global `subscribe` here for backward-compatibility for now.
// See https://github.com/WordPress/gutenberg/pull/27466 for more info.
if ( ! parent ) {
return emitter . subscribe ( listener ) ;
}
return parent . subscribe ( listener , storeNameOrDescriptor ) ;
2021-02-02 00:17:13 -05:00
} ;
/ * *
2021-05-20 08:20:04 -04:00
* Calls a selector given the current state and extra arguments .
2021-02-02 00:17:13 -05:00
*
2022-04-12 11:12:47 -04:00
* @ param { string | StoreDescriptor } storeNameOrDescriptor Unique namespace identifier for the store
* or the store descriptor .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ return { * } The selector ' s returned value .
2021-02-02 00:17:13 -05:00
* /
2019-09-19 11:19:18 -04:00
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
function select ( storeNameOrDescriptor ) {
2023-02-07 02:04:52 -05:00
const storeName = getStoreName ( storeNameOrDescriptor ) ;
2023-06-27 10:24:19 -04:00
listeningStores ? . add ( storeName ) ;
2021-05-20 08:20:04 -04:00
const store = stores [ storeName ] ;
if ( store ) {
return store . getSelectors ( ) ;
}
2023-06-27 10:24:19 -04:00
return parent ? . select ( storeName ) ;
2021-02-02 00:17:13 -05:00
}
2022-04-12 11:12:47 -04:00
function _ _unstableMarkListeningStores ( callback , ref ) {
2023-02-07 02:04:52 -05:00
listeningStores = new Set ( ) ;
2022-09-20 11:43:29 -04:00
try {
return callback . call ( this ) ;
} finally {
ref . current = Array . from ( listeningStores ) ;
2023-02-07 02:04:52 -05:00
listeningStores = null ;
2022-09-20 11:43:29 -04:00
}
2021-05-20 08:20:04 -04:00
}
/ * *
2022-09-20 11:43:29 -04:00
* Given a store descriptor , returns an object containing the store ' s selectors pre - bound to
* state so that you only need to supply additional arguments , and modified so that they return
* promises that resolve to their eventual values , after any resolvers have ran .
2021-05-20 08:20:04 -04:00
*
2022-09-20 11:43:29 -04:00
* @ param { StoreDescriptor | string } storeNameOrDescriptor The store descriptor . The legacy calling
* convention of passing the store name is
* also supported .
2021-05-20 08:20:04 -04:00
*
* @ return { Object } Each key of the object matches the name of a selector .
* /
2021-02-02 00:17:13 -05:00
2022-04-12 11:12:47 -04:00
function resolveSelect ( storeNameOrDescriptor ) {
2023-02-07 02:04:52 -05:00
const storeName = getStoreName ( storeNameOrDescriptor ) ;
2023-06-27 10:24:19 -04:00
listeningStores ? . add ( storeName ) ;
2021-05-20 08:20:04 -04:00
const store = stores [ storeName ] ;
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
if ( store ) {
return store . getResolveSelectors ( ) ;
2021-02-02 00:17:13 -05:00
}
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
return parent && parent . resolveSelect ( storeName ) ;
}
2022-09-20 11:43:29 -04:00
/ * *
* Given a store descriptor , returns an object containing the store ' s selectors pre - bound to
* state so that you only need to supply additional arguments , and modified so that they throw
* promises in case the selector is not resolved yet .
*
* @ param { StoreDescriptor | string } storeNameOrDescriptor The store descriptor . The legacy calling
* convention of passing the store name is
* also supported .
*
* @ return { Object } Object containing the store ' s suspense - wrapped selectors .
* /
function suspendSelect ( storeNameOrDescriptor ) {
2023-02-07 02:04:52 -05:00
const storeName = getStoreName ( storeNameOrDescriptor ) ;
2023-06-27 10:24:19 -04:00
listeningStores ? . add ( storeName ) ;
2022-09-20 11:43:29 -04:00
const store = stores [ storeName ] ;
if ( store ) {
return store . getSuspendSelectors ( ) ;
}
return parent && parent . suspendSelect ( storeName ) ;
}
2021-05-20 08:20:04 -04:00
/ * *
* Returns the available actions for a part of the state .
*
2022-04-12 11:12:47 -04:00
* @ param { string | StoreDescriptor } storeNameOrDescriptor Unique namespace identifier for the store
* or the store descriptor .
2021-05-20 08:20:04 -04:00
*
* @ return { * } The action ' s returned value .
* /
2019-09-19 11:19:18 -04:00
2022-04-12 11:12:47 -04:00
function dispatch ( storeNameOrDescriptor ) {
2023-02-07 02:04:52 -05:00
const storeName = getStoreName ( storeNameOrDescriptor ) ;
2021-05-20 08:20:04 -04:00
const store = stores [ storeName ] ;
2021-02-07 22:37:09 -05:00
2021-05-20 08:20:04 -04:00
if ( store ) {
return store . getActions ( ) ;
}
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
return parent && parent . dispatch ( storeName ) ;
} //
// Deprecated
// TODO: Remove this after `use()` is removed.
2021-02-07 22:37:09 -05:00
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
function withPlugins ( attributes ) {
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( attributes ) . map ( ( [ key , attribute ] ) => {
2021-05-20 08:20:04 -04:00
if ( typeof attribute !== 'function' ) {
2023-06-27 10:24:19 -04:00
return [ key , attribute ] ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
2023-06-27 10:24:19 -04:00
return [ key , function ( ) {
2021-05-20 08:20:04 -04:00
return registry [ key ] . apply ( null , arguments ) ;
2023-06-27 10:24:19 -04:00
} ] ;
} ) ) ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* Registers a store instance .
2021-05-20 08:20:04 -04:00
*
2023-06-27 10:24:19 -04:00
* @ param { string } name Store registry name .
* @ param { Function } createStore Function that creates a store object ( getSelectors , getActions , subscribe ) .
2021-05-20 08:20:04 -04:00
* /
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
function registerStoreInstance ( name , createStore ) {
if ( stores [ name ] ) {
// eslint-disable-next-line no-console
console . error ( 'Store "' + name + '" is already registered.' ) ;
return stores [ name ] ;
}
const store = createStore ( ) ;
2022-04-12 11:12:47 -04:00
if ( typeof store . getSelectors !== 'function' ) {
throw new TypeError ( 'store.getSelectors must be a function' ) ;
2021-05-20 08:20:04 -04:00
}
2019-09-19 11:19:18 -04:00
2022-04-12 11:12:47 -04:00
if ( typeof store . getActions !== 'function' ) {
throw new TypeError ( 'store.getActions must be a function' ) ;
2021-05-20 08:20:04 -04:00
}
2019-09-19 11:19:18 -04:00
2022-04-12 11:12:47 -04:00
if ( typeof store . subscribe !== 'function' ) {
throw new TypeError ( 'store.subscribe must be a function' ) ;
} // The emitter is used to keep track of active listeners when the registry
2021-11-08 09:29:21 -05:00
// get paused, that way, when resumed we should be able to call all these
// pending listeners.
2022-04-12 11:12:47 -04:00
store . emitter = createEmitter ( ) ;
const currentSubscribe = store . subscribe ;
2021-11-08 09:29:21 -05:00
2022-04-12 11:12:47 -04:00
store . subscribe = listener => {
const unsubscribeFromEmitter = store . emitter . subscribe ( listener ) ;
const unsubscribeFromStore = currentSubscribe ( ( ) => {
if ( store . emitter . isPaused ) {
store . emitter . emit ( ) ;
2021-11-08 09:29:21 -05:00
return ;
}
listener ( ) ;
} ) ;
return ( ) => {
2023-06-27 10:24:19 -04:00
unsubscribeFromStore ? . ( ) ;
unsubscribeFromEmitter ? . ( ) ;
2021-11-08 09:29:21 -05:00
} ;
} ;
2021-05-20 08:20:04 -04:00
2022-04-12 11:12:47 -04:00
stores [ name ] = store ;
2023-02-07 02:04:52 -05:00
store . subscribe ( globalListener ) ; // Copy private actions and selectors from the parent store.
if ( parent ) {
try {
unlock ( store . store ) . registerPrivateActions ( unlock ( parent ) . privateActionsOf ( name ) ) ;
unlock ( store . store ) . registerPrivateSelectors ( unlock ( parent ) . privateSelectorsOf ( name ) ) ;
} catch ( e ) { // unlock() throws if store.store was not locked.
// The error indicates there's nothing to do here so let's
// ignore it.
}
}
2023-06-27 10:24:19 -04:00
return store ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* Registers a new store given a store descriptor .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ param { StoreDescriptor } store Store descriptor .
2021-05-20 08:20:04 -04:00
* /
2019-09-19 11:19:18 -04:00
2021-05-20 08:20:04 -04:00
function register ( store ) {
2023-06-27 10:24:19 -04:00
registerStoreInstance ( store . name , ( ) => store . instantiate ( registry ) ) ;
2022-04-12 11:12:47 -04:00
}
function registerGenericStore ( name , store ) {
external _wp _deprecated _default ( ) ( 'wp.data.registerGenericStore' , {
since : '5.9' ,
alternative : 'wp.data.register( storeDescriptor )'
} ) ;
2023-06-27 10:24:19 -04:00
registerStoreInstance ( name , ( ) => store ) ;
2022-04-12 11:12:47 -04:00
}
/ * *
* Registers a standard ` @wordpress/data ` store .
*
* @ param { string } storeName Unique namespace identifier .
* @ param { Object } options Store description ( reducer , actions , selectors , resolvers ) .
*
* @ return { Object } Registered store object .
* /
function registerStore ( storeName , options ) {
if ( ! options . reducer ) {
throw new TypeError ( 'Must specify store reducer' ) ;
}
2023-06-27 10:24:19 -04:00
const store = registerStoreInstance ( storeName , ( ) => createReduxStore ( storeName , options ) . instantiate ( registry ) ) ;
2022-04-12 11:12:47 -04:00
return store . store ;
2021-02-02 00:17:13 -05:00
}
2019-03-21 08:48:00 -04:00
2021-11-08 09:29:21 -05:00
function batch ( callback ) {
2023-07-07 03:21:17 -04:00
// If we're already batching, just call the callback.
if ( emitter . isPaused ) {
callback ( ) ;
return ;
}
2021-11-08 09:29:21 -05:00
emitter . pause ( ) ;
2022-09-20 11:43:29 -04:00
Object . values ( stores ) . forEach ( store => store . emitter . pause ( ) ) ;
2021-11-08 09:29:21 -05:00
callback ( ) ;
emitter . resume ( ) ;
2022-09-20 11:43:29 -04:00
Object . values ( stores ) . forEach ( store => store . emitter . resume ( ) ) ;
2021-11-08 09:29:21 -05:00
}
2021-05-20 08:20:04 -04:00
let registry = {
2021-11-08 09:29:21 -05:00
batch ,
2021-05-20 08:20:04 -04:00
stores ,
namespaces : stores ,
// TODO: Deprecate/remove this.
subscribe ,
select ,
resolveSelect ,
2022-09-20 11:43:29 -04:00
suspendSelect ,
2021-05-20 08:20:04 -04:00
dispatch ,
use ,
register ,
2022-04-12 11:12:47 -04:00
registerGenericStore ,
registerStore ,
2023-02-07 02:04:52 -05:00
_ _unstableMarkListeningStores
2021-05-20 08:20:04 -04:00
} ; //
// TODO:
// This function will be deprecated as soon as it is no longer internally referenced.
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
function use ( plugin , options ) {
2022-04-12 11:12:47 -04:00
if ( ! plugin ) {
return ;
}
2021-05-20 08:20:04 -04:00
registry = { ... registry ,
... plugin ( registry , options )
} ;
return registry ;
}
2019-03-21 08:48:00 -04:00
2022-04-12 11:12:47 -04:00
registry . register ( store ) ;
for ( const [ name , config ] of Object . entries ( storeConfigs ) ) {
registry . register ( createReduxStore ( name , config ) ) ;
}
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
if ( parent ) {
parent . subscribe ( globalListener ) ;
}
2020-06-26 09:33:47 -04:00
2023-02-07 02:04:52 -05:00
const registryWithPlugins = withPlugins ( registry ) ;
lock ( registryWithPlugins , {
privateActionsOf : name => {
try {
return unlock ( stores [ name ] . store ) . privateActions ;
} catch ( e ) {
// unlock() throws an error the store was not locked – this means
// there no private actions are available
return { } ;
}
} ,
privateSelectorsOf : name => {
try {
return unlock ( stores [ name ] . store ) . privateSelectors ;
} catch ( e ) {
return { } ;
}
}
} ) ;
return registryWithPlugins ;
2021-05-20 08:20:04 -04:00
}
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/default-registry.js
2020-06-26 09:33:47 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* Internal dependencies
2020-06-26 09:33:47 -04:00
* /
2021-05-20 08:20:04 -04:00
/* harmony default export */ var default _registry = ( createRegistry ( ) ) ;
2019-09-19 11:19:18 -04:00
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/is-plain-object/dist/is-plain-object.mjs
2022-09-20 11:43:29 -04:00
/ * !
* is - plain - object < https : //github.com/jonschlinkert/is-plain-object>
*
* Copyright ( c ) 2014 - 2017 , Jon Schlinkert .
* Released under the MIT License .
* /
function is _plain _object _isObject ( o ) {
return Object . prototype . toString . call ( o ) === '[object Object]' ;
}
function is _plain _object _isPlainObject ( o ) {
var ctor , prot ;
if ( is _plain _object _isObject ( o ) === false ) return false ;
// If has modified constructor
ctor = o . constructor ;
if ( ctor === undefined ) return true ;
// If has modified prototype
prot = ctor . prototype ;
if ( is _plain _object _isObject ( prot ) === false ) return false ;
// If constructor does not have an Object-specific method
if ( prot . hasOwnProperty ( 'isPrototypeOf' ) === false ) {
return false ;
}
// Most likely a plain Object
return true ;
}
2023-06-27 10:24:19 -04:00
// EXTERNAL MODULE: ./node_modules/deepmerge/dist/cjs.js
var cjs = _ _webpack _require _ _ ( 1919 ) ;
var cjs _default = /*#__PURE__*/ _ _webpack _require _ _ . n ( cjs ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/plugins/persistence/storage/object.js
2021-05-20 08:20:04 -04:00
let objectStorage ;
const storage = {
getItem ( key ) {
if ( ! objectStorage || ! objectStorage [ key ] ) {
return null ;
}
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
return objectStorage [ key ] ;
} ,
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
setItem ( key , value ) {
if ( ! objectStorage ) {
storage . clear ( ) ;
}
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
objectStorage [ key ] = String ( value ) ;
} ,
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
clear ( ) {
objectStorage = Object . create ( null ) ;
}
} ;
/* harmony default export */ var object = ( storage ) ;
2019-03-21 08:48:00 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/plugins/persistence/storage/default.js
2019-09-19 11:19:18 -04:00
/ * *
2021-02-02 00:17:13 -05:00
* Internal dependencies
2019-09-19 11:19:18 -04:00
* /
2019-03-21 08:48:00 -04:00
2021-05-20 08:20:04 -04:00
let default _storage ;
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
try {
// Private Browsing in Safari 10 and earlier will throw an error when
// attempting to set into localStorage. The test here is intentional in
// causing a thrown error as condition for using fallback object storage.
default _storage = window . localStorage ;
default _storage . setItem ( '__wpDataTestLocalStorage' , '' ) ;
default _storage . removeItem ( '__wpDataTestLocalStorage' ) ;
} catch ( error ) {
default _storage = object ;
2021-02-02 00:17:13 -05:00
}
2021-05-20 08:20:04 -04:00
/* harmony default export */ var storage _default = ( default _storage ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/plugins/persistence/index.js
2019-09-19 11:19:18 -04:00
/ * *
2021-02-02 00:17:13 -05:00
* External dependencies
2019-09-19 11:19:18 -04:00
* /
2022-09-20 11:43:29 -04:00
2019-09-19 11:19:18 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* Internal dependencies
2019-09-19 11:19:18 -04:00
* /
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
/** @typedef {import('../../registry').WPDataRegistry} WPDataRegistry */
2021-02-02 00:17:13 -05:00
2021-05-20 08:20:04 -04:00
/** @typedef {import('../../registry').WPDataPlugin} WPDataPlugin */
2021-02-02 00:17:13 -05:00
2019-09-19 11:19:18 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* @ typedef { Object } WPDataPersistencePluginOptions Persistence plugin options .
*
* @ property { Storage } storage Persistent storage implementation . This must
* at least implement ` getItem ` and ` setItem ` of
* the Web Storage API .
* @ property { string } storageKey Key on which to set in persistent storage .
*
2019-09-19 11:19:18 -04:00
* /
2021-01-27 21:04:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Default plugin storage .
2021-01-27 21:04:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ type { Storage }
* /
const DEFAULT _STORAGE = storage _default ;
/ * *
* Default plugin storage key .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ type { string }
* /
const DEFAULT _STORAGE _KEY = 'WP_DATA' ;
/ * *
* Higher - order reducer which invokes the original reducer only if state is
* inequal from that of the action ' s ` nextState ` property , otherwise returning
* the original state reference .
2021-01-27 21:04:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Function } reducer Original reducer .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ return { Function } Enhanced reducer .
* /
const withLazySameState = reducer => ( state , action ) => {
if ( action . nextState === state ) {
return state ;
}
return reducer ( state , action ) ;
} ;
/ * *
* Creates a persistence interface , exposing getter and setter methods ( ` get `
* and ` set ` respectively ) .
2021-05-07 07:48:27 -04:00
*
2021-05-20 08:20:04 -04:00
* @ param { WPDataPersistencePluginOptions } options Plugin options .
2021-05-07 07:48:27 -04:00
*
2021-05-20 08:20:04 -04:00
* @ return { Object } Persistence interface .
* /
function createPersistenceInterface ( options ) {
const {
storage = DEFAULT _STORAGE ,
storageKey = DEFAULT _STORAGE _KEY
} = options ;
let data ;
/ * *
* Returns the persisted data as an object , defaulting to an empty object .
*
* @ return { Object } Persisted data .
* /
function getData ( ) {
if ( data === undefined ) {
// If unset, getItem is expected to return null. Fall back to
// empty object.
const persisted = storage . getItem ( storageKey ) ;
if ( persisted === null ) {
data = { } ;
} else {
try {
data = JSON . parse ( persisted ) ;
} catch ( error ) {
// Similarly, should any error be thrown during parse of
// the string (malformed JSON), fall back to empty object.
data = { } ;
}
}
}
return data ;
}
/ * *
* Merges an updated reducer state into the persisted data .
*
* @ param { string } key Key to update .
* @ param { * } value Updated value .
* /
function setData ( key , value ) {
data = { ... data ,
[ key ] : value
} ;
storage . setItem ( storageKey , JSON . stringify ( data ) ) ;
}
return {
get : getData ,
set : setData
} ;
}
/ * *
* Data plugin to persist store state into a single storage key .
2021-05-07 07:48:27 -04:00
*
2021-05-20 08:20:04 -04:00
* @ param { WPDataRegistry } registry Data registry .
* @ param { ? WPDataPersistencePluginOptions } pluginOptions Plugin options .
2021-05-07 07:48:27 -04:00
*
2021-05-20 08:20:04 -04:00
* @ return { WPDataPlugin } Data plugin .
2021-01-27 21:04:13 -05:00
* /
2021-05-20 08:20:04 -04:00
function persistencePlugin ( registry , pluginOptions ) {
const persistence = createPersistenceInterface ( pluginOptions ) ;
/ * *
* Creates an enhanced store dispatch function , triggering the state of the
* given store name to be persisted when changed .
*
* @ param { Function } getState Function which returns current state .
* @ param { string } storeName Store name .
* @ param { ? Array < string > } keys Optional subset of keys to save .
*
* @ return { Function } Enhanced dispatch function .
* /
function createPersistOnChange ( getState , storeName , keys ) {
let getPersistedState ;
if ( Array . isArray ( keys ) ) {
// Given keys, the persisted state should by produced as an object
// of the subset of keys. This implementation uses combineReducers
// to leverage its behavior of returning the same object when none
// of the property values changes. This allows a strict reference
// equality to bypass a persistence set on an unchanging state.
const reducers = keys . reduce ( ( accumulator , key ) => Object . assign ( accumulator , {
[ key ] : ( state , action ) => action . nextState [ key ]
} ) , { } ) ;
2022-09-20 11:43:29 -04:00
getPersistedState = withLazySameState ( build _module _combineReducers ( reducers ) ) ;
2021-05-20 08:20:04 -04:00
} else {
getPersistedState = ( state , action ) => action . nextState ;
}
let lastState = getPersistedState ( undefined , {
nextState : getState ( )
} ) ;
return ( ) => {
const state = getPersistedState ( lastState , {
nextState : getState ( )
} ) ;
if ( state !== lastState ) {
persistence . set ( storeName , state ) ;
lastState = state ;
}
} ;
}
return {
registerStore ( storeName , options ) {
if ( ! options . persist ) {
return registry . registerStore ( storeName , options ) ;
} // Load from persistence to use as initial state.
const persistedState = persistence . get ( ) [ storeName ] ;
if ( persistedState !== undefined ) {
let initialState = options . reducer ( options . initialState , {
type : '@@WP/PERSISTENCE_RESTORE'
} ) ;
2022-09-20 11:43:29 -04:00
if ( is _plain _object _isPlainObject ( initialState ) && is _plain _object _isPlainObject ( persistedState ) ) {
2021-05-20 08:20:04 -04:00
// If state is an object, ensure that:
// - Other keys are left intact when persisting only a
// subset of keys.
// - New keys in what would otherwise be used as initial
// state are deeply merged as base for persisted value.
2023-06-27 10:24:19 -04:00
initialState = cjs _default ( ) ( initialState , persistedState , {
isMergeableObject : is _plain _object _isPlainObject
} ) ;
2021-05-20 08:20:04 -04:00
} else {
// If there is a mismatch in object-likeness of default
// initial or persisted state, defer to persisted value.
initialState = persistedState ;
}
options = { ... options ,
initialState
} ;
}
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
const store = registry . registerStore ( storeName , options ) ;
store . subscribe ( createPersistOnChange ( store . getState , storeName , options . persist ) ) ;
return store ;
}
2021-05-07 07:48:27 -04:00
2021-05-20 08:20:04 -04:00
} ;
}
2022-04-12 11:12:47 -04:00
2022-09-20 11:43:29 -04:00
persistencePlugin . _ _unstableMigrate = ( ) => { } ;
2021-02-02 00:17:13 -05:00
2022-04-11 08:04:30 -04:00
/* harmony default export */ var persistence = ( persistencePlugin ) ;
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/plugins/index.js
; // CONCATENATED MODULE: external ["wp","element"]
var external _wp _element _namespaceObject = window [ "wp" ] [ "element" ] ;
; // CONCATENATED MODULE: external ["wp","priorityQueue"]
var external _wp _priorityQueue _namespaceObject = window [ "wp" ] [ "priorityQueue" ] ;
; // 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/data/build-module/components/registry-provider/context.js
2021-02-02 00:17:13 -05:00
/ * *
* WordPress dependencies
* /
2020-10-13 09:10:30 -04:00
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2022-04-11 08:04:30 -04:00
const Context = ( 0 , external _wp _element _namespaceObject . createContext ) ( default _registry ) ;
2021-05-20 08:20:04 -04:00
const {
Consumer ,
Provider
} = Context ;
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* A custom react Context consumer exposing the provided ` registry ` to
* children components . Used along with the RegistryProvider .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* You can read more about the react context api here :
* https : //reactjs.org/docs/context.html#contextprovider
2021-02-02 00:17:13 -05:00
*
* @ example
* ` ` ` js
2021-05-20 08:20:04 -04:00
* import {
* RegistryProvider ,
* RegistryConsumer ,
* createRegistry
* } from '@wordpress/data' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const registry = createRegistry ( { } ) ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const App = ( { props } ) => {
* return < RegistryProvider value = { registry } >
* < div > Hello There < / d i v >
* < RegistryConsumer >
* { ( registry ) => (
* < ComponentUsingRegistry
* { ... props }
* registry = { registry }
* ) }
* < / R e g i s t r y C o n s u m e r >
* < / R e g i s t r y P r o v i d e r >
* }
* ` ` `
2020-03-10 10:53:18 -04:00
* /
2021-05-20 08:20:04 -04:00
const RegistryConsumer = Consumer ;
2020-03-10 10:53:18 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* A custom Context provider for exposing the provided ` registry ` to children
* components via a consumer .
2020-03-10 10:53:18 -04:00
*
2021-05-20 08:20:04 -04:00
* See < a name = "#RegistryConsumer" > RegistryConsumer < / a > d o c u m e n t a t i o n f o r
* example .
2020-03-10 10:53:18 -04:00
* /
2019-10-15 11:37:08 -04:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var context = ( Provider ) ;
2020-01-08 06:57:23 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/registry-provider/use-registry.js
2021-02-02 00:17:13 -05:00
/ * *
* WordPress dependencies
* /
2020-01-08 06:57:23 -05:00
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2020-01-08 06:57:23 -05:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* A custom react hook exposing the registry context for use .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* This exposes the ` registry ` value provided via the
* < a href = "#RegistryProvider" > Registry Provider < / a > t o a c o m p o n e n t i m p l e m e n t i n g
* this hook .
*
* It acts similarly to the ` useContext ` react hook .
*
* Note : Generally speaking , ` useRegistry ` is a low level hook that in most cases
* won ' t be needed for implementation . Most interactions with the ` @wordpress/data `
* API can be performed via the ` useSelect ` hook , or the ` withSelect ` and
* ` withDispatch ` higher order components .
2021-02-02 00:17:13 -05:00
*
* @ example
2021-05-20 08:20:04 -04:00
* ` ` ` js
* import {
* RegistryProvider ,
* createRegistry ,
* useRegistry ,
* } from '@wordpress/data' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const registry = createRegistry ( { } ) ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const SomeChildUsingRegistry = ( props ) => {
2021-11-08 09:29:21 -05:00
* const registry = useRegistry ( ) ;
2021-05-20 08:20:04 -04:00
* // ...logic implementing the registry in other react hooks.
* } ;
2021-02-02 00:17:13 -05:00
*
*
2021-05-20 08:20:04 -04:00
* const ParentProvidingRegistry = ( props ) => {
* return < RegistryProvider value = { registry } >
* < SomeChildUsingRegistry { ... props } / >
* < / R e g i s t r y P r o v i d e r >
* } ;
2021-02-02 00:17:13 -05:00
* ` ` `
*
2021-05-20 08:20:04 -04:00
* @ return { Function } A custom react hook exposing the registry context value .
* /
function useRegistry ( ) {
2022-04-11 08:04:30 -04:00
return ( 0 , external _wp _element _namespaceObject . useContext ) ( Context ) ;
2021-05-20 08:20:04 -04:00
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/async-mode-provider/context.js
2021-05-20 08:20:04 -04:00
/ * *
* WordPress dependencies
* /
2022-04-11 08:04:30 -04:00
const context _Context = ( 0 , external _wp _element _namespaceObject . createContext ) ( false ) ;
2021-05-20 08:20:04 -04:00
const {
Consumer : context _Consumer ,
Provider : context _Provider
} = context _Context ;
2022-04-11 08:04:30 -04:00
const AsyncModeConsumer = ( /* unused pure expression or super */ null && ( context _Consumer ) ) ;
2021-05-20 08:20:04 -04:00
/ * *
* Context Provider Component used to switch the data module component rerendering
* between Sync and Async modes .
*
2021-02-02 00:17:13 -05:00
* @ example
*
2021-05-20 08:20:04 -04:00
* ` ` ` js
* import { useSelect , AsyncModeProvider } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as blockEditorStore } from '@wordpress/block-editor' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* function BlockCount ( ) {
* const count = useSelect ( ( select ) => {
2022-09-20 11:43:29 -04:00
* return select ( blockEditorStore ) . getBlockCount ( )
2021-05-20 08:20:04 -04:00
* } , [ ] ) ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* return count ;
* }
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* function App ( ) {
* return (
* < AsyncModeProvider value = { true } >
* < BlockCount / >
* < / A s y n c M o d e P r o v i d e r >
* ) ;
* }
2021-02-02 00:17:13 -05:00
* ` ` `
*
2021-05-20 08:20:04 -04:00
* In this example , the BlockCount component is rerendered asynchronously .
* It means if a more critical task is being performed ( like typing in an input ) ,
* the rerendering is delayed until the browser becomes IDLE .
* It is possible to nest multiple levels of AsyncModeProvider to fine - tune the rendering behavior .
2021-02-02 00:17:13 -05:00
*
2021-11-08 09:29:21 -05:00
* @ param { boolean } props . value Enable Async Mode .
2021-05-20 08:20:04 -04:00
* @ return { WPComponent } The component to be rendered .
2021-02-02 00:17:13 -05:00
* /
2020-01-08 06:57:23 -05:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var async _mode _provider _context = ( context _Provider ) ;
2019-03-21 08:48:00 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/async-mode-provider/use-async-mode.js
2021-02-02 00:17:13 -05:00
/ * *
* WordPress dependencies
* /
2020-03-23 19:40:19 -04:00
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2018-12-17 22:14:52 -05:00
2021-05-20 08:20:04 -04:00
function useAsyncMode ( ) {
2022-04-11 08:04:30 -04:00
return ( 0 , external _wp _element _namespaceObject . useContext ) ( context _Context ) ;
2021-05-20 08:20:04 -04:00
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/use-select/index.js
2021-05-20 08:20:04 -04:00
/ * *
* WordPress dependencies
* /
2021-02-02 00:17:13 -05:00
/ * *
* Internal dependencies
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
2022-04-11 08:04:30 -04:00
const renderQueue = ( 0 , external _wp _priorityQueue _namespaceObject . createQueue ) ( ) ;
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { import ( '../../types' ) . StoreDescriptor < C > } StoreDescriptor
2023-06-27 10:24:19 -04:00
* @ template { import ( '../../types' ) . AnyConfig } C
2022-09-20 11:43:29 -04:00
* /
/ * *
* @ typedef { import ( '../../types' ) . ReduxStoreConfig < State , Actions , Selectors > } ReduxStoreConfig
2023-06-27 10:24:19 -04:00
* @ template State
* @ template { Record < string , import ( '../../types' ) . ActionCreator > } Actions
* @ template Selectors
2022-09-20 11:43:29 -04:00
* /
2023-06-27 10:24:19 -04:00
/** @typedef {import('../../types').MapSelect} MapSelect */
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { import ( '../../types' ) . UseSelectReturn < T > } UseSelectReturn
2023-06-27 10:24:19 -04:00
* @ template { MapSelect | StoreDescriptor < any > } T
2022-09-20 11:43:29 -04:00
* /
2023-02-07 02:04:52 -05:00
function Store ( registry , suspense ) {
const select = suspense ? registry . suspendSelect : registry . select ;
const queueContext = { } ;
let lastMapSelect ;
let lastMapResult ;
let lastMapResultValid = false ;
let lastIsAsync ;
2023-06-27 10:24:19 -04:00
let subscriber ;
const createSubscriber = stores => {
// The set of stores the `subscribe` function is supposed to subscribe to. Here it is
// initialized, and then the `updateStores` function can add new stores to it.
const activeStores = [ ... stores ] ; // The `subscribe` function, which is passed to the `useSyncExternalStore` hook, could
// be called multiple times to establish multiple subscriptions. That's why we need to
// keep a set of active subscriptions;
const activeSubscriptions = new Set ( ) ;
function subscribe ( listener ) {
// Invalidate the value right after subscription was created. React will
// call `getValue` after subscribing, to detect store updates that happened
// in the interval between the `getValue` call during render and creating
// the subscription, which is slightly delayed. We need to ensure that this
// second `getValue` call will compute a fresh value.
2023-02-07 02:04:52 -05:00
lastMapResultValid = false ;
2023-06-27 10:24:19 -04:00
const onStoreChange = ( ) => {
// Invalidate the value on store update, so that a fresh value is computed.
lastMapResultValid = false ;
listener ( ) ;
} ;
const onChange = ( ) => {
if ( lastIsAsync ) {
renderQueue . add ( queueContext , onStoreChange ) ;
} else {
onStoreChange ( ) ;
}
} ;
const unsubs = [ ] ;
function subscribeStore ( storeName ) {
unsubs . push ( registry . subscribe ( onChange , storeName ) ) ;
2023-02-07 02:04:52 -05:00
}
2023-06-27 10:24:19 -04:00
for ( const storeName of activeStores ) {
subscribeStore ( storeName ) ;
}
2023-02-07 02:04:52 -05:00
2023-06-27 10:24:19 -04:00
activeSubscriptions . add ( subscribeStore ) ;
return ( ) => {
activeSubscriptions . delete ( subscribeStore ) ;
2023-02-07 02:04:52 -05:00
2023-06-27 10:24:19 -04:00
for ( const unsub of unsubs . values ( ) ) {
// The return value of the subscribe function could be undefined if the store is a custom generic store.
unsub ? . ( ) ;
} // Cancel existing store updates that were already scheduled.
renderQueue . cancel ( queueContext ) ;
} ;
} // Check if `newStores` contains some stores we're not subscribed to yet, and add them.
function updateStores ( newStores ) {
for ( const newStore of newStores ) {
if ( activeStores . includes ( newStore ) ) {
continue ;
} // New `subscribe` calls will subscribe to `newStore`, too.
activeStores . push ( newStore ) ; // Add `newStore` to existing subscriptions.
for ( const subscription of activeSubscriptions ) {
subscription ( newStore ) ;
}
}
}
return {
subscribe ,
updateStores
2023-02-07 02:04:52 -05:00
} ;
} ;
2023-06-27 10:24:19 -04:00
return ( mapSelect , isAsync ) => {
function updateValue ( ) {
2023-02-07 02:04:52 -05:00
// If the last value is valid, and the `mapSelect` callback hasn't changed,
// then we can safely return the cached value. The value can change only on
// store update, and in that case value will be invalidated by the listener.
if ( lastMapResultValid && mapSelect === lastMapSelect ) {
return lastMapResult ;
}
2023-06-27 10:24:19 -04:00
const listeningStores = {
current : null
} ;
const mapResult = registry . _ _unstableMarkListeningStores ( ( ) => mapSelect ( select , registry ) , listeningStores ) ;
if ( ! subscriber ) {
subscriber = createSubscriber ( listeningStores . current ) ;
} else {
subscriber . updateStores ( listeningStores . current ) ;
} // If the new value is shallow-equal to the old one, keep the old one so
2023-02-07 02:04:52 -05:00
// that we don't trigger unwanted updates that do a `===` check.
2023-06-27 10:24:19 -04:00
2023-02-07 02:04:52 -05:00
if ( ! external _wp _isShallowEqual _default ( ) ( lastMapResult , mapResult ) ) {
lastMapResult = mapResult ;
}
2023-06-27 10:24:19 -04:00
lastMapSelect = mapSelect ;
2023-02-07 02:04:52 -05:00
lastMapResultValid = true ;
}
function getValue ( ) {
// Update the value in case it's been invalidated or `mapSelect` has changed.
2023-06-27 10:24:19 -04:00
updateValue ( ) ;
2023-02-07 02:04:52 -05:00
return lastMapResult ;
} // When transitioning from async to sync mode, cancel existing store updates
// that have been scheduled, and invalidate the value so that it's freshly
// computed. It might have been changed by the update we just cancelled.
if ( lastIsAsync && ! isAsync ) {
lastMapResultValid = false ;
renderQueue . cancel ( queueContext ) ;
}
2023-06-27 10:24:19 -04:00
updateValue ( ) ;
lastIsAsync = isAsync ; // Return a pair of functions that can be passed to `useSyncExternalStore`.
2023-02-07 02:04:52 -05:00
return {
2023-06-27 10:24:19 -04:00
subscribe : subscriber . subscribe ,
2023-02-07 02:04:52 -05:00
getValue
} ;
} ;
}
function useStaticSelect ( storeName ) {
return useRegistry ( ) . select ( storeName ) ;
}
function useMappingSelect ( suspense , mapSelect , deps ) {
const registry = useRegistry ( ) ;
const isAsync = useAsyncMode ( ) ;
const store = ( 0 , external _wp _element _namespaceObject . useMemo ) ( ( ) => Store ( registry , suspense ) , [ registry ] ) ;
const selector = ( 0 , external _wp _element _namespaceObject . useCallback ) ( mapSelect , deps ) ;
const {
subscribe ,
getValue
2023-06-27 10:24:19 -04:00
} = store ( selector , isAsync ) ;
2023-02-07 02:04:52 -05:00
const result = ( 0 , external _wp _element _namespaceObject . useSyncExternalStore ) ( subscribe , getValue , getValue ) ;
( 0 , external _wp _element _namespaceObject . useDebugValue ) ( result ) ;
return result ;
}
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Custom react hook for retrieving props from registered selectors .
*
* In general , this custom React hook follows the
* [ rules of hooks ] ( https : //reactjs.org/docs/hooks-rules.html).
*
2022-09-20 11:43:29 -04:00
* @ template { MapSelect | StoreDescriptor < any > } T
* @ param { T } mapSelect Function called on every state change . The returned value is
* exposed to the component implementing this hook . The function
* receives the ` registry.select ` method on the first argument
* and the ` registry ` on the second argument .
* When a store key is passed , all selectors for the store will be
* returned . This is only meant for usage of these selectors in event
* callbacks , not for data needed to create the element tree .
* @ param { unknown [ ] } deps If provided , this memoizes the mapSelect so the same ` mapSelect ` is
* invoked on every state change unless the dependencies change .
2021-05-20 08:20:04 -04:00
*
* @ example
* ` ` ` js
* import { useSelect } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-05-20 08:20:04 -04:00
*
* function HammerPriceDisplay ( { currency } ) {
* const price = useSelect ( ( select ) => {
2022-09-20 11:43:29 -04:00
* return select ( myCustomStore ) . getPrice ( 'hammer' , currency ) ;
2021-05-20 08:20:04 -04:00
* } , [ currency ] ) ;
* return new Intl . NumberFormat ( 'en-US' , {
* style : 'currency' ,
* currency ,
* } ) . format ( price ) ;
* }
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* // Rendered in the application:
* // <HammerPriceDisplay currency="USD" />
* ` ` `
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* In the above example , when ` HammerPriceDisplay ` is rendered into an
* application , the price will be retrieved from the store state using the
* ` mapSelect ` callback on ` useSelect ` . If the currency prop changes then
* any price in the state for that currency is retrieved . If the currency prop
* doesn ' t change and other props are passed in that do change , the price will
* not change because the dependency is just the currency .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* When data is only used in an event callback , the data should not be retrieved
* on render , so it may be useful to get the selectors function instead .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* * * Don ' t use ` useSelect ` this way when calling the selectors in the render
* function because your component won ' t re - render on a data change . * *
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* ` ` ` js
* import { useSelect } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* function Paste ( { children } ) {
2022-09-20 11:43:29 -04:00
* const { getSettings } = useSelect ( myCustomStore ) ;
2021-05-20 08:20:04 -04:00
* function onPaste ( ) {
* // Do something with the settings.
* const settings = getSettings ( ) ;
* }
* return < div onPaste = { onPaste } > { children } < / d i v > ;
2021-02-02 00:17:13 -05:00
* }
* ` ` `
2022-09-20 11:43:29 -04:00
* @ return { UseSelectReturn < T > } A custom react hook .
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2021-06-15 04:52:30 -04:00
2023-02-07 02:04:52 -05:00
function useSelect ( mapSelect , deps ) {
// On initial call, on mount, determine the mode of this `useSelect` call
// and then never allow it to change on subsequent updates.
const staticSelectMode = typeof mapSelect !== 'function' ;
const staticSelectModeRef = ( 0 , external _wp _element _namespaceObject . useRef ) ( staticSelectMode ) ;
if ( staticSelectMode !== staticSelectModeRef . current ) {
const prevMode = staticSelectModeRef . current ? 'static' : 'mapping' ;
const nextMode = staticSelectMode ? 'static' : 'mapping' ;
throw new Error ( ` Switching useSelect from ${ prevMode } to ${ nextMode } is not allowed ` ) ;
2021-05-20 08:20:04 -04:00
}
2023-02-07 02:04:52 -05:00
/* eslint-disable react-hooks/rules-of-hooks */
// `staticSelectMode` is not allowed to change during the hook instance's,
// lifetime, so the rules of hooks are not really violated.
2021-01-27 21:04:13 -05:00
2023-02-07 02:04:52 -05:00
return staticSelectMode ? useStaticSelect ( mapSelect ) : useMappingSelect ( false , mapSelect , deps ) ;
/* eslint-enable react-hooks/rules-of-hooks */
2021-05-20 08:20:04 -04:00
}
2022-09-20 11:43:29 -04:00
/ * *
* A variant of the ` useSelect ` hook that has the same API , but will throw a
* suspense Promise if any of the called selectors is in an unresolved state .
*
* @ param { Function } mapSelect Function called on every state change . The
* returned value is exposed to the component
* using this hook . The function receives the
* ` registry.suspendSelect ` method as the first
* argument and the ` registry ` as the second one .
* @ param { Array } deps A dependency array used to memoize the ` mapSelect `
* so that the same ` mapSelect ` is invoked on every
* state change unless the dependencies change .
*
* @ return { Object } Data object returned by the ` mapSelect ` function .
* /
function useSuspenseSelect ( mapSelect , deps ) {
2023-02-07 02:04:52 -05:00
return useMappingSelect ( true , mapSelect , deps ) ;
2022-09-20 11:43:29 -04:00
}
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/with-select/index.js
2021-01-27 21:04:13 -05:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* WordPress dependencies
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Internal dependencies
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
2023-06-27 10:24:19 -04:00
/** @typedef {import('@wordpress/element').WPComponent} WPComponent */
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* Higher - order component used to inject state - derived props using registered
* selectors .
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* @ param { Function } mapSelectToProps Function called on every state change ,
2021-11-08 09:29:21 -05:00
* expected to return object of props to
* merge with the component ' s own props .
2021-02-02 00:17:13 -05:00
*
* @ example
* ` ` ` js
2021-05-20 08:20:04 -04:00
* import { withSelect } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* function PriceDisplay ( { price , currency } ) {
* return new Intl . NumberFormat ( 'en-US' , {
* style : 'currency' ,
* currency ,
* } ) . format ( price ) ;
* }
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* const HammerPriceDisplay = withSelect ( ( select , ownProps ) => {
2022-09-20 11:43:29 -04:00
* const { getPrice } = select ( myCustomStore ) ;
2021-05-20 08:20:04 -04:00
* const { currency } = ownProps ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* return {
* price : getPrice ( 'hammer' , currency ) ,
* } ;
* } ) ( PriceDisplay ) ;
2021-02-02 00:17:13 -05:00
*
2021-05-20 08:20:04 -04:00
* // Rendered in the application:
* //
* // <HammerPriceDisplay currency="USD" />
2021-02-02 00:17:13 -05:00
* ` ` `
2021-05-20 08:20:04 -04:00
* In the above example , when ` HammerPriceDisplay ` is rendered into an
* application , it will pass the price into the underlying ` PriceDisplay `
* component and update automatically if the price of a hammer ever changes in
* the store .
*
* @ return { WPComponent } Enhanced component with merged state data props .
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
const withSelect = mapSelectToProps => ( 0 , external _wp _compose _namespaceObject . createHigherOrderComponent ) ( WrappedComponent => ( 0 , external _wp _compose _namespaceObject . pure ) ( ownProps => {
2021-05-20 08:20:04 -04:00
const mapSelect = ( select , registry ) => mapSelectToProps ( select , ownProps , registry ) ;
const mergeProps = useSelect ( mapSelect ) ;
2023-06-27 10:24:19 -04:00
return ( 0 , external _wp _element _namespaceObject . createElement ) ( WrappedComponent , { ... ownProps ,
... mergeProps
} ) ;
2021-05-20 08:20:04 -04:00
} ) , 'withSelect' ) ;
/* harmony default export */ var with _select = ( withSelect ) ;
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/use-dispatch/use-dispatch-with-map.js
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* WordPress dependencies
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
2021-05-19 11:09:27 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* Internal dependencies
2021-05-19 11:09:27 -04:00
* /
2021-05-20 08:20:04 -04:00
2021-05-19 11:09:27 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* Custom react hook for returning aggregate dispatch actions using the provided
* dispatchMap .
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* Currently this is an internal api only and is implemented by ` withDispatch `
2021-05-19 11:09:27 -04:00
*
2021-11-08 09:29:21 -05:00
* @ param { Function } dispatchMap Receives the ` registry.dispatch ` function as
* the first argument and the ` registry ` object
* as the second argument . Should return an
* object mapping props to functions .
* @ param { Array } deps An array of dependencies for the hook .
2021-05-20 08:20:04 -04:00
* @ return { Object } An object mapping props to functions created by the passed
* in dispatchMap .
2021-05-19 11:09:27 -04:00
* /
2021-05-20 08:20:04 -04:00
const useDispatchWithMap = ( dispatchMap , deps ) => {
const registry = useRegistry ( ) ;
2022-04-11 08:04:30 -04:00
const currentDispatchMap = ( 0 , external _wp _element _namespaceObject . useRef ) ( dispatchMap ) ;
( 0 , external _wp _compose _namespaceObject . useIsomorphicLayoutEffect ) ( ( ) => {
2021-05-20 08:20:04 -04:00
currentDispatchMap . current = dispatchMap ;
} ) ;
2022-04-11 08:04:30 -04:00
return ( 0 , external _wp _element _namespaceObject . useMemo ) ( ( ) => {
2021-05-20 08:20:04 -04:00
const currentDispatchProps = currentDispatchMap . current ( registry . dispatch , registry ) ;
2023-06-27 10:24:19 -04:00
return Object . fromEntries ( Object . entries ( currentDispatchProps ) . map ( ( [ propName , dispatcher ] ) => {
2021-05-20 08:20:04 -04:00
if ( typeof dispatcher !== 'function' ) {
// eslint-disable-next-line no-console
console . warn ( ` Property ${ propName } returned from dispatchMap in useDispatchWithMap must be a function. ` ) ;
2021-05-19 11:09:27 -04:00
}
2023-06-27 10:24:19 -04:00
return [ propName , ( ... args ) => currentDispatchMap . current ( registry . dispatch , registry ) [ propName ] ( ... args ) ] ;
} ) ) ;
2021-05-20 08:20:04 -04:00
} , [ registry , ... deps ] ) ;
} ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var use _dispatch _with _map = ( useDispatchWithMap ) ;
2021-05-19 11:09:27 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/with-dispatch/index.js
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* WordPress dependencies
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Internal dependencies
* /
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
/** @typedef {import('@wordpress/element').WPComponent} WPComponent */
2021-05-19 11:09:27 -04:00
/ * *
2021-05-20 08:20:04 -04:00
* Higher - order component used to add dispatch props using registered action
* creators .
*
* @ param { Function } mapDispatchToProps A function of returning an object of
* prop names where value is a
* dispatch - bound action creator , or a
* function to be called with the
* component ' s props and returning an
* action creator .
*
* @ example
* ` ` ` jsx
* function Button ( { onClick , children } ) {
* return < button type = "button" onClick = { onClick } > { children } < / b u t t o n > ;
* }
*
* import { withDispatch } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-05-20 08:20:04 -04:00
*
* const SaleButton = withDispatch ( ( dispatch , ownProps ) => {
2022-09-20 11:43:29 -04:00
* const { startSale } = dispatch ( myCustomStore ) ;
2021-05-20 08:20:04 -04:00
* const { discountPercent } = ownProps ;
*
* return {
* onClick ( ) {
* startSale ( discountPercent ) ;
* } ,
* } ;
* } ) ( Button ) ;
*
* // Rendered in the application:
* //
* // <SaleButton discountPercent="20">Start Sale!</SaleButton>
* ` ` `
*
* @ example
* In the majority of cases , it will be sufficient to use only two first params
* passed to ` mapDispatchToProps ` as illustrated in the previous example .
* However , there might be some very advanced use cases where using the
* ` registry ` object might be used as a tool to optimize the performance of
* your component . Using ` select ` function from the registry might be useful
* when you need to fetch some dynamic data from the store at the time when the
* event is fired , but at the same time , you never use it to render your
* component . In such scenario , you can avoid using the ` withSelect ` higher
* order component to compute such prop , which might lead to unnecessary
* re - renders of your component caused by its frequent value change .
* Keep in mind , that ` mapDispatchToProps ` must return an object with functions
* only .
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* ` ` ` jsx
* function Button ( { onClick , children } ) {
* return < button type = "button" onClick = { onClick } > { children } < / b u t t o n > ;
* }
2021-05-19 11:09:27 -04:00
*
2021-05-20 08:20:04 -04:00
* import { withDispatch } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-05-20 08:20:04 -04:00
*
* const SaleButton = withDispatch ( ( dispatch , ownProps , { select } ) => {
* // Stock number changes frequently.
2022-09-20 11:43:29 -04:00
* const { getStockNumber } = select ( myCustomStore ) ;
* const { startSale } = dispatch ( myCustomStore ) ;
2021-05-20 08:20:04 -04:00
* return {
* onClick ( ) {
* const discountPercent = getStockNumber ( ) > 50 ? 10 : 20 ;
* startSale ( discountPercent ) ;
* } ,
* } ;
* } ) ( Button ) ;
*
* // Rendered in the application:
* //
* // <SaleButton>Start Sale!</SaleButton>
* ` ` `
*
* _Note : _ It is important that the ` mapDispatchToProps ` function always
* returns an object with the same keys . For example , it should not contain
* conditions under which a different value would be returned .
*
* @ return { WPComponent } Enhanced component with merged dispatcher props .
2021-05-19 11:09:27 -04:00
* /
2022-04-11 08:04:30 -04:00
const withDispatch = mapDispatchToProps => ( 0 , external _wp _compose _namespaceObject . createHigherOrderComponent ) ( WrappedComponent => ownProps => {
2021-05-20 08:20:04 -04:00
const mapDispatch = ( dispatch , registry ) => mapDispatchToProps ( dispatch , ownProps , registry ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
const dispatchProps = use _dispatch _with _map ( mapDispatch , [ ] ) ;
2023-06-27 10:24:19 -04:00
return ( 0 , external _wp _element _namespaceObject . createElement ) ( WrappedComponent , { ... ownProps ,
... dispatchProps
} ) ;
2021-05-20 08:20:04 -04:00
} , 'withDispatch' ) ;
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/* harmony default export */ var with _dispatch = ( withDispatch ) ;
2021-05-19 11:09:27 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/with-registry/index.js
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* WordPress dependencies
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Internal dependencies
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Higher - order component which renders the original component with the current
* registry context passed as its ` registry ` prop .
*
* @ param { WPComponent } OriginalComponent Original component .
*
* @ return { WPComponent } Enhanced component .
* /
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
const withRegistry = ( 0 , external _wp _compose _namespaceObject . createHigherOrderComponent ) ( OriginalComponent => props => ( 0 , external _wp _element _namespaceObject . createElement ) ( RegistryConsumer , null , registry => ( 0 , external _wp _element _namespaceObject . createElement ) ( OriginalComponent , { ... props ,
2021-05-20 08:20:04 -04:00
registry : registry
2023-06-27 10:24:19 -04:00
} ) ) , 'withRegistry' ) ;
2021-05-20 08:20:04 -04:00
/* harmony default export */ var with _registry = ( withRegistry ) ;
2021-05-19 11:09:27 -04:00
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/components/use-dispatch/use-dispatch.js
2021-05-20 08:20:04 -04:00
/ * *
* Internal dependencies
* /
2021-05-19 11:09:27 -04:00
2022-09-20 11:43:29 -04:00
/ * *
* @ typedef { import ( '../../types' ) . StoreDescriptor < StoreConfig > } StoreDescriptor
2023-06-27 10:24:19 -04:00
* @ template { import ( '../../types' ) . AnyConfig } StoreConfig
2022-09-20 11:43:29 -04:00
* /
/ * *
* @ typedef { import ( '../../types' ) . UseDispatchReturn < StoreNameOrDescriptor > } UseDispatchReturn
* @ template StoreNameOrDescriptor
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* A custom react hook returning the current registry dispatch actions creators .
*
* Note : The component using this hook must be within the context of a
* RegistryProvider .
*
2023-06-27 10:24:19 -04:00
* @ template { undefined | string | StoreDescriptor < any > } StoreNameOrDescriptor
2022-09-20 11:43:29 -04:00
* @ param { StoreNameOrDescriptor } [ storeNameOrDescriptor ] Optionally provide the name of the
* store or its descriptor from which to
* retrieve action creators . If not
* provided , the registry . dispatch
* function is returned instead .
2021-05-20 08:20:04 -04:00
*
* @ example
* This illustrates a pattern where you may need to retrieve dynamic data from
* the server via the ` useSelect ` hook to use in combination with the dispatch
* action .
*
* ` ` ` jsx
* import { useDispatch , useSelect } from '@wordpress/data' ;
* import { useCallback } from '@wordpress/element' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-05-20 08:20:04 -04:00
*
* function Button ( { onClick , children } ) {
* return < button type = "button" onClick = { onClick } > { children } < / b u t t o n >
* }
*
* const SaleButton = ( { children } ) => {
* const { stockNumber } = useSelect (
2022-09-20 11:43:29 -04:00
* ( select ) => select ( myCustomStore ) . getStockNumber ( ) ,
2021-05-20 08:20:04 -04:00
* [ ]
* ) ;
2022-09-20 11:43:29 -04:00
* const { startSale } = useDispatch ( myCustomStore ) ;
2021-05-20 08:20:04 -04:00
* const onClick = useCallback ( ( ) => {
* const discountPercent = stockNumber > 50 ? 10 : 20 ;
* startSale ( discountPercent ) ;
* } , [ stockNumber ] ) ;
* return < Button onClick = { onClick } > { children } < / B u t t o n >
* }
*
* // Rendered somewhere in the application:
* //
* // <SaleButton>Start Sale!</SaleButton>
* ` ` `
2022-09-20 11:43:29 -04:00
* @ return { UseDispatchReturn < StoreNameOrDescriptor > } A custom react hook .
2021-05-20 08:20:04 -04:00
* /
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
const useDispatch = storeNameOrDescriptor => {
2021-05-20 08:20:04 -04:00
const {
dispatch
} = useRegistry ( ) ;
2022-04-12 11:12:47 -04:00
return storeNameOrDescriptor === void 0 ? dispatch : dispatch ( storeNameOrDescriptor ) ;
2021-05-20 08:20:04 -04:00
} ;
/* harmony default export */ var use _dispatch = ( useDispatch ) ;
2023-06-27 10:24:19 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/dispatch.js
/ * *
* Internal dependencies
* /
/ * *
* Given a store descriptor , returns an object of the store ' s action creators .
* Calling an action creator will cause it to be dispatched , updating the state value accordingly .
*
* Note : Action creators returned by the dispatch will return a promise when
* they are called .
*
* @ param storeNameOrDescriptor The store descriptor . The legacy calling convention of passing
* the store name is also supported .
*
* @ example
* ` ` ` js
* import { dispatch } from '@wordpress/data' ;
* import { store as myCustomStore } from 'my-custom-store' ;
*
* dispatch ( myCustomStore ) . setPrice ( 'hammer' , 9.75 ) ;
* ` ` `
* @ return Object containing the action creators .
* /
function dispatch _dispatch ( storeNameOrDescriptor ) {
return default _registry . dispatch ( storeNameOrDescriptor ) ;
}
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/select.js
/ * *
* Internal dependencies
* /
/ * *
* Given a store descriptor , returns an object of the store ' s selectors .
* The selector functions are been pre - bound to pass the current state automatically .
* As a consumer , you need only pass arguments of the selector , if applicable .
*
*
* @ param storeNameOrDescriptor The store descriptor . The legacy calling convention
* of passing the store name is also supported .
*
* @ example
* ` ` ` js
* import { select } from '@wordpress/data' ;
* import { store as myCustomStore } from 'my-custom-store' ;
*
* select ( myCustomStore ) . getPrice ( 'hammer' ) ;
* ` ` `
*
* @ return Object containing the store ' s selectors .
* /
function select _select ( storeNameOrDescriptor ) {
return default _registry . select ( storeNameOrDescriptor ) ;
}
2022-04-11 08:04:30 -04:00
; // CONCATENATED MODULE: ./node_modules/@wordpress/data/build-module/index.js
2021-02-02 00:17:13 -05:00
/ * *
2021-05-20 08:20:04 -04:00
* External dependencies
2021-02-02 00:17:13 -05:00
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
/ * *
* Internal dependencies
* /
2021-01-27 21:04:13 -05:00
2022-04-12 11:12:47 -04:00
/** @typedef {import('./types').StoreDescriptor} StoreDescriptor */
2021-01-27 21:04:13 -05:00
2021-05-19 11:09:27 -04:00
2023-06-27 10:24:19 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* Object of available plugins to use with a registry .
*
* @ see [ use ] ( # use )
*
* @ type { Object }
* /
2021-05-19 11:09:27 -04:00
2021-05-20 08:20:04 -04:00
/ * *
* The combineReducers helper function turns an object whose values are different
* reducing functions into a single reducing function you can pass to registerReducer .
*
2022-09-20 11:43:29 -04:00
* @ type { import ( './types' ) . combineReducers }
2021-05-20 08:20:04 -04:00
* @ param { Object } reducers An object whose values correspond to different reducing
* functions that need to be combined into one .
*
* @ example
* ` ` ` js
* import { combineReducers , createReduxStore , register } from '@wordpress/data' ;
*
* const prices = ( state = { } , action ) => {
* return action . type === 'SET_PRICE' ?
* {
* ... state ,
* [ action . item ] : action . price ,
* } :
* state ;
* } ;
*
* const discountPercent = ( state = 0 , action ) => {
* return action . type === 'START_SALE' ?
* action . discountPercent :
* state ;
* } ;
*
* const store = createReduxStore ( 'my-shop' , {
* reducer : combineReducers ( {
* prices ,
* discountPercent ,
* } ) ,
* } ) ;
* register ( store ) ;
* ` ` `
*
2021-11-08 09:29:21 -05:00
* @ return { Function } A reducer that invokes every reducer inside the reducers
* object , and constructs a state object with the same shape .
2021-05-20 08:20:04 -04:00
* /
2021-05-19 11:09:27 -04:00
2022-09-20 11:43:29 -04:00
const build _module _combineReducers = ( turbo _combine _reducers _default ( ) ) ;
2021-05-20 08:20:04 -04:00
/ * *
2022-09-20 11:43:29 -04:00
* Given a store descriptor , returns an object containing the store ' s selectors pre - bound to state
* so that you only need to supply additional arguments , and modified so that they return promises
* that resolve to their eventual values , after any resolvers have ran .
2021-05-20 08:20:04 -04:00
*
2022-09-20 11:43:29 -04:00
* @ param { StoreDescriptor | string } storeNameOrDescriptor The store descriptor . The legacy calling
* convention of passing the store name is
* also supported .
2021-05-20 08:20:04 -04:00
*
* @ example
* ` ` ` js
* import { resolveSelect } from '@wordpress/data' ;
2022-09-20 11:43:29 -04:00
* import { store as myCustomStore } from 'my-custom-store' ;
2021-05-20 08:20:04 -04:00
*
2022-09-20 11:43:29 -04:00
* resolveSelect ( myCustomStore ) . getPrice ( 'hammer' ) . then ( console . log )
2021-05-20 08:20:04 -04:00
* ` ` `
*
* @ return { Object } Object containing the store ' s promise - wrapped selectors .
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
const build _module _resolveSelect = default _registry . resolveSelect ;
/ * *
2022-09-20 11:43:29 -04:00
* Given a store descriptor , returns an object containing the store ' s selectors pre - bound to state
* so that you only need to supply additional arguments , and modified so that they throw promises
* in case the selector is not resolved yet .
*
* @ param { StoreDescriptor | string } storeNameOrDescriptor The store descriptor . The legacy calling
* convention of passing the store name is
* also supported .
*
* @ return { Object } Object containing the store ' s suspense - wrapped selectors .
* /
const suspendSelect = default _registry . suspendSelect ;
2021-05-20 08:20:04 -04:00
/ * *
* Given a listener function , the function will be called any time the state value
2023-02-07 02:04:52 -05:00
* of one of the registered stores has changed . If you specify the optional
* ` storeNameOrDescriptor ` parameter , the listener function will be called only
* on updates on that one specific registered store .
*
* This function returns an ` unsubscribe ` function used to stop the subscription .
2021-05-20 08:20:04 -04:00
*
2023-02-07 02:04:52 -05:00
* @ param { Function } listener Callback function .
* @ param { string | StoreDescriptor ? } storeNameOrDescriptor Optional store name .
2021-05-20 08:20:04 -04:00
*
* @ example
* ` ` ` js
* import { subscribe } from '@wordpress/data' ;
*
* const unsubscribe = subscribe ( ( ) => {
* // You could use this opportunity to test whether the derived result of a
* // selector has subsequently changed as the result of a state update.
* } ) ;
*
* // Later, if necessary...
* unsubscribe ( ) ;
* ` ` `
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
const subscribe = default _registry . subscribe ;
2021-05-20 08:20:04 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* Registers a generic store instance .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ deprecated Use ` register( storeDescriptor ) ` instead .
2021-05-20 08:20:04 -04:00
*
2022-04-12 11:12:47 -04:00
* @ param { string } name Store registry name .
* @ param { Object } store Store instance ( ` { getSelectors, getActions, subscribe } ` ) .
2021-05-20 08:20:04 -04:00
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
const registerGenericStore = default _registry . registerGenericStore ;
2021-05-20 08:20:04 -04:00
/ * *
* Registers a standard ` @wordpress/data ` store .
*
* @ deprecated Use ` register ` instead .
*
* @ param { string } storeName Unique namespace identifier for the store .
* @ param { Object } options Store description ( reducer , actions , selectors , resolvers ) .
*
* @ return { Object } Registered store object .
* /
2021-01-27 21:04:13 -05:00
2021-05-20 08:20:04 -04:00
const registerStore = default _registry . registerStore ;
/ * *
* Extends a registry to inherit functionality provided by a given plugin . A
* plugin is an object with properties aligning to that of a registry , merged
* to extend the default registry behavior .
*
* @ param { Object } plugin Plugin object .
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
const use = default _registry . use ;
2021-05-20 08:20:04 -04:00
/ * *
2022-04-12 11:12:47 -04:00
* Registers a standard ` @wordpress/data ` store descriptor .
2021-05-20 08:20:04 -04:00
*
* @ example
* ` ` ` js
* import { createReduxStore , register } from '@wordpress/data' ;
*
* const store = createReduxStore ( 'demo' , {
* reducer : ( state = 'OK' ) => state ,
* selectors : {
* getValue : ( state ) => state ,
* } ,
* } ) ;
* register ( store ) ;
* ` ` `
*
2022-04-12 11:12:47 -04:00
* @ param { StoreDescriptor } store Store descriptor .
2021-05-20 08:20:04 -04:00
* /
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
const register = default _registry . register ;
2021-01-27 21:04:13 -05:00
2022-04-11 08:04:30 -04:00
} ( ) ;
( window . wp = window . wp || { } ) . data = _ _webpack _exports _ _ ;
/******/ } ) ( )
;