123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- /******/ (function() { // webpackBootstrap
- /******/ "use strict";
- /******/ // The require scope
- /******/ var __webpack_require__ = {};
- /******/
- /************************************************************************/
- /******/ /* 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__ = {};
- // ESM COMPAT FLAG
- __webpack_require__.r(__webpack_exports__);
- // EXPORTS
- __webpack_require__.d(__webpack_exports__, {
- "__unstableAwaitPromise": function() { return /* binding */ __unstableAwaitPromise; },
- "apiFetch": function() { return /* binding */ apiFetch; },
- "controls": function() { return /* binding */ controls; },
- "dispatch": function() { return /* binding */ dispatch; },
- "select": function() { return /* binding */ build_module_select; },
- "syncSelect": function() { return /* binding */ syncSelect; }
- });
- ;// CONCATENATED MODULE: external ["wp","apiFetch"]
- var external_wp_apiFetch_namespaceObject = window["wp"]["apiFetch"];
- var external_wp_apiFetch_default = /*#__PURE__*/__webpack_require__.n(external_wp_apiFetch_namespaceObject);
- ;// CONCATENATED MODULE: external ["wp","data"]
- var external_wp_data_namespaceObject = window["wp"]["data"];
- ;// CONCATENATED MODULE: external ["wp","deprecated"]
- var external_wp_deprecated_namespaceObject = window["wp"]["deprecated"];
- var external_wp_deprecated_default = /*#__PURE__*/__webpack_require__.n(external_wp_deprecated_namespaceObject);
- ;// CONCATENATED MODULE: ./node_modules/@wordpress/data-controls/build-module/index.js
- /**
- * WordPress dependencies
- */
- /**
- * Dispatches a control action for triggering an api fetch call.
- *
- * @param {Object} request Arguments for the fetch request.
- *
- * @example
- * ```js
- * import { apiFetch } from '@wordpress/data-controls';
- *
- * // Action generator using apiFetch
- * export function* myAction() {
- * const path = '/v2/my-api/items';
- * const items = yield apiFetch( { path } );
- * // do something with the items.
- * }
- * ```
- *
- * @return {Object} The control descriptor.
- */
- function apiFetch(request) {
- return {
- type: 'API_FETCH',
- request
- };
- }
- /**
- * Control for resolving a selector in a registered data store.
- * Alias for the `resolveSelect` built-in control in the `@wordpress/data` package.
- *
- * @param {Array} args Arguments passed without change to the `@wordpress/data` control.
- */
- function build_module_select() {
- external_wp_deprecated_default()('`select` control in `@wordpress/data-controls`', {
- since: '5.7',
- alternative: 'built-in `resolveSelect` control in `@wordpress/data`'
- });
- return external_wp_data_namespaceObject.controls.resolveSelect(...arguments);
- }
- /**
- * Control for calling a selector in a registered data store.
- * Alias for the `select` built-in control in the `@wordpress/data` package.
- *
- * @param {Array} args Arguments passed without change to the `@wordpress/data` control.
- */
- function syncSelect() {
- external_wp_deprecated_default()('`syncSelect` control in `@wordpress/data-controls`', {
- since: '5.7',
- alternative: 'built-in `select` control in `@wordpress/data`'
- });
- return external_wp_data_namespaceObject.controls.select(...arguments);
- }
- /**
- * Control for dispatching an action in a registered data store.
- * Alias for the `dispatch` control in the `@wordpress/data` package.
- *
- * @param {Array} args Arguments passed without change to the `@wordpress/data` control.
- */
- function dispatch() {
- external_wp_deprecated_default()('`dispatch` control in `@wordpress/data-controls`', {
- since: '5.7',
- alternative: 'built-in `dispatch` control in `@wordpress/data`'
- });
- return external_wp_data_namespaceObject.controls.dispatch(...arguments);
- }
- /**
- * Dispatches a control action for awaiting on a promise to be resolved.
- *
- * @param {Object} promise Promise to wait for.
- *
- * @example
- * ```js
- * import { __unstableAwaitPromise } from '@wordpress/data-controls';
- *
- * // Action generator using apiFetch
- * export function* myAction() {
- * const promise = getItemsAsync();
- * const items = yield __unstableAwaitPromise( promise );
- * // do something with the items.
- * }
- * ```
- *
- * @return {Object} The control descriptor.
- */
- const __unstableAwaitPromise = function (promise) {
- return {
- type: 'AWAIT_PROMISE',
- promise
- };
- };
- /**
- * The default export is what you use to register the controls with your custom
- * store.
- *
- * @example
- * ```js
- * // WordPress dependencies
- * import { controls } from '@wordpress/data-controls';
- * import { registerStore } from '@wordpress/data';
- *
- * // Internal dependencies
- * import reducer from './reducer';
- * import * as selectors from './selectors';
- * import * as actions from './actions';
- * import * as resolvers from './resolvers';
- *
- * registerStore( 'my-custom-store', {
- * reducer,
- * controls,
- * actions,
- * selectors,
- * resolvers,
- * } );
- * ```
- * @return {Object} An object for registering the default controls with the
- * store.
- */
- const controls = {
- AWAIT_PROMISE: _ref => {
- let {
- promise
- } = _ref;
- return promise;
- },
- API_FETCH(_ref2) {
- let {
- request
- } = _ref2;
- return external_wp_apiFetch_default()(request);
- }
- };
- (window.wp = window.wp || {}).dataControls = __webpack_exports__;
- /******/ })()
- ;
|