--- a/wp/wp-includes/js/dist/hooks.js Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-includes/js/dist/hooks.js Fri Sep 05 18:40:08 2025 +0200
@@ -1,36 +1,36 @@
-/******/ (function() { // webpackBootstrap
+/******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ // The require scope
/******/ var __webpack_require__ = {};
/******/
/************************************************************************/
/******/ /* webpack/runtime/define property getters */
-/******/ !function() {
+/******/ (() => {
/******/ // define getter functions for harmony exports
-/******/ __webpack_require__.d = function(exports, definition) {
+/******/ __webpack_require__.d = (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_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
+/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
-/******/ !function() {
+/******/ (() => {
/******/ // define __esModule on exports
-/******/ __webpack_require__.r = function(exports) {
+/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
-/******/ }();
+/******/ })();
/******/
/************************************************************************/
var __webpack_exports__ = {};
@@ -39,26 +39,26 @@
// EXPORTS
__webpack_require__.d(__webpack_exports__, {
- "actions": function() { return /* binding */ actions; },
- "addAction": function() { return /* binding */ addAction; },
- "addFilter": function() { return /* binding */ addFilter; },
- "applyFilters": function() { return /* binding */ applyFilters; },
- "createHooks": function() { return /* reexport */ build_module_createHooks; },
- "currentAction": function() { return /* binding */ currentAction; },
- "currentFilter": function() { return /* binding */ currentFilter; },
- "defaultHooks": function() { return /* binding */ defaultHooks; },
- "didAction": function() { return /* binding */ didAction; },
- "didFilter": function() { return /* binding */ didFilter; },
- "doAction": function() { return /* binding */ doAction; },
- "doingAction": function() { return /* binding */ doingAction; },
- "doingFilter": function() { return /* binding */ doingFilter; },
- "filters": function() { return /* binding */ filters; },
- "hasAction": function() { return /* binding */ hasAction; },
- "hasFilter": function() { return /* binding */ hasFilter; },
- "removeAction": function() { return /* binding */ removeAction; },
- "removeAllActions": function() { return /* binding */ removeAllActions; },
- "removeAllFilters": function() { return /* binding */ removeAllFilters; },
- "removeFilter": function() { return /* binding */ removeFilter; }
+ actions: () => (/* binding */ actions),
+ addAction: () => (/* binding */ addAction),
+ addFilter: () => (/* binding */ addFilter),
+ applyFilters: () => (/* binding */ applyFilters),
+ createHooks: () => (/* reexport */ build_module_createHooks),
+ currentAction: () => (/* binding */ currentAction),
+ currentFilter: () => (/* binding */ currentFilter),
+ defaultHooks: () => (/* binding */ defaultHooks),
+ didAction: () => (/* binding */ didAction),
+ didFilter: () => (/* binding */ didFilter),
+ doAction: () => (/* binding */ doAction),
+ doingAction: () => (/* binding */ doingAction),
+ doingFilter: () => (/* binding */ doingFilter),
+ filters: () => (/* binding */ filters),
+ hasAction: () => (/* binding */ hasAction),
+ hasFilter: () => (/* binding */ hasFilter),
+ removeAction: () => (/* binding */ removeAction),
+ removeAllActions: () => (/* binding */ removeAllActions),
+ removeAllFilters: () => (/* binding */ removeAllFilters),
+ removeFilter: () => (/* binding */ removeFilter)
});
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/validateNamespace.js
@@ -76,17 +76,14 @@
console.error('The namespace must be a non-empty string.');
return false;
}
-
if (!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(namespace)) {
// eslint-disable-next-line no-console
console.error('The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.');
return false;
}
-
return true;
}
-
-/* harmony default export */ var build_module_validateNamespace = (validateNamespace);
+/* harmony default export */ const build_module_validateNamespace = (validateNamespace);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/validateHookName.js
/**
@@ -104,23 +101,19 @@
console.error('The hook name must be a non-empty string.');
return false;
}
-
if (/^__/.test(hookName)) {
// eslint-disable-next-line no-console
console.error('The hook name cannot begin with `__`.');
return false;
}
-
if (!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(hookName)) {
// eslint-disable-next-line no-console
console.error('The hook name can only contain numbers, letters, dashes, periods and underscores.');
return false;
}
-
return true;
}
-
-/* harmony default export */ var build_module_validateHookName = (validateHookName);
+/* harmony default export */ const build_module_validateHookName = (validateHookName);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createAddHook.js
/**
@@ -128,6 +121,7 @@
*/
+
/**
* @callback AddHook
*
@@ -147,64 +141,55 @@
*
* @return {AddHook} Function that adds a new hook.
*/
-
function createAddHook(hooks, storeKey) {
- return function addHook(hookName, namespace, callback) {
- let priority = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 10;
+ return function addHook(hookName, namespace, callback, priority = 10) {
const hooksStore = hooks[storeKey];
-
if (!build_module_validateHookName(hookName)) {
return;
}
-
if (!build_module_validateNamespace(namespace)) {
return;
}
-
if ('function' !== typeof callback) {
// eslint-disable-next-line no-console
console.error('The hook callback must be a function.');
return;
- } // Validate numeric priority
+ }
-
+ // Validate numeric priority
if ('number' !== typeof priority) {
// eslint-disable-next-line no-console
console.error('If specified, the hook priority must be a number.');
return;
}
-
const handler = {
callback,
priority,
namespace
};
-
if (hooksStore[hookName]) {
// Find the correct insert index of the new hook.
const handlers = hooksStore[hookName].handlers;
+
/** @type {number} */
-
let i;
-
for (i = handlers.length; i > 0; i--) {
if (priority >= handlers[i - 1].priority) {
break;
}
}
-
if (i === handlers.length) {
// If append, operate via direct assignment.
handlers[i] = handler;
} else {
// Otherwise, insert before index via splice.
handlers.splice(i, 0, handler);
- } // We may also be currently executing this hook. If the callback
+ }
+
+ // We may also be currently executing this hook. If the callback
// we're adding would come after the current callback, there's no
// problem; otherwise we need to increase the execution index of
// any other runs by 1 to account for the added element.
-
-
hooksStore.__current.forEach(hookInfo => {
if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {
hookInfo.currentIndex++;
@@ -217,14 +202,12 @@
runs: 0
};
}
-
if (hookName !== 'hookAdded') {
hooks.doAction('hookAdded', hookName, namespace, callback, priority);
}
};
}
-
-/* harmony default export */ var build_module_createAddHook = (createAddHook);
+/* harmony default export */ const build_module_createAddHook = (createAddHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createRemoveHook.js
/**
@@ -232,6 +215,7 @@
*/
+
/**
* @callback RemoveHook
* Removes the specified callback (or all callbacks) from the hook with a given hookName
@@ -256,27 +240,21 @@
*
* @return {RemoveHook} Function that removes hooks.
*/
-
-function createRemoveHook(hooks, storeKey) {
- let removeAll = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
+function createRemoveHook(hooks, storeKey, removeAll = false) {
return function removeHook(hookName, namespace) {
const hooksStore = hooks[storeKey];
-
if (!build_module_validateHookName(hookName)) {
return;
}
+ if (!removeAll && !build_module_validateNamespace(namespace)) {
+ return;
+ }
- if (!removeAll && !build_module_validateNamespace(namespace)) {
- return;
- } // Bail if no hooks exist by this name.
-
-
+ // Bail if no hooks exist by this name.
if (!hooksStore[hookName]) {
return 0;
}
-
let handlersRemoved = 0;
-
if (removeAll) {
handlersRemoved = hooksStore[hookName].handlers.length;
hooksStore[hookName] = {
@@ -286,16 +264,15 @@
} else {
// Try to find the specified callback to remove.
const handlers = hooksStore[hookName].handlers;
-
for (let i = handlers.length - 1; i >= 0; i--) {
if (handlers[i].namespace === namespace) {
handlers.splice(i, 1);
- handlersRemoved++; // This callback may also be part of a hook that is
+ handlersRemoved++;
+ // This callback may also be part of a hook that is
// currently executing. If the callback we're removing
// comes after the current callback, there's no problem;
// otherwise we need to decrease the execution index of any
// other runs by 1 to account for the removed element.
-
hooksStore.__current.forEach(hookInfo => {
if (hookInfo.name === hookName && hookInfo.currentIndex >= i) {
hookInfo.currentIndex--;
@@ -304,16 +281,13 @@
}
}
}
-
if (hookName !== 'hookRemoved') {
hooks.doAction('hookRemoved', hookName, namespace);
}
-
return handlersRemoved;
};
}
-
-/* harmony default export */ var build_module_createRemoveHook = (createRemoveHook);
+/* harmony default export */ const build_module_createRemoveHook = (createRemoveHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createHasHook.js
/**
@@ -327,7 +301,6 @@
*
* @return {boolean} Whether there are handlers that are attached to the given hook.
*/
-
/**
* Returns a function which, when invoked, will return whether any handlers are
* attached to a particular hook.
@@ -340,17 +313,16 @@
*/
function createHasHook(hooks, storeKey) {
return function hasHook(hookName, namespace) {
- const hooksStore = hooks[storeKey]; // Use the namespace if provided.
+ const hooksStore = hooks[storeKey];
+ // Use the namespace if provided.
if ('undefined' !== typeof namespace) {
return hookName in hooksStore && hooksStore[hookName].handlers.some(hook => hook.namespace === namespace);
}
-
return hookName in hooksStore;
};
}
-
-/* harmony default export */ var build_module_createHasHook = (createHasHook);
+/* harmony default export */ const build_module_createHasHook = (createHasHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createRunHook.js
/**
@@ -363,60 +335,46 @@
* @param {boolean} [returnFirstArg=false] Whether each hook callback is expected to
* return its first argument.
*
- * @return {(hookName:string, ...args: unknown[]) => unknown} Function that runs hook callbacks.
+ * @return {(hookName:string, ...args: unknown[]) => undefined|unknown} Function that runs hook callbacks.
*/
-function createRunHook(hooks, storeKey) {
- let returnFirstArg = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
- return function runHooks(hookName) {
+function createRunHook(hooks, storeKey, returnFirstArg = false) {
+ return function runHooks(hookName, ...args) {
const hooksStore = hooks[storeKey];
-
if (!hooksStore[hookName]) {
hooksStore[hookName] = {
handlers: [],
runs: 0
};
}
+ hooksStore[hookName].runs++;
+ const handlers = hooksStore[hookName].handlers;
- hooksStore[hookName].runs++;
- const handlers = hooksStore[hookName].handlers; // The following code is stripped from production builds.
-
+ // The following code is stripped from production builds.
if (false) {}
-
- for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
-
if (!handlers || !handlers.length) {
return returnFirstArg ? args[0] : undefined;
}
-
const hookInfo = {
name: hookName,
currentIndex: 0
};
-
hooksStore.__current.push(hookInfo);
-
while (hookInfo.currentIndex < handlers.length) {
const handler = handlers[hookInfo.currentIndex];
const result = handler.callback.apply(null, args);
-
if (returnFirstArg) {
args[0] = result;
}
-
hookInfo.currentIndex++;
}
-
hooksStore.__current.pop();
-
if (returnFirstArg) {
return args[0];
}
+ return undefined;
};
}
-
-/* harmony default export */ var build_module_createRunHook = (createRunHook);
+/* harmony default export */ const build_module_createRunHook = (createRunHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createCurrentHook.js
/**
@@ -431,14 +389,12 @@
*/
function createCurrentHook(hooks, storeKey) {
return function currentHook() {
- var _hooksStore$__current, _hooksStore$__current2;
-
+ var _hooksStore$__current;
const hooksStore = hooks[storeKey];
- return (_hooksStore$__current = (_hooksStore$__current2 = hooksStore.__current[hooksStore.__current.length - 1]) === null || _hooksStore$__current2 === void 0 ? void 0 : _hooksStore$__current2.name) !== null && _hooksStore$__current !== void 0 ? _hooksStore$__current : null;
+ return (_hooksStore$__current = hooksStore.__current[hooksStore.__current.length - 1]?.name) !== null && _hooksStore$__current !== void 0 ? _hooksStore$__current : null;
};
}
-
-/* harmony default export */ var build_module_createCurrentHook = (createCurrentHook);
+/* harmony default export */ const build_module_createCurrentHook = (createCurrentHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createDoingHook.js
/**
@@ -463,24 +419,25 @@
*/
function createDoingHook(hooks, storeKey) {
return function doingHook(hookName) {
- const hooksStore = hooks[storeKey]; // If the hookName was not passed, check for any current hook.
+ const hooksStore = hooks[storeKey];
+ // If the hookName was not passed, check for any current hook.
if ('undefined' === typeof hookName) {
return 'undefined' !== typeof hooksStore.__current[0];
- } // Return the __current hook.
+ }
-
+ // Return the __current hook.
return hooksStore.__current[0] ? hookName === hooksStore.__current[0].name : false;
};
}
-
-/* harmony default export */ var build_module_createDoingHook = (createDoingHook);
+/* harmony default export */ const build_module_createDoingHook = (createDoingHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createDidHook.js
/**
* Internal dependencies
*/
+
/**
* @callback DidHook
*
@@ -500,20 +457,16 @@
*
* @return {DidHook} Function that returns a hook's call count.
*/
-
function createDidHook(hooks, storeKey) {
return function didHook(hookName) {
const hooksStore = hooks[storeKey];
-
if (!build_module_validateHookName(hookName)) {
return;
}
-
return hooksStore[hookName] && hooksStore[hookName].runs ? hooksStore[hookName].runs : 0;
};
}
-
-/* harmony default export */ var build_module_createDidHook = (createDidHook);
+/* harmony default export */ const build_module_createDidHook = (createDidHook);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/createHooks.js
/**
@@ -526,6 +479,7 @@
+
/**
* Internal class for constructing hooks. Use `createHooks()` function
*
@@ -533,14 +487,13 @@
*
* @private
*/
-
class _Hooks {
constructor() {
/** @type {import('.').Store} actions */
this.actions = Object.create(null);
this.actions.__current = [];
+
/** @type {import('.').Store} filters */
-
this.filters = Object.create(null);
this.filters.__current = [];
this.addAction = build_module_createAddHook(this, 'actions');
@@ -560,8 +513,8 @@
this.didAction = build_module_createDidHook(this, 'actions');
this.didFilter = build_module_createDidHook(this, 'filters');
}
+}
-}
/** @typedef {_Hooks} Hooks */
/**
@@ -569,18 +522,17 @@
*
* @return {Hooks} A Hooks instance.
*/
-
function createHooks() {
return new _Hooks();
}
-
-/* harmony default export */ var build_module_createHooks = (createHooks);
+/* harmony default export */ const build_module_createHooks = (createHooks);
;// CONCATENATED MODULE: ./node_modules/@wordpress/hooks/build-module/index.js
/**
* Internal dependencies
*/
+
/** @typedef {(...args: any[])=>any} Callback */
/**