|
(() => { |
|
"use strict"; |
|
|
|
var __webpack_require__ = {}; |
|
|
|
|
|
|
|
(() => { |
|
|
|
__webpack_require__.n = (module) => { |
|
var getter = module && module.__esModule ? |
|
() => (module['default']) : |
|
() => (module); |
|
__webpack_require__.d(getter, { a: getter }); |
|
return getter; |
|
}; |
|
})(); |
|
|
|
|
|
(() => { |
|
|
|
__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_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) |
|
})(); |
|
|
|
|
|
(() => { |
|
|
|
__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__ = {}; |
|
|
|
__webpack_require__.r(__webpack_exports__); |
|
|
|
|
|
__webpack_require__.d(__webpack_exports__, { |
|
store: () => ( store) |
|
}); |
|
|
|
|
|
var selectors_namespaceObject = {}; |
|
__webpack_require__.r(selectors_namespaceObject); |
|
__webpack_require__.d(selectors_namespaceObject, { |
|
getDownloadableBlocks: () => (getDownloadableBlocks), |
|
getErrorNoticeForBlock: () => (getErrorNoticeForBlock), |
|
getErrorNotices: () => (getErrorNotices), |
|
getInstalledBlockTypes: () => (getInstalledBlockTypes), |
|
getNewBlockTypes: () => (getNewBlockTypes), |
|
getUnusedBlockTypes: () => (getUnusedBlockTypes), |
|
isInstalling: () => (isInstalling), |
|
isRequestingDownloadableBlocks: () => (isRequestingDownloadableBlocks) |
|
}); |
|
|
|
|
|
var actions_namespaceObject = {}; |
|
__webpack_require__.r(actions_namespaceObject); |
|
__webpack_require__.d(actions_namespaceObject, { |
|
addInstalledBlockType: () => (addInstalledBlockType), |
|
clearErrorNotice: () => (clearErrorNotice), |
|
fetchDownloadableBlocks: () => (fetchDownloadableBlocks), |
|
installBlockType: () => (installBlockType), |
|
receiveDownloadableBlocks: () => (receiveDownloadableBlocks), |
|
removeInstalledBlockType: () => (removeInstalledBlockType), |
|
setErrorNotice: () => (setErrorNotice), |
|
setIsInstalling: () => (setIsInstalling), |
|
uninstallBlockType: () => (uninstallBlockType) |
|
}); |
|
|
|
|
|
var resolvers_namespaceObject = {}; |
|
__webpack_require__.r(resolvers_namespaceObject); |
|
__webpack_require__.d(resolvers_namespaceObject, { |
|
getDownloadableBlocks: () => (resolvers_getDownloadableBlocks) |
|
}); |
|
|
|
; |
|
const external_wp_plugins_namespaceObject = window["wp"]["plugins"]; |
|
; |
|
const external_wp_hooks_namespaceObject = window["wp"]["hooks"]; |
|
; |
|
const external_wp_blocks_namespaceObject = window["wp"]["blocks"]; |
|
; |
|
const external_wp_data_namespaceObject = window["wp"]["data"]; |
|
; |
|
const external_wp_element_namespaceObject = window["wp"]["element"]; |
|
; |
|
const external_wp_editor_namespaceObject = window["wp"]["editor"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const downloadableBlocks = (state = {}, action) => { |
|
switch (action.type) { |
|
case 'FETCH_DOWNLOADABLE_BLOCKS': |
|
return { |
|
...state, |
|
[action.filterValue]: { |
|
isRequesting: true |
|
} |
|
}; |
|
case 'RECEIVE_DOWNLOADABLE_BLOCKS': |
|
return { |
|
...state, |
|
[action.filterValue]: { |
|
results: action.downloadableBlocks, |
|
isRequesting: false |
|
} |
|
}; |
|
} |
|
return state; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const blockManagement = (state = { |
|
installedBlockTypes: [], |
|
isInstalling: {} |
|
}, action) => { |
|
switch (action.type) { |
|
case 'ADD_INSTALLED_BLOCK_TYPE': |
|
return { |
|
...state, |
|
installedBlockTypes: [...state.installedBlockTypes, action.item] |
|
}; |
|
case 'REMOVE_INSTALLED_BLOCK_TYPE': |
|
return { |
|
...state, |
|
installedBlockTypes: state.installedBlockTypes.filter(blockType => blockType.name !== action.item.name) |
|
}; |
|
case 'SET_INSTALLING_BLOCK': |
|
return { |
|
...state, |
|
isInstalling: { |
|
...state.isInstalling, |
|
[action.blockId]: action.isInstalling |
|
} |
|
}; |
|
} |
|
return state; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const errorNotices = (state = {}, action) => { |
|
switch (action.type) { |
|
case 'SET_ERROR_NOTICE': |
|
return { |
|
...state, |
|
[action.blockId]: { |
|
message: action.message, |
|
isFatal: action.isFatal |
|
} |
|
}; |
|
case 'CLEAR_ERROR_NOTICE': |
|
const { |
|
[action.blockId]: blockId, |
|
...restState |
|
} = state; |
|
return restState; |
|
} |
|
return state; |
|
}; |
|
const reducer = ((0,external_wp_data_namespaceObject.combineReducers)({ |
|
downloadableBlocks, |
|
blockManagement, |
|
errorNotices |
|
})); |
|
|
|
; |
|
const external_wp_blockEditor_namespaceObject = window["wp"]["blockEditor"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function hasBlockType(blockType, blocks = []) { |
|
if (!blocks.length) { |
|
return false; |
|
} |
|
if (blocks.some(({ |
|
name |
|
}) => name === blockType.name)) { |
|
return true; |
|
} |
|
for (let i = 0; i < blocks.length; i++) { |
|
if (hasBlockType(blockType, blocks[i].innerBlocks)) { |
|
return true; |
|
} |
|
} |
|
return false; |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isRequestingDownloadableBlocks(state, filterValue) { |
|
var _state$downloadableBl; |
|
return (_state$downloadableBl = state.downloadableBlocks[filterValue]?.isRequesting) !== null && _state$downloadableBl !== void 0 ? _state$downloadableBl : false; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getDownloadableBlocks(state, filterValue) { |
|
var _state$downloadableBl2; |
|
return (_state$downloadableBl2 = state.downloadableBlocks[filterValue]?.results) !== null && _state$downloadableBl2 !== void 0 ? _state$downloadableBl2 : []; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getInstalledBlockTypes(state) { |
|
return state.blockManagement.installedBlockTypes; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const getNewBlockTypes = (0,external_wp_data_namespaceObject.createRegistrySelector)(select => state => { |
|
const usedBlockTree = select(external_wp_blockEditor_namespaceObject.store).getBlocks(); |
|
const installedBlockTypes = getInstalledBlockTypes(state); |
|
return installedBlockTypes.filter(blockType => hasBlockType(blockType, usedBlockTree)); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const getUnusedBlockTypes = (0,external_wp_data_namespaceObject.createRegistrySelector)(select => state => { |
|
const usedBlockTree = select(external_wp_blockEditor_namespaceObject.store).getBlocks(); |
|
const installedBlockTypes = getInstalledBlockTypes(state); |
|
return installedBlockTypes.filter(blockType => !hasBlockType(blockType, usedBlockTree)); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isInstalling(state, blockId) { |
|
return state.blockManagement.isInstalling[blockId] || false; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getErrorNotices(state) { |
|
return state.errorNotices; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getErrorNoticeForBlock(state, blockId) { |
|
return state.errorNotices[blockId]; |
|
} |
|
|
|
; |
|
const external_wp_i18n_namespaceObject = window["wp"]["i18n"]; |
|
; |
|
const external_wp_apiFetch_namespaceObject = window["wp"]["apiFetch"]; |
|
var external_wp_apiFetch_default = __webpack_require__.n(external_wp_apiFetch_namespaceObject); |
|
; |
|
const external_wp_notices_namespaceObject = window["wp"]["notices"]; |
|
; |
|
const external_wp_url_namespaceObject = window["wp"]["url"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const loadAsset = el => { |
|
return new Promise((resolve, reject) => { |
|
|
|
|
|
|
|
|
|
const newNode = document.createElement(el.nodeName); |
|
['id', 'rel', 'src', 'href', 'type'].forEach(attr => { |
|
if (el[attr]) { |
|
newNode[attr] = el[attr]; |
|
} |
|
}); |
|
|
|
|
|
if (el.innerHTML) { |
|
newNode.appendChild(document.createTextNode(el.innerHTML)); |
|
} |
|
newNode.onload = () => resolve(true); |
|
newNode.onerror = () => reject(new Error('Error loading asset.')); |
|
document.body.appendChild(newNode); |
|
|
|
|
|
if ('link' === newNode.nodeName.toLowerCase() || 'script' === newNode.nodeName.toLowerCase() && !newNode.src) { |
|
resolve(); |
|
} |
|
}); |
|
}; |
|
|
|
|
|
|
|
|
|
async function loadAssets() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const response = await external_wp_apiFetch_default()({ |
|
url: document.location.href, |
|
parse: false |
|
}); |
|
const data = await response.text(); |
|
const doc = new window.DOMParser().parseFromString(data, 'text/html'); |
|
const newAssets = Array.from(doc.querySelectorAll('link[rel="stylesheet"],script')).filter(asset => asset.id && !document.getElementById(asset.id)); |
|
|
|
|
|
|
|
|
|
|
|
for (const newAsset of newAssets) { |
|
await loadAsset(newAsset); |
|
} |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getPluginUrl(block) { |
|
if (!block) { |
|
return false; |
|
} |
|
const link = block.links['wp:plugin'] || block.links.self; |
|
if (link && link.length) { |
|
return link[0].href; |
|
} |
|
return false; |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function fetchDownloadableBlocks(filterValue) { |
|
return { |
|
type: 'FETCH_DOWNLOADABLE_BLOCKS', |
|
filterValue |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function receiveDownloadableBlocks(downloadableBlocks, filterValue) { |
|
return { |
|
type: 'RECEIVE_DOWNLOADABLE_BLOCKS', |
|
downloadableBlocks, |
|
filterValue |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const installBlockType = block => async ({ |
|
registry, |
|
dispatch |
|
}) => { |
|
const { |
|
id, |
|
name |
|
} = block; |
|
let success = false; |
|
dispatch.clearErrorNotice(id); |
|
try { |
|
dispatch.setIsInstalling(id, true); |
|
|
|
|
|
const url = getPluginUrl(block); |
|
let links = {}; |
|
if (url) { |
|
await external_wp_apiFetch_default()({ |
|
method: 'PUT', |
|
url, |
|
data: { |
|
status: 'active' |
|
} |
|
}); |
|
} else { |
|
const response = await external_wp_apiFetch_default()({ |
|
method: 'POST', |
|
path: 'wp/v2/plugins', |
|
data: { |
|
slug: id, |
|
status: 'active' |
|
} |
|
}); |
|
|
|
links = response._links; |
|
} |
|
dispatch.addInstalledBlockType({ |
|
...block, |
|
links: { |
|
...block.links, |
|
...links |
|
} |
|
}); |
|
|
|
|
|
const metadataFields = ['api_version', 'title', 'category', 'parent', 'icon', 'description', 'keywords', 'attributes', 'provides_context', 'uses_context', 'supports', 'styles', 'example', 'variations']; |
|
await external_wp_apiFetch_default()({ |
|
path: (0,external_wp_url_namespaceObject.addQueryArgs)(`/wp/v2/block-types/${name}`, { |
|
_fields: metadataFields |
|
}) |
|
}) |
|
|
|
.catch(() => {}).then(response => { |
|
if (!response) { |
|
return; |
|
} |
|
(0,external_wp_blocks_namespaceObject.unstable__bootstrapServerSideBlockDefinitions)({ |
|
[name]: Object.fromEntries(Object.entries(response).filter(([key]) => metadataFields.includes(key))) |
|
}); |
|
}); |
|
await loadAssets(); |
|
const registeredBlocks = registry.select(external_wp_blocks_namespaceObject.store).getBlockTypes(); |
|
if (!registeredBlocks.some(i => i.name === name)) { |
|
throw new Error((0,external_wp_i18n_namespaceObject.__)('Error registering block. Try reloading the page.')); |
|
} |
|
registry.dispatch(external_wp_notices_namespaceObject.store).createInfoNotice((0,external_wp_i18n_namespaceObject.sprintf)( |
|
|
|
(0,external_wp_i18n_namespaceObject.__)('Block %s installed and added.'), block.title), { |
|
speak: true, |
|
type: 'snackbar' |
|
}); |
|
success = true; |
|
} catch (error) { |
|
let message = error.message || (0,external_wp_i18n_namespaceObject.__)('An error occurred.'); |
|
|
|
|
|
let isFatal = error instanceof Error; |
|
|
|
|
|
const fatalAPIErrors = { |
|
folder_exists: (0,external_wp_i18n_namespaceObject.__)('This block is already installed. Try reloading the page.'), |
|
unable_to_connect_to_filesystem: (0,external_wp_i18n_namespaceObject.__)('Error installing block. You can reload the page and try again.') |
|
}; |
|
if (fatalAPIErrors[error.code]) { |
|
isFatal = true; |
|
message = fatalAPIErrors[error.code]; |
|
} |
|
dispatch.setErrorNotice(id, message, isFatal); |
|
registry.dispatch(external_wp_notices_namespaceObject.store).createErrorNotice(message, { |
|
speak: true, |
|
isDismissible: true |
|
}); |
|
} |
|
dispatch.setIsInstalling(id, false); |
|
return success; |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
const uninstallBlockType = block => async ({ |
|
registry, |
|
dispatch |
|
}) => { |
|
try { |
|
const url = getPluginUrl(block); |
|
await external_wp_apiFetch_default()({ |
|
method: 'PUT', |
|
url, |
|
data: { |
|
status: 'inactive' |
|
} |
|
}); |
|
await external_wp_apiFetch_default()({ |
|
method: 'DELETE', |
|
url |
|
}); |
|
dispatch.removeInstalledBlockType(block); |
|
} catch (error) { |
|
registry.dispatch(external_wp_notices_namespaceObject.store).createErrorNotice(error.message || (0,external_wp_i18n_namespaceObject.__)('An error occurred.')); |
|
} |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function addInstalledBlockType(item) { |
|
return { |
|
type: 'ADD_INSTALLED_BLOCK_TYPE', |
|
item |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function removeInstalledBlockType(item) { |
|
return { |
|
type: 'REMOVE_INSTALLED_BLOCK_TYPE', |
|
item |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setIsInstalling(blockId, isInstalling) { |
|
return { |
|
type: 'SET_INSTALLING_BLOCK', |
|
blockId, |
|
isInstalling |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setErrorNotice(blockId, message, isFatal = false) { |
|
return { |
|
type: 'SET_ERROR_NOTICE', |
|
blockId, |
|
message, |
|
isFatal |
|
}; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function clearErrorNotice(blockId) { |
|
return { |
|
type: 'CLEAR_ERROR_NOTICE', |
|
blockId |
|
}; |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var extendStatics = function(d, b) { |
|
extendStatics = Object.setPrototypeOf || |
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || |
|
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; |
|
return extendStatics(d, b); |
|
}; |
|
|
|
function __extends(d, b) { |
|
if (typeof b !== "function" && b !== null) |
|
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); |
|
extendStatics(d, b); |
|
function __() { this.constructor = d; } |
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); |
|
} |
|
|
|
var __assign = function() { |
|
__assign = Object.assign || function __assign(t) { |
|
for (var s, i = 1, n = arguments.length; i < n; i++) { |
|
s = arguments[i]; |
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; |
|
} |
|
return t; |
|
} |
|
return __assign.apply(this, arguments); |
|
} |
|
|
|
function __rest(s, e) { |
|
var t = {}; |
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) |
|
t[p] = s[p]; |
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") |
|
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { |
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) |
|
t[p[i]] = s[p[i]]; |
|
} |
|
return t; |
|
} |
|
|
|
function __decorate(decorators, target, key, desc) { |
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; |
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); |
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; |
|
return c > 3 && r && Object.defineProperty(target, key, r), r; |
|
} |
|
|
|
function __param(paramIndex, decorator) { |
|
return function (target, key) { decorator(target, key, paramIndex); } |
|
} |
|
|
|
function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) { |
|
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; } |
|
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value"; |
|
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null; |
|
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {}); |
|
var _, done = false; |
|
for (var i = decorators.length - 1; i >= 0; i--) { |
|
var context = {}; |
|
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p]; |
|
for (var p in contextIn.access) context.access[p] = contextIn.access[p]; |
|
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); }; |
|
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context); |
|
if (kind === "accessor") { |
|
if (result === void 0) continue; |
|
if (result === null || typeof result !== "object") throw new TypeError("Object expected"); |
|
if (_ = accept(result.get)) descriptor.get = _; |
|
if (_ = accept(result.set)) descriptor.set = _; |
|
if (_ = accept(result.init)) initializers.unshift(_); |
|
} |
|
else if (_ = accept(result)) { |
|
if (kind === "field") initializers.unshift(_); |
|
else descriptor[key] = _; |
|
} |
|
} |
|
if (target) Object.defineProperty(target, contextIn.name, descriptor); |
|
done = true; |
|
}; |
|
|
|
function __runInitializers(thisArg, initializers, value) { |
|
var useValue = arguments.length > 2; |
|
for (var i = 0; i < initializers.length; i++) { |
|
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg); |
|
} |
|
return useValue ? value : void 0; |
|
}; |
|
|
|
function __propKey(x) { |
|
return typeof x === "symbol" ? x : "".concat(x); |
|
}; |
|
|
|
function __setFunctionName(f, name, prefix) { |
|
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : ""; |
|
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name }); |
|
}; |
|
|
|
function __metadata(metadataKey, metadataValue) { |
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); |
|
} |
|
|
|
function __awaiter(thisArg, _arguments, P, generator) { |
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } |
|
return new (P || (P = Promise))(function (resolve, reject) { |
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } |
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } |
|
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } |
|
step((generator = generator.apply(thisArg, _arguments || [])).next()); |
|
}); |
|
} |
|
|
|
function __generator(thisArg, body) { |
|
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; |
|
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; |
|
function verb(n) { return function (v) { return step([n, v]); }; } |
|
function step(op) { |
|
if (f) throw new TypeError("Generator is already executing."); |
|
while (g && (g = 0, op[0] && (_ = 0)), _) try { |
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; |
|
if (y = 0, t) op = [op[0] & 2, t.value]; |
|
switch (op[0]) { |
|
case 0: case 1: t = op; break; |
|
case 4: _.label++; return { value: op[1], done: false }; |
|
case 5: _.label++; y = op[1]; op = [0]; continue; |
|
case 7: op = _.ops.pop(); _.trys.pop(); continue; |
|
default: |
|
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } |
|
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } |
|
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } |
|
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } |
|
if (t[2]) _.ops.pop(); |
|
_.trys.pop(); continue; |
|
} |
|
op = body.call(thisArg, _); |
|
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } |
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; |
|
} |
|
} |
|
|
|
var __createBinding = Object.create ? (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
var desc = Object.getOwnPropertyDescriptor(m, k); |
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { |
|
desc = { enumerable: true, get: function() { return m[k]; } }; |
|
} |
|
Object.defineProperty(o, k2, desc); |
|
}) : (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
o[k2] = m[k]; |
|
}); |
|
|
|
function __exportStar(m, o) { |
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); |
|
} |
|
|
|
function __values(o) { |
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; |
|
if (m) return m.call(o); |
|
if (o && typeof o.length === "number") return { |
|
next: function () { |
|
if (o && i >= o.length) o = void 0; |
|
return { value: o && o[i++], done: !o }; |
|
} |
|
}; |
|
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); |
|
} |
|
|
|
function __read(o, n) { |
|
var m = typeof Symbol === "function" && o[Symbol.iterator]; |
|
if (!m) return o; |
|
var i = m.call(o), r, ar = [], e; |
|
try { |
|
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); |
|
} |
|
catch (error) { e = { error: error }; } |
|
finally { |
|
try { |
|
if (r && !r.done && (m = i["return"])) m.call(i); |
|
} |
|
finally { if (e) throw e.error; } |
|
} |
|
return ar; |
|
} |
|
|
|
|
|
function __spread() { |
|
for (var ar = [], i = 0; i < arguments.length; i++) |
|
ar = ar.concat(__read(arguments[i])); |
|
return ar; |
|
} |
|
|
|
|
|
function __spreadArrays() { |
|
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; |
|
for (var r = Array(s), k = 0, i = 0; i < il; i++) |
|
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) |
|
r[k] = a[j]; |
|
return r; |
|
} |
|
|
|
function __spreadArray(to, from, pack) { |
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { |
|
if (ar || !(i in from)) { |
|
if (!ar) ar = Array.prototype.slice.call(from, 0, i); |
|
ar[i] = from[i]; |
|
} |
|
} |
|
return to.concat(ar || Array.prototype.slice.call(from)); |
|
} |
|
|
|
function __await(v) { |
|
return this instanceof __await ? (this.v = v, this) : new __await(v); |
|
} |
|
|
|
function __asyncGenerator(thisArg, _arguments, generator) { |
|
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); |
|
var g = generator.apply(thisArg, _arguments || []), i, q = []; |
|
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; |
|
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } |
|
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } |
|
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } |
|
function fulfill(value) { resume("next", value); } |
|
function reject(value) { resume("throw", value); } |
|
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } |
|
} |
|
|
|
function __asyncDelegator(o) { |
|
var i, p; |
|
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; |
|
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; } |
|
} |
|
|
|
function __asyncValues(o) { |
|
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); |
|
var m = o[Symbol.asyncIterator], i; |
|
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); |
|
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } |
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } |
|
} |
|
|
|
function __makeTemplateObject(cooked, raw) { |
|
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } |
|
return cooked; |
|
}; |
|
|
|
var __setModuleDefault = Object.create ? (function(o, v) { |
|
Object.defineProperty(o, "default", { enumerable: true, value: v }); |
|
}) : function(o, v) { |
|
o["default"] = v; |
|
}; |
|
|
|
function __importStar(mod) { |
|
if (mod && mod.__esModule) return mod; |
|
var result = {}; |
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); |
|
__setModuleDefault(result, mod); |
|
return result; |
|
} |
|
|
|
function __importDefault(mod) { |
|
return (mod && mod.__esModule) ? mod : { default: mod }; |
|
} |
|
|
|
function __classPrivateFieldGet(receiver, state, kind, f) { |
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); |
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); |
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); |
|
} |
|
|
|
function __classPrivateFieldSet(receiver, state, value, kind, f) { |
|
if (kind === "m") throw new TypeError("Private method is not writable"); |
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); |
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); |
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; |
|
} |
|
|
|
function __classPrivateFieldIn(state, receiver) { |
|
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object"); |
|
return typeof state === "function" ? receiver === state : state.has(receiver); |
|
} |
|
|
|
function __addDisposableResource(env, value, async) { |
|
if (value !== null && value !== void 0) { |
|
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected."); |
|
var dispose; |
|
if (async) { |
|
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined."); |
|
dispose = value[Symbol.asyncDispose]; |
|
} |
|
if (dispose === void 0) { |
|
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined."); |
|
dispose = value[Symbol.dispose]; |
|
} |
|
if (typeof dispose !== "function") throw new TypeError("Object not disposable."); |
|
env.stack.push({ value: value, dispose: dispose, async: async }); |
|
} |
|
else if (async) { |
|
env.stack.push({ async: true }); |
|
} |
|
return value; |
|
} |
|
|
|
var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { |
|
var e = new Error(message); |
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e; |
|
}; |
|
|
|
function __disposeResources(env) { |
|
function fail(e) { |
|
env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e; |
|
env.hasError = true; |
|
} |
|
function next() { |
|
while (env.stack.length) { |
|
var rec = env.stack.pop(); |
|
try { |
|
var result = rec.dispose && rec.dispose.call(rec.value); |
|
if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); }); |
|
} |
|
catch (e) { |
|
fail(e); |
|
} |
|
} |
|
if (env.hasError) throw env.error; |
|
} |
|
return next(); |
|
} |
|
|
|
const tslib_es6 = ({ |
|
__extends, |
|
__assign, |
|
__rest, |
|
__decorate, |
|
__param, |
|
__metadata, |
|
__awaiter, |
|
__generator, |
|
__createBinding, |
|
__exportStar, |
|
__values, |
|
__read, |
|
__spread, |
|
__spreadArrays, |
|
__spreadArray, |
|
__await, |
|
__asyncGenerator, |
|
__asyncDelegator, |
|
__asyncValues, |
|
__makeTemplateObject, |
|
__importStar, |
|
__importDefault, |
|
__classPrivateFieldGet, |
|
__classPrivateFieldSet, |
|
__classPrivateFieldIn, |
|
__addDisposableResource, |
|
__disposeResources, |
|
}); |
|
|
|
; |
|
|
|
|
|
|
|
var SUPPORTED_LOCALE = { |
|
tr: { |
|
regexp: /\u0130|\u0049|\u0049\u0307/g, |
|
map: { |
|
İ: "\u0069", |
|
I: "\u0131", |
|
İ: "\u0069", |
|
}, |
|
}, |
|
az: { |
|
regexp: /\u0130/g, |
|
map: { |
|
İ: "\u0069", |
|
I: "\u0131", |
|
İ: "\u0069", |
|
}, |
|
}, |
|
lt: { |
|
regexp: /\u0049|\u004A|\u012E|\u00CC|\u00CD|\u0128/g, |
|
map: { |
|
I: "\u0069\u0307", |
|
J: "\u006A\u0307", |
|
Į: "\u012F\u0307", |
|
Ì: "\u0069\u0307\u0300", |
|
Í: "\u0069\u0307\u0301", |
|
Ĩ: "\u0069\u0307\u0303", |
|
}, |
|
}, |
|
}; |
|
|
|
|
|
|
|
function localeLowerCase(str, locale) { |
|
var lang = SUPPORTED_LOCALE[locale.toLowerCase()]; |
|
if (lang) |
|
return lowerCase(str.replace(lang.regexp, function (m) { return lang.map[m]; })); |
|
return lowerCase(str); |
|
} |
|
|
|
|
|
|
|
function lowerCase(str) { |
|
return str.toLowerCase(); |
|
} |
|
|
|
; |
|
|
|
|
|
var DEFAULT_SPLIT_REGEXP = [/([a-z0-9])([A-Z])/g, /([A-Z])([A-Z][a-z])/g]; |
|
|
|
var DEFAULT_STRIP_REGEXP = /[^A-Z0-9]+/gi; |
|
|
|
|
|
|
|
function noCase(input, options) { |
|
if (options === void 0) { options = {}; } |
|
var _a = options.splitRegexp, splitRegexp = _a === void 0 ? DEFAULT_SPLIT_REGEXP : _a, _b = options.stripRegexp, stripRegexp = _b === void 0 ? DEFAULT_STRIP_REGEXP : _b, _c = options.transform, transform = _c === void 0 ? lowerCase : _c, _d = options.delimiter, delimiter = _d === void 0 ? " " : _d; |
|
var result = replace(replace(input, splitRegexp, "$1\0$2"), stripRegexp, "\0"); |
|
var start = 0; |
|
var end = result.length; |
|
|
|
while (result.charAt(start) === "\0") |
|
start++; |
|
while (result.charAt(end - 1) === "\0") |
|
end--; |
|
|
|
return result.slice(start, end).split("\0").map(transform).join(delimiter); |
|
} |
|
|
|
|
|
|
|
function replace(input, re, value) { |
|
if (re instanceof RegExp) |
|
return input.replace(re, value); |
|
return re.reduce(function (input, re) { return input.replace(re, value); }, input); |
|
} |
|
|
|
; |
|
|
|
|
|
function pascalCaseTransform(input, index) { |
|
var firstChar = input.charAt(0); |
|
var lowerChars = input.substr(1).toLowerCase(); |
|
if (index > 0 && firstChar >= "0" && firstChar <= "9") { |
|
return "_" + firstChar + lowerChars; |
|
} |
|
return "" + firstChar.toUpperCase() + lowerChars; |
|
} |
|
function dist_es2015_pascalCaseTransformMerge(input) { |
|
return input.charAt(0).toUpperCase() + input.slice(1).toLowerCase(); |
|
} |
|
function pascalCase(input, options) { |
|
if (options === void 0) { options = {}; } |
|
return noCase(input, __assign({ delimiter: "", transform: pascalCaseTransform }, options)); |
|
} |
|
|
|
; |
|
|
|
|
|
function camelCaseTransform(input, index) { |
|
if (index === 0) |
|
return input.toLowerCase(); |
|
return pascalCaseTransform(input, index); |
|
} |
|
function camelCaseTransformMerge(input, index) { |
|
if (index === 0) |
|
return input.toLowerCase(); |
|
return pascalCaseTransformMerge(input); |
|
} |
|
function camelCase(input, options) { |
|
if (options === void 0) { options = {}; } |
|
return pascalCase(input, __assign({ transform: camelCaseTransform }, options)); |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const resolvers_getDownloadableBlocks = filterValue => async ({ |
|
dispatch |
|
}) => { |
|
if (!filterValue) { |
|
return; |
|
} |
|
try { |
|
dispatch(fetchDownloadableBlocks(filterValue)); |
|
const results = await external_wp_apiFetch_default()({ |
|
path: `wp/v2/block-directory/search?term=${filterValue}` |
|
}); |
|
const blocks = results.map(result => Object.fromEntries(Object.entries(result).map(([key, value]) => [camelCase(key), value]))); |
|
dispatch(receiveDownloadableBlocks(blocks, filterValue)); |
|
} catch {} |
|
}; |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const STORE_NAME = 'core/block-directory'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const storeConfig = { |
|
reducer: reducer, |
|
selectors: selectors_namespaceObject, |
|
actions: actions_namespaceObject, |
|
resolvers: resolvers_namespaceObject |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const store = (0,external_wp_data_namespaceObject.createReduxStore)(STORE_NAME, storeConfig); |
|
(0,external_wp_data_namespaceObject.register)(store); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function AutoBlockUninstaller() { |
|
const { |
|
uninstallBlockType |
|
} = (0,external_wp_data_namespaceObject.useDispatch)(store); |
|
const shouldRemoveBlockTypes = (0,external_wp_data_namespaceObject.useSelect)(select => { |
|
const { |
|
isAutosavingPost, |
|
isSavingPost |
|
} = select(external_wp_editor_namespaceObject.store); |
|
return isSavingPost() && !isAutosavingPost(); |
|
}, []); |
|
const unusedBlockTypes = (0,external_wp_data_namespaceObject.useSelect)(select => select(store).getUnusedBlockTypes(), []); |
|
(0,external_wp_element_namespaceObject.useEffect)(() => { |
|
if (shouldRemoveBlockTypes && unusedBlockTypes.length) { |
|
unusedBlockTypes.forEach(blockType => { |
|
uninstallBlockType(blockType); |
|
(0,external_wp_blocks_namespaceObject.unregisterBlockType)(blockType.name); |
|
}); |
|
} |
|
}, [shouldRemoveBlockTypes]); |
|
return null; |
|
} |
|
|
|
; |
|
const external_wp_compose_namespaceObject = window["wp"]["compose"]; |
|
; |
|
const external_wp_components_namespaceObject = window["wp"]["components"]; |
|
; |
|
const external_wp_coreData_namespaceObject = window["wp"]["coreData"]; |
|
; |
|
const external_wp_htmlEntities_namespaceObject = window["wp"]["htmlEntities"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Icon({ |
|
icon, |
|
size = 24, |
|
...props |
|
}, ref) { |
|
return (0,external_wp_element_namespaceObject.cloneElement)(icon, { |
|
width: size, |
|
height: size, |
|
...props, |
|
ref |
|
}); |
|
} |
|
const icon = ((0,external_wp_element_namespaceObject.forwardRef)(Icon)); |
|
|
|
; |
|
const external_wp_primitives_namespaceObject = window["wp"]["primitives"]; |
|
; |
|
const external_ReactJSXRuntime_namespaceObject = window["ReactJSXRuntime"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
const starFilled = (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, { |
|
xmlns: "http://www.w3.org/2000/svg", |
|
viewBox: "0 0 24 24", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, { |
|
d: "M11.776 4.454a.25.25 0 01.448 0l2.069 4.192a.25.25 0 00.188.137l4.626.672a.25.25 0 01.139.426l-3.348 3.263a.25.25 0 00-.072.222l.79 4.607a.25.25 0 01-.362.263l-4.138-2.175a.25.25 0 00-.232 0l-4.138 2.175a.25.25 0 01-.363-.263l.79-4.607a.25.25 0 00-.071-.222L4.754 9.881a.25.25 0 01.139-.426l4.626-.672a.25.25 0 00.188-.137l2.069-4.192z" |
|
}) |
|
}); |
|
const star_filled = (starFilled); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
const starHalf = (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, { |
|
xmlns: "http://www.w3.org/2000/svg", |
|
viewBox: "0 0 24 24", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, { |
|
d: "M9.518 8.783a.25.25 0 00.188-.137l2.069-4.192a.25.25 0 01.448 0l2.07 4.192a.25.25 0 00.187.137l4.626.672a.25.25 0 01.139.427l-3.347 3.262a.25.25 0 00-.072.222l.79 4.607a.25.25 0 01-.363.264l-4.137-2.176a.25.25 0 00-.233 0l-4.138 2.175a.25.25 0 01-.362-.263l.79-4.607a.25.25 0 00-.072-.222L4.753 9.882a.25.25 0 01.14-.427l4.625-.672zM12 14.533c.28 0 .559.067.814.2l1.895.997-.362-2.11a1.75 1.75 0 01.504-1.55l1.533-1.495-2.12-.308a1.75 1.75 0 01-1.317-.957L12 7.39v7.143z" |
|
}) |
|
}); |
|
const star_half = (starHalf); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
const starEmpty = (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, { |
|
xmlns: "http://www.w3.org/2000/svg", |
|
viewBox: "0 0 24 24", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, { |
|
fillRule: "evenodd", |
|
d: "M9.706 8.646a.25.25 0 01-.188.137l-4.626.672a.25.25 0 00-.139.427l3.348 3.262a.25.25 0 01.072.222l-.79 4.607a.25.25 0 00.362.264l4.138-2.176a.25.25 0 01.233 0l4.137 2.175a.25.25 0 00.363-.263l-.79-4.607a.25.25 0 01.072-.222l3.347-3.262a.25.25 0 00-.139-.427l-4.626-.672a.25.25 0 01-.188-.137l-2.069-4.192a.25.25 0 00-.448 0L9.706 8.646zM12 7.39l-.948 1.921a1.75 1.75 0 01-1.317.957l-2.12.308 1.534 1.495c.412.402.6.982.503 1.55l-.362 2.11 1.896-.997a1.75 1.75 0 011.629 0l1.895.997-.362-2.11a1.75 1.75 0 01.504-1.55l1.533-1.495-2.12-.308a1.75 1.75 0 01-1.317-.957L12 7.39z", |
|
clipRule: "evenodd" |
|
}) |
|
}); |
|
const star_empty = (starEmpty); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function Stars({ |
|
rating |
|
}) { |
|
const stars = Math.round(rating / 0.5) * 0.5; |
|
const fullStarCount = Math.floor(rating); |
|
const halfStarCount = Math.ceil(rating - fullStarCount); |
|
const emptyStarCount = 5 - (fullStarCount + halfStarCount); |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)("span", { |
|
"aria-label": (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('%s out of 5 stars'), stars), |
|
children: [Array.from({ |
|
length: fullStarCount |
|
}).map((_, i) => (0,external_ReactJSXRuntime_namespaceObject.jsx)(icon, { |
|
className: "block-directory-block-ratings__star-full", |
|
icon: star_filled, |
|
size: 16 |
|
}, `full_stars_${i}`)), Array.from({ |
|
length: halfStarCount |
|
}).map((_, i) => (0,external_ReactJSXRuntime_namespaceObject.jsx)(icon, { |
|
className: "block-directory-block-ratings__star-half-full", |
|
icon: star_half, |
|
size: 16 |
|
}, `half_stars_${i}`)), Array.from({ |
|
length: emptyStarCount |
|
}).map((_, i) => (0,external_ReactJSXRuntime_namespaceObject.jsx)(icon, { |
|
className: "block-directory-block-ratings__star-empty", |
|
icon: star_empty, |
|
size: 16 |
|
}, `empty_stars_${i}`))] |
|
}); |
|
} |
|
const stars = (Stars); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
const BlockRatings = ({ |
|
rating |
|
}) => (0,external_ReactJSXRuntime_namespaceObject.jsx)("span", { |
|
className: "block-directory-block-ratings", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(stars, { |
|
rating: rating |
|
}) |
|
}); |
|
const block_ratings = (BlockRatings); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
function DownloadableBlockIcon({ |
|
icon |
|
}) { |
|
const className = 'block-directory-downloadable-block-icon'; |
|
return icon.match(/\.(jpeg|jpg|gif|png|svg)(?:\?.*)?$/) !== null ? (0,external_ReactJSXRuntime_namespaceObject.jsx)("img", { |
|
className: className, |
|
src: icon, |
|
alt: "" |
|
}) : (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_blockEditor_namespaceObject.BlockIcon, { |
|
className: className, |
|
icon: icon, |
|
showColors: true |
|
}); |
|
} |
|
const downloadable_block_icon = (DownloadableBlockIcon); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const DownloadableBlockNotice = ({ |
|
block |
|
}) => { |
|
const errorNotice = (0,external_wp_data_namespaceObject.useSelect)(select => select(store).getErrorNoticeForBlock(block.id), [block]); |
|
if (!errorNotice) { |
|
return null; |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-directory-downloadable-block-notice", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-directory-downloadable-block-notice__content", |
|
children: [errorNotice.message, errorNotice.isFatal ? ' ' + (0,external_wp_i18n_namespaceObject.__)('Try reloading the page.') : null] |
|
}) |
|
}); |
|
}; |
|
const downloadable_block_notice = (DownloadableBlockNotice); |
|
|
|
; |
|
const external_wp_privateApis_namespaceObject = window["wp"]["privateApis"]; |
|
; |
|
|
|
|
|
|
|
|
|
const { |
|
lock, |
|
unlock |
|
} = (0,external_wp_privateApis_namespaceObject.__dangerousOptInToUnstableAPIsOnlyForCoreModules)('I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.', '@wordpress/block-directory'); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { |
|
CompositeItemV2: CompositeItem |
|
} = unlock(external_wp_components_namespaceObject.privateApis); |
|
|
|
|
|
function getDownloadableBlockLabel({ |
|
title, |
|
rating, |
|
ratingCount |
|
}, { |
|
hasNotice, |
|
isInstalled, |
|
isInstalling |
|
}) { |
|
const stars = Math.round(rating / 0.5) * 0.5; |
|
if (!isInstalled && hasNotice) { |
|
|
|
return (0,external_wp_i18n_namespaceObject.sprintf)('Retry installing %s.', (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title)); |
|
} |
|
if (isInstalled) { |
|
|
|
return (0,external_wp_i18n_namespaceObject.sprintf)('Add %s.', (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title)); |
|
} |
|
if (isInstalling) { |
|
|
|
return (0,external_wp_i18n_namespaceObject.sprintf)('Installing %s.', (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title)); |
|
} |
|
|
|
|
|
if (ratingCount < 1) { |
|
|
|
return (0,external_wp_i18n_namespaceObject.sprintf)('Install %s.', (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title)); |
|
} |
|
return (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject._n)('Install %1$s. %2$s stars with %3$s review.', 'Install %1$s. %2$s stars with %3$s reviews.', ratingCount), (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title), stars, ratingCount); |
|
} |
|
function DownloadableBlockListItem({ |
|
composite, |
|
item, |
|
onClick |
|
}) { |
|
const { |
|
author, |
|
description, |
|
icon, |
|
rating, |
|
title |
|
} = item; |
|
|
|
const isInstalled = !!(0,external_wp_blocks_namespaceObject.getBlockType)(item.name); |
|
const { |
|
hasNotice, |
|
isInstalling, |
|
isInstallable |
|
} = (0,external_wp_data_namespaceObject.useSelect)(select => { |
|
const { |
|
getErrorNoticeForBlock, |
|
isInstalling: isBlockInstalling |
|
} = select(store); |
|
const notice = getErrorNoticeForBlock(item.id); |
|
const hasFatal = notice && notice.isFatal; |
|
return { |
|
hasNotice: !!notice, |
|
isInstalling: isBlockInstalling(item.id), |
|
isInstallable: !hasFatal |
|
}; |
|
}, [item]); |
|
let statusText = ''; |
|
if (isInstalled) { |
|
statusText = (0,external_wp_i18n_namespaceObject.__)('Installed!'); |
|
} else if (isInstalling) { |
|
statusText = (0,external_wp_i18n_namespaceObject.__)('Installing…'); |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(CompositeItem, { |
|
render: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Button, { |
|
__experimentalIsFocusable: true, |
|
type: "button", |
|
role: "option", |
|
className: "block-directory-downloadable-block-list-item", |
|
isBusy: isInstalling, |
|
onClick: event => { |
|
event.preventDefault(); |
|
onClick(); |
|
}, |
|
label: getDownloadableBlockLabel(item, { |
|
hasNotice, |
|
isInstalled, |
|
isInstalling |
|
}), |
|
showTooltip: true, |
|
tooltipPosition: "top center" |
|
}), |
|
store: composite, |
|
disabled: isInstalling || !isInstallable, |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-directory-downloadable-block-list-item__icon", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)(downloadable_block_icon, { |
|
icon: icon, |
|
title: title |
|
}), isInstalling ? (0,external_ReactJSXRuntime_namespaceObject.jsx)("span", { |
|
className: "block-directory-downloadable-block-list-item__spinner", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Spinner, {}) |
|
}) : (0,external_ReactJSXRuntime_namespaceObject.jsx)(block_ratings, { |
|
rating: rating |
|
})] |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsxs)("span", { |
|
className: "block-directory-downloadable-block-list-item__details", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("span", { |
|
className: "block-directory-downloadable-block-list-item__title", |
|
children: (0,external_wp_element_namespaceObject.createInterpolateElement)((0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('%1$s <span>by %2$s</span>'), (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(title), author), { |
|
span: (0,external_ReactJSXRuntime_namespaceObject.jsx)("span", { |
|
className: "block-directory-downloadable-block-list-item__author" |
|
}) |
|
}) |
|
}), hasNotice ? (0,external_ReactJSXRuntime_namespaceObject.jsx)(downloadable_block_notice, { |
|
block: item |
|
}) : (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("span", { |
|
className: "block-directory-downloadable-block-list-item__desc", |
|
children: !!statusText ? statusText : (0,external_wp_htmlEntities_namespaceObject.decodeEntities)(description) |
|
}), isInstallable && !(isInstalled || isInstalling) && (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.VisuallyHidden, { |
|
children: (0,external_wp_i18n_namespaceObject.__)('Install block') |
|
})] |
|
})] |
|
})] |
|
}); |
|
} |
|
const downloadable_block_list_item = (DownloadableBlockListItem); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { |
|
CompositeV2: Composite, |
|
useCompositeStoreV2: useCompositeStore |
|
} = unlock(external_wp_components_namespaceObject.privateApis); |
|
const noop = () => {}; |
|
function DownloadableBlocksList({ |
|
items, |
|
onHover = noop, |
|
onSelect |
|
}) { |
|
const composite = useCompositeStore(); |
|
const { |
|
installBlockType |
|
} = (0,external_wp_data_namespaceObject.useDispatch)(store); |
|
if (!items.length) { |
|
return null; |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(Composite, { |
|
store: composite, |
|
role: "listbox", |
|
className: "block-directory-downloadable-blocks-list", |
|
"aria-label": (0,external_wp_i18n_namespaceObject.__)('Blocks available for install'), |
|
children: items.map(item => { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(downloadable_block_list_item, { |
|
composite: composite, |
|
onClick: () => { |
|
|
|
|
|
|
|
if ((0,external_wp_blocks_namespaceObject.getBlockType)(item.name)) { |
|
onSelect(item); |
|
} else { |
|
installBlockType(item).then(success => { |
|
if (success) { |
|
onSelect(item); |
|
} |
|
}); |
|
} |
|
onHover(null); |
|
}, |
|
onHover: onHover, |
|
item: item |
|
}, item.id); |
|
}) |
|
}); |
|
} |
|
const downloadable_blocks_list = (DownloadableBlocksList); |
|
|
|
; |
|
const external_wp_a11y_namespaceObject = window["wp"]["a11y"]; |
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function DownloadableBlocksInserterPanel({ |
|
children, |
|
downloadableItems, |
|
hasLocalBlocks |
|
}) { |
|
const count = downloadableItems.length; |
|
(0,external_wp_element_namespaceObject.useEffect)(() => { |
|
(0,external_wp_a11y_namespaceObject.speak)((0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject._n)('%d additional block is available to install.', '%d additional blocks are available to install.', count), count)); |
|
}, [count]); |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [!hasLocalBlocks && (0,external_ReactJSXRuntime_namespaceObject.jsx)("p", { |
|
className: "block-directory-downloadable-blocks-panel__no-local", |
|
children: (0,external_wp_i18n_namespaceObject.__)('No results available from your installed blocks.') |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-editor-inserter__quick-inserter-separator" |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-directory-downloadable-blocks-panel", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-directory-downloadable-blocks-panel__header", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("h2", { |
|
className: "block-directory-downloadable-blocks-panel__title", |
|
children: (0,external_wp_i18n_namespaceObject.__)('Available to install') |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("p", { |
|
className: "block-directory-downloadable-blocks-panel__description", |
|
children: (0,external_wp_i18n_namespaceObject.__)('Select a block to install and add it to your post.') |
|
})] |
|
}), children] |
|
})] |
|
}); |
|
} |
|
const inserter_panel = (DownloadableBlocksInserterPanel); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
const blockDefault = (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.SVG, { |
|
xmlns: "http://www.w3.org/2000/svg", |
|
viewBox: "0 0 24 24", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_primitives_namespaceObject.Path, { |
|
d: "M19 8h-1V6h-5v2h-2V6H6v2H5c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-8c0-1.1-.9-2-2-2zm.5 10c0 .3-.2.5-.5.5H5c-.3 0-.5-.2-.5-.5v-8c0-.3.2-.5.5-.5h14c.3 0 .5.2.5.5v8z" |
|
}) |
|
}); |
|
const block_default = (blockDefault); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function DownloadableBlocksNoResults() { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-editor-inserter__no-results", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)(icon, { |
|
className: "block-editor-inserter__no-results-icon", |
|
icon: block_default |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("p", { |
|
children: (0,external_wp_i18n_namespaceObject.__)('No results found.') |
|
})] |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-editor-inserter__tips", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_wp_components_namespaceObject.Tip, { |
|
children: [(0,external_wp_i18n_namespaceObject.__)('Interested in creating your own block?'), (0,external_ReactJSXRuntime_namespaceObject.jsx)("br", {}), (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_wp_components_namespaceObject.ExternalLink, { |
|
href: "https://developer.wordpress.org/block-editor/", |
|
children: [(0,external_wp_i18n_namespaceObject.__)('Get started here'), "."] |
|
})] |
|
}) |
|
})] |
|
}); |
|
} |
|
const no_results = (DownloadableBlocksNoResults); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const EMPTY_ARRAY = []; |
|
const useDownloadableBlocks = filterValue => (0,external_wp_data_namespaceObject.useSelect)(select => { |
|
const { |
|
getDownloadableBlocks, |
|
isRequestingDownloadableBlocks, |
|
getInstalledBlockTypes |
|
} = select(store); |
|
const hasPermission = select(external_wp_coreData_namespaceObject.store).canUser('read', 'block-directory/search'); |
|
let downloadableBlocks = EMPTY_ARRAY; |
|
if (hasPermission) { |
|
downloadableBlocks = getDownloadableBlocks(filterValue); |
|
|
|
|
|
const installedBlockTypes = getInstalledBlockTypes(); |
|
const installableBlocks = downloadableBlocks.filter(({ |
|
name |
|
}) => { |
|
|
|
|
|
|
|
|
|
const isJustInstalled = installedBlockTypes.some(blockType => blockType.name === name); |
|
const isPreviouslyInstalled = (0,external_wp_blocks_namespaceObject.getBlockType)(name); |
|
return isJustInstalled || !isPreviouslyInstalled; |
|
}); |
|
|
|
|
|
if (installableBlocks.length !== downloadableBlocks.length) { |
|
downloadableBlocks = installableBlocks; |
|
} |
|
|
|
|
|
if (downloadableBlocks.length === 0) { |
|
downloadableBlocks = EMPTY_ARRAY; |
|
} |
|
} |
|
return { |
|
hasPermission, |
|
downloadableBlocks, |
|
isLoading: isRequestingDownloadableBlocks(filterValue) |
|
}; |
|
}, [filterValue]); |
|
function DownloadableBlocksPanel({ |
|
onSelect, |
|
onHover, |
|
hasLocalBlocks, |
|
isTyping, |
|
filterValue |
|
}) { |
|
const { |
|
hasPermission, |
|
downloadableBlocks, |
|
isLoading |
|
} = useDownloadableBlocks(filterValue); |
|
if (hasPermission === undefined || isLoading || isTyping) { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [hasPermission && !hasLocalBlocks && (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("p", { |
|
className: "block-directory-downloadable-blocks-panel__no-local", |
|
children: (0,external_wp_i18n_namespaceObject.__)('No results available from your installed blocks.') |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-editor-inserter__quick-inserter-separator" |
|
})] |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-directory-downloadable-blocks-panel has-blocks-loading", |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Spinner, {}) |
|
})] |
|
}); |
|
} |
|
if (false === hasPermission) { |
|
if (!hasLocalBlocks) { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(no_results, {}); |
|
} |
|
return null; |
|
} |
|
if (downloadableBlocks.length === 0) { |
|
return hasLocalBlocks ? null : (0,external_ReactJSXRuntime_namespaceObject.jsx)(no_results, {}); |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(inserter_panel, { |
|
downloadableItems: downloadableBlocks, |
|
hasLocalBlocks: hasLocalBlocks, |
|
children: (0,external_ReactJSXRuntime_namespaceObject.jsx)(downloadable_blocks_list, { |
|
items: downloadableBlocks, |
|
onSelect: onSelect, |
|
onHover: onHover |
|
}) |
|
}); |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function InserterMenuDownloadableBlocksPanel() { |
|
const [debouncedFilterValue, setFilterValue] = (0,external_wp_element_namespaceObject.useState)(''); |
|
const debouncedSetFilterValue = (0,external_wp_compose_namespaceObject.debounce)(setFilterValue, 400); |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_blockEditor_namespaceObject.__unstableInserterMenuExtension, { |
|
children: ({ |
|
onSelect, |
|
onHover, |
|
filterValue, |
|
hasItems |
|
}) => { |
|
if (debouncedFilterValue !== filterValue) { |
|
debouncedSetFilterValue(filterValue); |
|
} |
|
if (!debouncedFilterValue) { |
|
return null; |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(DownloadableBlocksPanel, { |
|
onSelect: onSelect, |
|
onHover: onHover, |
|
filterValue: debouncedFilterValue, |
|
hasLocalBlocks: hasItems, |
|
isTyping: filterValue !== debouncedFilterValue |
|
}); |
|
} |
|
}); |
|
} |
|
const inserter_menu_downloadable_blocks_panel = (InserterMenuDownloadableBlocksPanel); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function CompactList({ |
|
items |
|
}) { |
|
if (!items.length) { |
|
return null; |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)("ul", { |
|
className: "block-directory-compact-list", |
|
children: items.map(({ |
|
icon, |
|
id, |
|
title, |
|
author |
|
}) => (0,external_ReactJSXRuntime_namespaceObject.jsxs)("li", { |
|
className: "block-directory-compact-list__item", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)(downloadable_block_icon, { |
|
icon: icon, |
|
title: title |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
className: "block-directory-compact-list__item-details", |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-directory-compact-list__item-title", |
|
children: title |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)("div", { |
|
className: "block-directory-compact-list__item-author", |
|
children: (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('By %s'), author) |
|
})] |
|
})] |
|
}, id)) |
|
}); |
|
} |
|
|
|
; |
|
var _window$wp$editor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { |
|
PluginPrePublishPanel |
|
} = (_window$wp$editor = window?.wp?.editor) !== null && _window$wp$editor !== void 0 ? _window$wp$editor : {}; |
|
function InstalledBlocksPrePublishPanel() { |
|
const newBlockTypes = (0,external_wp_data_namespaceObject.useSelect)(select => select(store).getNewBlockTypes(), []); |
|
if (!newBlockTypes.length) { |
|
return null; |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(PluginPrePublishPanel, { |
|
icon: block_default, |
|
title: (0,external_wp_i18n_namespaceObject.sprintf)( |
|
|
|
(0,external_wp_i18n_namespaceObject._n)('Added: %d block', 'Added: %d blocks', newBlockTypes.length), newBlockTypes.length), |
|
initialOpen: true, |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)("p", { |
|
className: "installed-blocks-pre-publish-panel__copy", |
|
children: (0,external_wp_i18n_namespaceObject._n)('The following block has been added to your site.', 'The following blocks have been added to your site.', newBlockTypes.length) |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)(CompactList, { |
|
items: newBlockTypes |
|
})] |
|
}); |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function InstallButton({ |
|
attributes, |
|
block, |
|
clientId |
|
}) { |
|
const isInstallingBlock = (0,external_wp_data_namespaceObject.useSelect)(select => select(store).isInstalling(block.id), [block.id]); |
|
const { |
|
installBlockType |
|
} = (0,external_wp_data_namespaceObject.useDispatch)(store); |
|
const { |
|
replaceBlock |
|
} = (0,external_wp_data_namespaceObject.useDispatch)(external_wp_blockEditor_namespaceObject.store); |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Button, { |
|
onClick: () => installBlockType(block).then(success => { |
|
if (success) { |
|
const blockType = (0,external_wp_blocks_namespaceObject.getBlockType)(block.name); |
|
const [originalBlock] = (0,external_wp_blocks_namespaceObject.parse)(attributes.originalContent); |
|
if (originalBlock && blockType) { |
|
replaceBlock(clientId, (0,external_wp_blocks_namespaceObject.createBlock)(blockType.name, originalBlock.attributes, originalBlock.innerBlocks)); |
|
} |
|
} |
|
}), |
|
__experimentalIsFocusable: true, |
|
disabled: isInstallingBlock, |
|
isBusy: isInstallingBlock, |
|
variant: "primary", |
|
children: (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('Install %s'), block.title) |
|
}); |
|
} |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const getInstallMissing = OriginalComponent => props => { |
|
const { |
|
originalName |
|
} = props.attributes; |
|
|
|
|
|
const { |
|
block, |
|
hasPermission |
|
} = (0,external_wp_data_namespaceObject.useSelect)(select => { |
|
const { |
|
getDownloadableBlocks |
|
} = select(store); |
|
const blocks = getDownloadableBlocks('block:' + originalName).filter(({ |
|
name |
|
}) => originalName === name); |
|
return { |
|
hasPermission: select(external_wp_coreData_namespaceObject.store).canUser('read', 'block-directory/search'), |
|
block: blocks.length && blocks[0] |
|
}; |
|
}, [originalName]); |
|
|
|
|
|
if (!hasPermission || !block) { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(OriginalComponent, { |
|
...props |
|
}); |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsx)(ModifiedWarning, { |
|
...props, |
|
originalBlock: block |
|
}); |
|
}; |
|
const ModifiedWarning = ({ |
|
originalBlock, |
|
...props |
|
}) => { |
|
const { |
|
originalName, |
|
originalUndelimitedContent, |
|
clientId |
|
} = props.attributes; |
|
const { |
|
replaceBlock |
|
} = (0,external_wp_data_namespaceObject.useDispatch)(external_wp_blockEditor_namespaceObject.store); |
|
const convertToHTML = () => { |
|
replaceBlock(props.clientId, (0,external_wp_blocks_namespaceObject.createBlock)('core/html', { |
|
content: originalUndelimitedContent |
|
})); |
|
}; |
|
const hasContent = !!originalUndelimitedContent; |
|
const hasHTMLBlock = (0,external_wp_data_namespaceObject.useSelect)(select => { |
|
const { |
|
canInsertBlockType, |
|
getBlockRootClientId |
|
} = select(external_wp_blockEditor_namespaceObject.store); |
|
return canInsertBlockType('core/html', getBlockRootClientId(clientId)); |
|
}, [clientId]); |
|
let messageHTML = (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('Your site doesn’t include support for the %s block. You can try installing the block or remove it entirely.'), originalBlock.title || originalName); |
|
const actions = [(0,external_ReactJSXRuntime_namespaceObject.jsx)(InstallButton, { |
|
block: originalBlock, |
|
attributes: props.attributes, |
|
clientId: props.clientId |
|
}, "install")]; |
|
if (hasContent && hasHTMLBlock) { |
|
messageHTML = (0,external_wp_i18n_namespaceObject.sprintf)( |
|
(0,external_wp_i18n_namespaceObject.__)('Your site doesn’t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.'), originalBlock.title || originalName); |
|
actions.push( (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.Button, { |
|
onClick: convertToHTML, |
|
variant: "tertiary", |
|
children: (0,external_wp_i18n_namespaceObject.__)('Keep as HTML') |
|
}, "convert")); |
|
} |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", { |
|
...(0,external_wp_blockEditor_namespaceObject.useBlockProps)(), |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_blockEditor_namespaceObject.Warning, { |
|
actions: actions, |
|
children: messageHTML |
|
}), (0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_element_namespaceObject.RawHTML, { |
|
children: originalUndelimitedContent |
|
})] |
|
}); |
|
}; |
|
const get_install_missing = (getInstallMissing); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(0,external_wp_plugins_namespaceObject.registerPlugin)('block-directory', { |
|
render() { |
|
return (0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_ReactJSXRuntime_namespaceObject.Fragment, { |
|
children: [(0,external_ReactJSXRuntime_namespaceObject.jsx)(AutoBlockUninstaller, {}), (0,external_ReactJSXRuntime_namespaceObject.jsx)(inserter_menu_downloadable_blocks_panel, {}), (0,external_ReactJSXRuntime_namespaceObject.jsx)(InstalledBlocksPrePublishPanel, {})] |
|
}); |
|
} |
|
}); |
|
(0,external_wp_hooks_namespaceObject.addFilter)('blocks.registerBlockType', 'block-directory/fallback', (settings, name) => { |
|
if (name !== 'core/missing') { |
|
return settings; |
|
} |
|
settings.edit = get_install_missing(settings.edit); |
|
return settings; |
|
}); |
|
|
|
; |
|
|
|
|
|
|
|
|
|
|
|
|
|
(window.wp = window.wp || {}).blockDirectory = __webpack_exports__; |
|
})() |
|
; |