diff --git a/blocks/focused-schema/build/block.json b/blocks/focused-schema/build/block.json index 10aa9ba..c08e5f2 100644 --- a/blocks/focused-schema/build/block.json +++ b/blocks/focused-schema/build/block.json @@ -21,12 +21,32 @@ "attribute": "alt", "default": "" }, + "showDescription": { + "type": "boolean", + "default": false + }, + "showLegend": { + "type": "boolean", + "default": false + }, "coverUrl": { "type": "string", "source": "attribute", "selector": "img", "attribute": "src" }, + "coverDescription": { + "type": "string", + "source": "attribute", + "selector": "img", + "attribute": "data-description" + }, + "coverLegend": { + "type": "string", + "source": "attribute", + "selector": "img", + "attribute": "data-legend" + }, "focusBullets": { "type": "array", "default": [] diff --git a/blocks/focused-schema/build/focus-point/index.asset.php b/blocks/focused-schema/build/focus-point/index.asset.php index 6e9bab9..d8eade8 100644 --- a/blocks/focused-schema/build/focus-point/index.asset.php +++ b/blocks/focused-schema/build/focus-point/index.asset.php @@ -1 +1 @@ - array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '03f0f2272eca0b9ca8ee'); + array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n'), 'version' => '34caa5ee1bac3c842041'); diff --git a/blocks/focused-schema/build/focus-point/index.css b/blocks/focused-schema/build/focus-point/index.css index 92bdee6..a3a1928 100644 --- a/blocks/focused-schema/build/focus-point/index.css +++ b/blocks/focused-schema/build/focus-point/index.css @@ -1,4 +1,4 @@ -/*!****************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/editor.scss ***! - \****************************************************************************************************************************************************************************************************************************************************/ +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/editor.scss ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ diff --git a/blocks/focused-schema/build/focus-point/index.js b/blocks/focused-schema/build/focus-point/index.js index 68c690a..d3e84e3 100644 --- a/blocks/focused-schema/build/focus-point/index.js +++ b/blocks/focused-schema/build/focus-point/index.js @@ -12,8 +12,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ Edit) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n"); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_i18n__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); @@ -42,6 +42,19 @@ function Edit({ focusIndex } = attributes; function handleChangeFocusPosition(focusPosition) { + console.log(focusPosition); + if (focusPosition.x < 0.05) { + focusPosition.x = 0.05; + } + if (focusPosition.x > 0.95) { + focusPosition.x = 0.95; + } + if (focusPosition.y < 0.02) { + focusPosition.y = 0.02; + } + if (focusPosition.y > 0.98) { + focusPosition.y = 0.98; + } setAttributes({ focusPosition }); @@ -56,12 +69,12 @@ function Edit({ focusCaptionDescription }); } - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.InspectorControls, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.PanelBody, { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(react__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.InspectorControls, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.PanelBody, { className: "focus-point-modification-pannel", title: "Gestion du points de focus" - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { className: "homegrade-blocks-focus-point-bullet" - }, focusIndex), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextControl, { + }, focusIndex), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextControl, { placeholder: "Ins\xE9rer le titre de votre point focus", label: "Titre du point focus", value: focusTitle !== "Légende Sans titre" ? focusTitle : null, @@ -69,14 +82,14 @@ function Edit({ onChange: value => { handleChangeTitle(value); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextareaControl, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextareaControl, { label: "Description du point focus", value: focusCaptionDescription, rows: 3, onChange: description => { handleChangeCaptionDescription(description); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.FocalPointPicker, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.FocalPointPicker, { url: coverUrl !== null && coverUrl !== void 0 ? coverUrl : null, dimensions: { width: 400, @@ -86,18 +99,18 @@ function Edit({ onChange: focalPoint => { handleChangeFocusPosition(focalPoint); } - }))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { + }))), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { ...(0,_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.useBlockProps)({ className: `homegrade-blocks-focus-point-caption` }) - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { tagName: "span", className: "focus-point-title", value: focusTitle, onChange: value => { handleChangeTitle(value); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { tagName: "span", value: focusCaptionDescription, onChange: handleChangeCaptionDescription @@ -113,8 +126,8 @@ function Edit({ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks"); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./style.scss */ "./src/focus-point/style.scss"); @@ -131,20 +144,20 @@ __webpack_require__.r(__webpack_exports__); title: _block_json__WEBPACK_IMPORTED_MODULE_3__.title, icon: { foreground: "#DF1E1E", - src: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { + src: (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { id: "Capa_1", "enable-background": "new 0 0 512 512", height: "512", viewBox: "0 0 512 512", width: "512", xmlns: "http://www.w3.org/2000/svg" - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m100.001 255.776c0-80.958 61.992-147.702 140.999-155.275v-100.277c-62.739 3.601-121.221 29.734-166.02 74.533-48.351 48.352-74.98 112.64-74.98 181.019 0 43.893 10.989 86.092 31.636 123.48l85.806-51.86c-11.138-21.46-17.441-45.817-17.441-71.62z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m256 411.776c-49.473 0-93.636-23.154-122.236-59.189l-86.098 52.037c8.139 11.341 17.249 22.106 27.315 32.173 48.352 48.352 112.64 74.98 181.02 74.98s132.667-26.629 181.02-74.98c11.293-11.293 21.384-23.465 30.245-36.346l-87.133-50.306c-28.524 37.426-73.552 61.631-124.133 61.631z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m411.999 255.776c0 24.704-5.781 48.08-16.048 68.86l86.835 50.134c19.084-36.263 29.214-76.848 29.214-118.994 0-68.38-26.629-132.667-74.98-181.02-44.799-44.798-103.281-70.931-166.02-74.532v100.278c79.007 7.573 140.999 74.316 140.999 155.274z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("circle", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("circle", { cx: "256", cy: "255.776", r: "103.902" @@ -168,8 +181,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ save) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__); @@ -181,15 +194,15 @@ function save({ focusCaptionDescription, focusTitle } = attributes; - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { ..._wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.useBlockProps.save({ className: `homegrade-blocks-focus-point-caption` }) - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { tagName: "span", className: "focus-point-title", value: focusTitle - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { tagName: "span", value: focusCaptionDescription })); @@ -219,6 +232,16 @@ __webpack_require__.r(__webpack_exports__); // extracted by mini-css-extract-plugin +/***/ }), + +/***/ "react": +/*!************************!*\ + !*** external "React" ***! + \************************/ +/***/ ((module) => { + +module.exports = window["React"]; + /***/ }), /***/ "@wordpress/block-editor": @@ -251,16 +274,6 @@ module.exports = window["wp"]["components"]; /***/ }), -/***/ "@wordpress/element": -/*!*********************************!*\ - !*** external ["wp","element"] ***! - \*********************************/ -/***/ ((module) => { - -module.exports = window["wp"]["element"]; - -/***/ }), - /***/ "@wordpress/i18n": /*!******************************!*\ !*** external ["wp","i18n"] ***! @@ -277,7 +290,7 @@ module.exports = window["wp"]["i18n"]; \************************************/ /***/ ((module) => { -module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focus-point","version":"0.1.0","title":"Point de légende ","category":"homegrade-blocks","description":"Point de légende pour titrer ou décrire un point de légende spécifique sur un Schéma ","supports":{"html":false},"textdomain":"focus-point","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","attributes":{"focusTitle":{"type":"string","default":"Légende Sans titre"},"focusCaptionDescription":{"type":"string"},"focusIndex":{"type":"number","default":0},"focusPosition":{"type":"object","default":{"x":0.5,"y":0.5}}}}'); +module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focus-point","version":"0.1.0","title":"Point de légende ","category":"homegrade-blocks","description":"Point de légende pour titrer ou décrire un point de légende spécifique sur un Schéma ","supports":{"html":false},"textdomain":"focus-point","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","attributes":{"focusTitle":{"type":"string","default":"Légende Sans titre"},"focusCaptionDescription":{"type":"string"},"focusIndex":{"type":"number","default":0},"focusPosition":{"type":"object","default":{"x":0.5,"y":0.5}}}}'); /***/ }) @@ -323,9 +336,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ } /******/ var notFulfilled = Infinity; /******/ for (var i = 0; i < deferred.length; i++) { -/******/ var chunkIds = deferred[i][0]; -/******/ var fn = deferred[i][1]; -/******/ var priority = deferred[i][2]; +/******/ var [chunkIds, fn, priority] = deferred[i]; /******/ var fulfilled = true; /******/ for (var j = 0; j < chunkIds.length; j++) { /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) { @@ -411,9 +422,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ /******/ // install a JSONP callback for chunk loading /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => { -/******/ var chunkIds = data[0]; -/******/ var moreModules = data[1]; -/******/ var runtime = data[2]; +/******/ var [chunkIds, moreModules, runtime] = data; /******/ // add "moreModules" to the modules object, /******/ // then flag all "chunkIds" as loaded and fire callback /******/ var moduleId, chunkId, i = 0; @@ -436,7 +445,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ return __webpack_require__.O(result); /******/ } /******/ -/******/ var chunkLoadingGlobal = self["webpackChunkmultiblocks"] = self["webpackChunkmultiblocks"] || []; +/******/ var chunkLoadingGlobal = globalThis["webpackChunkmultiblocks"] = globalThis["webpackChunkmultiblocks"] || []; /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0)); /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal)); /******/ })(); diff --git a/blocks/focused-schema/build/focus-point/index.js.map b/blocks/focused-schema/build/focus-point/index.js.map index 55c2e59..898fc72 100644 --- a/blocks/focused-schema/build/focus-point/index.js.map +++ b/blocks/focused-schema/build/focus-point/index.js.map @@ -1 +1 @@ -{"version":3,"file":"focus-point/index.js","mappings":"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","sources":["webpack://multiblocks/./src/focus-point/edit.js","webpack://multiblocks/./src/focus-point/index.js","webpack://multiblocks/./src/focus-point/save.js","webpack://multiblocks/./src/focus-point/editor.scss","webpack://multiblocks/./src/focus-point/style.scss","webpack://multiblocks/external window [\"wp\",\"blockEditor\"]","webpack://multiblocks/external window [\"wp\",\"blocks\"]","webpack://multiblocks/external window [\"wp\",\"components\"]","webpack://multiblocks/external window [\"wp\",\"element\"]","webpack://multiblocks/external window [\"wp\",\"i18n\"]","webpack://multiblocks/webpack/bootstrap","webpack://multiblocks/webpack/runtime/chunk loaded","webpack://multiblocks/webpack/runtime/compat get default export","webpack://multiblocks/webpack/runtime/define property getters","webpack://multiblocks/webpack/runtime/hasOwnProperty shorthand","webpack://multiblocks/webpack/runtime/make namespace object","webpack://multiblocks/webpack/runtime/jsonp chunk loading","webpack://multiblocks/webpack/before-startup","webpack://multiblocks/webpack/startup","webpack://multiblocks/webpack/after-startup"],"sourcesContent":["import { __ } from \"@wordpress/i18n\";\nimport { useBlockProps } from \"@wordpress/block-editor\";\nimport \"./editor.scss\";\nimport { InspectorControls } from \"@wordpress/block-editor\";\nimport { RichText } from \"@wordpress/block-editor\";\nimport {\n\tPanelBody,\n\tFocalPointPicker,\n\tTextControl,\n\tTextareaControl,\n} from \"@wordpress/components\";\n\nexport default function Edit({\n\tattributes,\n\tsetAttributes,\n\tclientId,\n\t...props\n}) {\n\tconst {\n\t\tfocusTitle,\n\t\tfocusPosition,\n\t\tfocusCaptionDescription,\n\t\tcoverUrl,\n\t\tfocusIndex,\n\t} = attributes;\n\n\tfunction handleChangeFocusPosition(focusPosition) {\n\t\tsetAttributes({ focusPosition });\n\t}\n\tfunction handleChangeTitle(focusTitle) {\n\t\tsetAttributes({ focusTitle: focusTitle });\n\t}\n\tfunction handleChangeCaptionDescription(focusCaptionDescription) {\n\t\tsetAttributes({ focusCaptionDescription });\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t\t\t{focusIndex}\n\t\t\t\t\t
\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeCaptionDescription(description);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeFocusPosition(focalPoint);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\n\t\t\t
\n\t\t\t\n\t\t\t\t {\n\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t\n\t\t\t\t{/* {focusTitle} */}\n\t\t\t\t{/* {focusCaptionDescription} */}\n\t\t\t\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\nimport \"./style.scss\";\nimport metadata from \"./block.json\";\n\nimport Edit from \"./edit\";\nimport Save from \"./save\";\n\nregisterBlockType(metadata.name, {\n\ttitle: metadata.title,\n\ticon: {\n\t\tforeground: \"#DF1E1E\",\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t},\n\n\tsupports: metadata.supports,\n\tattributes: metadata.attributes,\n\tedit: Edit,\n\tsave: Save,\n});\n","import { useBlockProps, RichText, InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst { focusCaptionDescription, focusTitle } = attributes;\n\treturn (\n\t\t\n\t\t\t{/* {focusTitle} */}\n\t\t\t\n\t\t\t\n\t\t\t{/* {focusCaptionDescription} */}\n\t\t\n\t);\n}\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"element\"];","module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"focus-point/index\": 0,\n\t\"./style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkmultiblocks\"] = self[\"webpackChunkmultiblocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"./style-index\"], () => (__webpack_require__(\"./src/focus-point/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","useBlockProps","InspectorControls","RichText","PanelBody","FocalPointPicker","TextControl","TextareaControl","Edit","attributes","setAttributes","clientId","props","focusTitle","focusPosition","focusCaptionDescription","coverUrl","focusIndex","handleChangeFocusPosition","handleChangeTitle","handleChangeCaptionDescription","createElement","Fragment","className","title","placeholder","label","value","onChange","rows","description","url","dimensions","width","height","focalPoint","tagName","registerBlockType","metadata","Save","name","icon","foreground","src","id","viewBox","xmlns","d","cx","cy","r","supports","edit","save","InnerBlocks","Content"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"focus-point/index.js","mappings":"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","sources":["webpack://multiblocks/./src/focus-point/edit.js","webpack://multiblocks/./src/focus-point/index.js","webpack://multiblocks/./src/focus-point/save.js","webpack://multiblocks/./src/focus-point/editor.scss","webpack://multiblocks/./src/focus-point/style.scss","webpack://multiblocks/external window \"React\"","webpack://multiblocks/external window [\"wp\",\"blockEditor\"]","webpack://multiblocks/external window [\"wp\",\"blocks\"]","webpack://multiblocks/external window [\"wp\",\"components\"]","webpack://multiblocks/external window [\"wp\",\"i18n\"]","webpack://multiblocks/webpack/bootstrap","webpack://multiblocks/webpack/runtime/chunk loaded","webpack://multiblocks/webpack/runtime/compat get default export","webpack://multiblocks/webpack/runtime/define property getters","webpack://multiblocks/webpack/runtime/hasOwnProperty shorthand","webpack://multiblocks/webpack/runtime/make namespace object","webpack://multiblocks/webpack/runtime/jsonp chunk loading","webpack://multiblocks/webpack/before-startup","webpack://multiblocks/webpack/startup","webpack://multiblocks/webpack/after-startup"],"sourcesContent":["import { __ } from \"@wordpress/i18n\";\nimport { useBlockProps } from \"@wordpress/block-editor\";\nimport \"./editor.scss\";\nimport { InspectorControls } from \"@wordpress/block-editor\";\nimport { RichText } from \"@wordpress/block-editor\";\nimport {\n\tPanelBody,\n\tFocalPointPicker,\n\tTextControl,\n\tTextareaControl,\n} from \"@wordpress/components\";\n\nexport default function Edit({\n\tattributes,\n\tsetAttributes,\n\tclientId,\n\t...props\n}) {\n\tconst {\n\t\tfocusTitle,\n\t\tfocusPosition,\n\t\tfocusCaptionDescription,\n\t\tcoverUrl,\n\t\tfocusIndex,\n\t} = attributes;\n\n\tfunction handleChangeFocusPosition(focusPosition) {\n\t\tconsole.log(focusPosition);\n\t\tif (focusPosition.x < 0.05) {\n\t\t\tfocusPosition.x = 0.05;\n\t\t}\n\t\tif (focusPosition.x > 0.95) {\n\t\t\tfocusPosition.x = 0.95;\n\t\t}\n\n\t\tif (focusPosition.y < 0.02) {\n\t\t\tfocusPosition.y = 0.02;\n\t\t}\n\t\tif (focusPosition.y > 0.98) {\n\t\t\tfocusPosition.y = 0.98;\n\t\t}\n\t\tsetAttributes({ focusPosition });\n\t}\n\tfunction handleChangeTitle(focusTitle) {\n\t\tsetAttributes({ focusTitle: focusTitle });\n\t}\n\tfunction handleChangeCaptionDescription(focusCaptionDescription) {\n\t\tsetAttributes({ focusCaptionDescription });\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t\t\t{focusIndex}\n\t\t\t\t\t
\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeCaptionDescription(description);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeFocusPosition(focalPoint);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\n\t\t\t
\n\t\t\t\n\t\t\t\t {\n\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t\n\t\t\t\t{/* {focusTitle} */}\n\t\t\t\t{/* {focusCaptionDescription} */}\n\t\t\t\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\nimport \"./style.scss\";\nimport metadata from \"./block.json\";\n\nimport Edit from \"./edit\";\nimport Save from \"./save\";\n\nregisterBlockType(metadata.name, {\n\ttitle: metadata.title,\n\ticon: {\n\t\tforeground: \"#DF1E1E\",\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t},\n\n\tsupports: metadata.supports,\n\tattributes: metadata.attributes,\n\tedit: Edit,\n\tsave: Save,\n});\n","import { useBlockProps, RichText, InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst { focusCaptionDescription, focusTitle } = attributes;\n\treturn (\n\t\t\n\t\t\t{/* {focusTitle} */}\n\t\t\t\n\t\t\t\n\t\t\t{/* {focusCaptionDescription} */}\n\t\t\n\t);\n}\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","module.exports = window[\"React\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"focus-point/index\": 0,\n\t\"./style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkmultiblocks\"] = globalThis[\"webpackChunkmultiblocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"./style-index\"], () => (__webpack_require__(\"./src/focus-point/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","useBlockProps","InspectorControls","RichText","PanelBody","FocalPointPicker","TextControl","TextareaControl","Edit","attributes","setAttributes","clientId","props","focusTitle","focusPosition","focusCaptionDescription","coverUrl","focusIndex","handleChangeFocusPosition","console","log","x","y","handleChangeTitle","handleChangeCaptionDescription","createElement","Fragment","className","title","placeholder","label","value","onChange","rows","description","url","dimensions","width","height","focalPoint","tagName","registerBlockType","metadata","Save","name","icon","foreground","src","id","viewBox","xmlns","d","cx","cy","r","supports","edit","save","InnerBlocks","Content"],"sourceRoot":""} \ No newline at end of file diff --git a/blocks/focused-schema/build/focus-point/style-index.css b/blocks/focused-schema/build/focus-point/style-index.css new file mode 100644 index 0000000..e1b5c22 --- /dev/null +++ b/blocks/focused-schema/build/focus-point/style-index.css @@ -0,0 +1,4 @@ +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/style.scss ***! + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ + diff --git a/blocks/focused-schema/build/index.asset.php b/blocks/focused-schema/build/index.asset.php index e8c29e4..65a8610 100644 --- a/blocks/focused-schema/build/index.asset.php +++ b/blocks/focused-schema/build/index.asset.php @@ -1 +1 @@ - array('wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => '75fb291b951b2d937a72'); + array('react', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '6a19cdd4e70537544dfe'); diff --git a/blocks/focused-schema/build/index.css b/blocks/focused-schema/build/index.css index 5cf0ba8..44ae16b 100644 --- a/blocks/focused-schema/build/index.css +++ b/blocks/focused-schema/build/index.css @@ -1,6 +1,6 @@ -/*!****************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/editor.scss ***! - \****************************************************************************************************************************************************************************************************************************************/ +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/editor.scss ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .homegrade-blocks-focused-schema .block-editor-block-list__layout, .homegrade-blocks-focused-schema .block-editor-block-list__block { position: unset; @@ -34,9 +34,9 @@ margin-top: -16px; margin-bottom: 10px; } -/*!****************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/editor.scss ***! - \****************************************************************************************************************************************************************************************************************************************************/ +/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/editor.scss ***! + \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /*# sourceMappingURL=index.css.map*/ \ No newline at end of file diff --git a/blocks/focused-schema/build/index.js b/blocks/focused-schema/build/index.js index f8732ed..23554dc 100644 --- a/blocks/focused-schema/build/index.js +++ b/blocks/focused-schema/build/index.js @@ -12,22 +12,25 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _editor_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./editor.scss */ "./src/editor.scss"); /* harmony import */ var _focus_point__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./focus-point */ "./src/focus-point/index.js"); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n"); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_wordpress_i18n__WEBPACK_IMPORTED_MODULE_3__); /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @wordpress/data */ "@wordpress/data"); /* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_wordpress_data__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks"); -/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_5__); -/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); -/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__); -/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @wordpress/components */ "@wordpress/components"); -/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_7__); -/* harmony import */ var _wordpress_blob__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @wordpress/blob */ "@wordpress/blob"); -/* harmony import */ var _wordpress_blob__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__); +/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); +/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__); +/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks"); +/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_6__); +/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); +/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__); +/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @wordpress/components */ "@wordpress/components"); +/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__); +/* harmony import */ var _wordpress_blob__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @wordpress/blob */ "@wordpress/blob"); +/* harmony import */ var _wordpress_blob__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__); +/* harmony import */ var _wordpress_icons__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @wordpress/icons */ "../../node_modules/@wordpress/icons/build-module/library/trash.js"); @@ -52,9 +55,14 @@ function Edit({ coverUrl, coverId, coverAlt, + showLegend, + coverLegend, + showDescription, + coverDescription, focusBullets } = attributes; - const [blobUrl, setBlobUrl] = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useState)(); + console.log(coverLegend); + const [blobUrl, setBlobUrl] = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_5__.useState)(); const currentBlockDatas = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_4__.useSelect)(select => { return select("core/block-editor").getBlocksByClientId(clientId)[0]; }); @@ -67,14 +75,18 @@ function Edit({ setAttributes({ coverUrl: undefined, coverId: undefined, + coverDescription: "", + coverLegend: "", coverAlt: "" }); } - function updateImage(image) { + function updateCover(image) { if (!image || !image.url) { setAttributes({ coverUrl: undefined, coverId: undefined, + coverDescription: "", + coverLegend: "", coverAlt: "" }); return; @@ -82,7 +94,9 @@ function Edit({ setAttributes({ coverUrl: image.url, coverId: image.id, - coverAlt: image.alt + coverAlt: image.alt, + coverDescription: image.description, + coverLegend: image.caption }); } function passCoverUrlToChildren() { @@ -119,7 +133,7 @@ function Edit({ } function insertFocusPointBlock() { const index = children && children.length ? children.length : 0; - const newBlock = (0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_5__.createBlock)("homegrade-content-blocks/focus-point", {}); + const newBlock = (0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_6__.createBlock)("homegrade-content-blocks/focus-point", {}); (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_4__.dispatch)("core/block-editor").insertBlocks(newBlock, index, clientId); } function handleBulletClick(index) { @@ -128,8 +142,18 @@ function Edit({ (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_4__.dispatch)("core/block-editor").selectBlock(currentBlockDatas.innerBlocks[index].clientId); } } + function handleShowDescription() { + setAttributes({ + showDescription: !showDescription + }); + } + function handleShowLegend() { + setAttributes({ + showLegend: !showLegend + }); + } const renderedFocusPointBullets = focusBullets.map((focusBullet, index) => { - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { "data-focus-bullet-title": focusBullet.title, className: "homegrade-blocks-focus-point-bullet", style: { @@ -137,87 +161,111 @@ function Edit({ left: `${focusBullet.x * 100}%` }, onClick: () => handleBulletClick(index) - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { className: "homegrade-blocks-focus-point-bullet__index" }, index + 1)); }); - (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { + (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => { updateFocusPointBullets(); - if (!coverId && (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__.isBlobURL)(coverUrl)) { + if (!coverId && (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__.isBlobURL)(coverUrl)) { setAttributes({ coverUrl: undefined, coverAlt: "" }); } }, []); - (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { + (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => { // Fonction de clean du BLOB URL qui se lance à chaque changement de coverUrl - if ((0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__.isBlobURL)(coverUrl)) { + if ((0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__.isBlobURL)(coverUrl)) { // Si la cover est une blob, c'est que ça upload donc on met cette url dans le state setBlobUrl(coverUrl); } else { // Si la cover en'est plus une blob, c'est que l'upload est terminé, on revoke la blob et on clean le state - (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__.revokeBlobURL)(blobUrl); // On utilise la valeur stocké dans le state pour revoke l'url + (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__.revokeBlobURL)(blobUrl); // On utilise la valeur stocké dans le state pour revoke l'url setBlobUrl(); } passCoverUrlToChildren(); }, [coverUrl]); - (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { + (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => { updateFocusPointBullets(); passCoverUrlToChildren(); }, [children]); - (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => { + (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_5__.useEffect)(() => { passIndexToChildren(); }, [currentBlockDatas]); - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.InspectorControls, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_7__.PanelBody, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_7__.Button, { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(react__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__.InspectorControls, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.PanelBody, { + title: "Points de l\xE9gende" + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.Button, { variant: "primary", onClick: () => { insertFocusPointBlock(); } - }, "Ajouter un point L\xE9gende"))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.BlockControls, null, coverUrl && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.MediaReplaceFlow, { - group: "inline", - name: "Remplacer l'image", - disableMediaButtons: coverUrl, - icon: "trash", - onSelect: updateImage, - onError: onUploadError, - accept: "image/*" // On upload Allow only images - , - allowedTypes: ["image"] // Onlibrary Allow only images - , - notices: noticeUI // En cas d'erreur d'upload - , - mediaId: coverId, - mediaURL: coverUrl, - className: "media-button-replacer" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_7__.ToolbarButton, { - icon: "trash", - title: "Supprimer l'image", - onClick: removeCoverImg - }))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.MediaPlaceholder, { - disableMediaButtons: coverUrl, - icon: "admin-appearance", - onSelect: updateImage, - onError: onUploadError, - accept: "image/*" // On upload Allow only images - , - allowedTypes: ["image"] // Onlibrary Allow only images - , - notices: noticeUI // En cas d'erreur d'upload - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", { - ...(0,_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.useBlockProps)({ - className: `homegrade-blocks-focused-schema` - }) - }, coverUrl && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("figure", { - className: `picture-container ${(0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__.isBlobURL)(coverUrl) ? "is-loading" : ""}` - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("img", { + }, "Ajouter un point L\xE9gende")), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.PanelBody, { + title: "Source de l'image / Sch\xE9ma", + className: "homegrade-blocks-components-image__panel-body " + }, coverUrl && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("img", { src: coverUrl, alt: coverAlt - }), renderedFocusPointBullets, (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_8__.isBlobURL)(coverUrl) && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_7__.Spinner, null)), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("figcaption", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("ol", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_6__.InnerBlocks, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { + className: "media-replace-container" + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__.MediaReplaceFlow, { + mediaId: coverId, + mediaUrl: coverUrl, + allowedTypes: ["image"], + accept: "image/*", + onSelect: updateCover, + name: !coverUrl ? (0,_wordpress_i18n__WEBPACK_IMPORTED_MODULE_3__.__)("Ajouter", "homegrade-blocks__texte-backoffice") : (0,_wordpress_i18n__WEBPACK_IMPORTED_MODULE_3__.__)("Remplacer", "homegrade-blocks__texte-backoffice") + }), coverUrl && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.Button, { + className: "custom-flow-button", + variant: "primary", + icon: _wordpress_icons__WEBPACK_IMPORTED_MODULE_10__["default"], + label: "Supprimer", + onClick: removeCoverImg + })))), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.PanelBody, { + title: "Param\xE8tres", + className: "homegrade-blocks-components-image__panel-body " + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.ToggleControl, { + label: "Afficher la description", + checked: showDescription, + onChange: handleShowDescription, + help: "Coch\xE9, la description sera ajout\xE9 sous l'image" + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.ToggleControl, { + label: "Afficher la l\xE9gende", + checked: showLegend, + onChange: handleShowLegend, + help: "Coch\xE9, la l\xE9gende (caption) sera ajout\xE9 sous l'image" + }))), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__.MediaPlaceholder, { + disableMediaButtons: coverUrl, + icon: "admin-appearance", + onSelect: updateCover, + onError: onUploadError, + accept: "image/*" // On upload Allow only images + , + allowedTypes: ["image"] // Onlibrary Allow only images + , + notices: noticeUI // En cas d'erreur d'upload + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", { + ...(0,_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__.useBlockProps)({ + className: `homegrade-blocks-focused-schema` + }) + }, coverUrl && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("figure", { + className: `picture-container ${(0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__.isBlobURL)(coverUrl) ? "is-loading" : ""}` + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("img", { + src: coverUrl, + alt: coverAlt, + "data-description": coverDescription, + "data-legend": coverLegend + }), renderedFocusPointBullets, (0,_wordpress_blob__WEBPACK_IMPORTED_MODULE_9__.isBlobURL)(coverUrl) && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.Spinner, null)), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("figcaption", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", { + className: "description-legend" + }, showLegend && coverLegend && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + className: "legend" + }, coverLegend), showDescription && coverDescription && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + className: "description" + }, coverDescription)), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("ol", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_7__.InnerBlocks, { allowedBlocks: ["homegrade-content-blocks/focus-point"] }))))); } -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((0,_wordpress_components__WEBPACK_IMPORTED_MODULE_7__.withNotices)(Edit)); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((0,_wordpress_components__WEBPACK_IMPORTED_MODULE_8__.withNotices)(Edit)); /***/ }), @@ -231,8 +279,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ Edit) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n"); /* harmony import */ var _wordpress_i18n__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_i18n__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); @@ -261,6 +309,19 @@ function Edit({ focusIndex } = attributes; function handleChangeFocusPosition(focusPosition) { + console.log(focusPosition); + if (focusPosition.x < 0.05) { + focusPosition.x = 0.05; + } + if (focusPosition.x > 0.95) { + focusPosition.x = 0.95; + } + if (focusPosition.y < 0.02) { + focusPosition.y = 0.02; + } + if (focusPosition.y > 0.98) { + focusPosition.y = 0.98; + } setAttributes({ focusPosition }); @@ -275,12 +336,12 @@ function Edit({ focusCaptionDescription }); } - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.InspectorControls, null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.PanelBody, { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(react__WEBPACK_IMPORTED_MODULE_0__.Fragment, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.InspectorControls, null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.PanelBody, { className: "focus-point-modification-pannel", title: "Gestion du points de focus" - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { className: "homegrade-blocks-focus-point-bullet" - }, focusIndex), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextControl, { + }, focusIndex), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextControl, { placeholder: "Ins\xE9rer le titre de votre point focus", label: "Titre du point focus", value: focusTitle !== "Légende Sans titre" ? focusTitle : null, @@ -288,14 +349,14 @@ function Edit({ onChange: value => { handleChangeTitle(value); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextareaControl, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.TextareaControl, { label: "Description du point focus", value: focusCaptionDescription, rows: 3, onChange: description => { handleChangeCaptionDescription(description); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.FocalPointPicker, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_components__WEBPACK_IMPORTED_MODULE_4__.FocalPointPicker, { url: coverUrl !== null && coverUrl !== void 0 ? coverUrl : null, dimensions: { width: 400, @@ -305,18 +366,18 @@ function Edit({ onChange: focalPoint => { handleChangeFocusPosition(focalPoint); } - }))), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { + }))), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { ...(0,_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.useBlockProps)({ className: `homegrade-blocks-focus-point-caption` }) - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { tagName: "span", className: "focus-point-title", value: focusTitle, onChange: value => { handleChangeTitle(value); } - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__.RichText, { tagName: "span", value: focusCaptionDescription, onChange: handleChangeCaptionDescription @@ -332,8 +393,8 @@ function Edit({ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks"); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./style.scss */ "./src/focus-point/style.scss"); @@ -350,20 +411,20 @@ __webpack_require__.r(__webpack_exports__); title: _block_json__WEBPACK_IMPORTED_MODULE_3__.title, icon: { foreground: "#DF1E1E", - src: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { + src: (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { id: "Capa_1", "enable-background": "new 0 0 512 512", height: "512", viewBox: "0 0 512 512", width: "512", xmlns: "http://www.w3.org/2000/svg" - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m100.001 255.776c0-80.958 61.992-147.702 140.999-155.275v-100.277c-62.739 3.601-121.221 29.734-166.02 74.533-48.351 48.352-74.98 112.64-74.98 181.019 0 43.893 10.989 86.092 31.636 123.48l85.806-51.86c-11.138-21.46-17.441-45.817-17.441-71.62z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m256 411.776c-49.473 0-93.636-23.154-122.236-59.189l-86.098 52.037c8.139 11.341 17.249 22.106 27.315 32.173 48.352 48.352 112.64 74.98 181.02 74.98s132.667-26.629 181.02-74.98c11.293-11.293 21.384-23.465 30.245-36.346l-87.133-50.306c-28.524 37.426-73.552 61.631-124.133 61.631z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m411.999 255.776c0 24.704-5.781 48.08-16.048 68.86l86.835 50.134c19.084-36.263 29.214-76.848 29.214-118.994 0-68.38-26.629-132.667-74.98-181.02-44.799-44.798-103.281-70.931-166.02-74.532v100.278c79.007 7.573 140.999 74.316 140.999 155.274z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("circle", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("circle", { cx: "256", cy: "255.776", r: "103.902" @@ -387,8 +448,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ save) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__); @@ -400,15 +461,15 @@ function save({ focusCaptionDescription, focusTitle } = attributes; - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("li", { ..._wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.useBlockProps.save({ className: `homegrade-blocks-focus-point-caption` }) - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { tagName: "span", className: "focus-point-title", value: focusTitle - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.RichText.Content, { tagName: "span", value: focusCaptionDescription })); @@ -423,8 +484,8 @@ function save({ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks"); /* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var _style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./style.scss */ "./src/style.scss"); @@ -439,19 +500,19 @@ __webpack_require__.r(__webpack_exports__); (0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__.registerBlockType)(_block_json__WEBPACK_IMPORTED_MODULE_5__.name, { icon: { - src: (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { + src: (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", { id: "Capa_1", height: "512", viewBox: "0 0 512 512", width: "512", xmlns: "http://www.w3.org/2000/svg" - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m443.093 324.907c0-103.163-83.93-187.092-187.093-187.092s-187.093 83.929-187.093 187.092c0 42.261 14.092 81.289 37.814 112.647-6.216-16.99-9.611-35.328-9.611-54.444 0-87.612 71.277-158.89 158.89-158.89s158.89 71.277 158.89 158.89c0 19.116-3.395 37.454-9.611 54.444 23.722-31.358 37.814-70.386 37.814-112.647z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m384.89 383.11c0-71.07-57.819-128.89-128.89-128.89s-128.89 57.82-128.89 128.89c0 41.62 19.834 78.688 50.541 102.268-2.706-8.157-4.192-16.865-4.192-25.919 0-45.514 37.027-82.542 82.541-82.542s82.541 37.028 82.541 82.542c0 9.054-1.486 17.762-4.192 25.919 30.706-23.58 50.541-60.648 50.541-102.268z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m308.541 459.459c0-28.972-23.569-52.542-52.541-52.542s-52.541 23.57-52.541 52.542 23.569 52.541 52.541 52.541 52.541-23.569 52.541-52.541z" - }), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { + }), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", { d: "m512 256c0-68.38-26.629-132.667-74.98-181.02-48.353-48.351-112.64-74.98-181.02-74.98s-132.667 26.629-181.02 74.98c-48.351 48.353-74.98 112.64-74.98 181.02 0 62.294 22.108 121.187 62.599 167.734-15.483-30.22-23.692-63.891-23.692-98.827 0-57.987 22.582-112.504 63.585-153.507 41.004-41.004 95.521-63.585 153.508-63.585s112.504 22.581 153.508 63.585c41.003 41.003 63.585 95.52 63.585 153.507 0 34.936-8.208 68.606-23.692 98.827 40.491-46.547 62.599-105.44 62.599-167.734z" }))), foreground: "#DF1E1E" @@ -472,8 +533,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ save) /* harmony export */ }); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react"); +/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor"); /* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__); @@ -486,10 +547,14 @@ function save({ coverUrl, coverId, coverAlt, + showDescription, + coverDescription, + showLegend, + coverLegend, focusBullets } = attributes; const renderedFocusPointBullets = focusBullets.map((focusBullet, index) => { - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", { "data-focus-bullet-title": focusBullet.title, className: "homegrade-blocks-focus-point-bullet", "aria-hidden": "true", @@ -499,21 +564,29 @@ function save({ }, "data-postion-x": focusBullet.x * 100, "data-postion-y": focusBullet.y * 100 - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { className: "homegrade-blocks-focus-point-bullet__index" }, index + 1)); }); - return (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", { + return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("section", { ..._wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.useBlockProps.save({ className: `homegrade-blocks-focused-schema` }) - }, coverUrl && (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("figure", { + }, coverUrl && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("figure", { className: `picture-container` - }, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("img", { + }, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("img", { src: coverUrl, alt: coverAlt, - className: `wp-image-${coverId}` - }), renderedFocusPointBullets), (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("figcaption", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)("ol", null, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.InnerBlocks.Content, null)))); + className: `wp-image-${coverId}`, + "data-description": coverDescription, + "data-legend": coverLegend + }), renderedFocusPointBullets), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("figcaption", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("p", { + className: "description-legend" + }, showLegend && coverLegend && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + className: "legend" + }, coverLegend), showDescription && coverDescription && (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("span", { + className: "description" + }, coverDescription)), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("ol", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.InnerBlocks.Content, null)))); } /***/ }), @@ -564,6 +637,47 @@ __webpack_require__.r(__webpack_exports__); // extracted by mini-css-extract-plugin +/***/ }), + +/***/ "../../node_modules/@wordpress/icons/build-module/library/trash.js": +/*!*************************************************************************!*\ + !*** ../../node_modules/@wordpress/icons/build-module/library/trash.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); +/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); +/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/primitives */ "@wordpress/primitives"); +/* harmony import */ var _wordpress_primitives__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__); + + +/** + * WordPress dependencies + */ + +const trash = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__.SVG, { + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 24 24" +}, (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_primitives__WEBPACK_IMPORTED_MODULE_1__.Path, { + d: "M20 5h-5.7c0-1.3-1-2.3-2.3-2.3S9.7 3.7 9.7 5H4v2h1.5v.3l1.7 11.1c.1 1 1 1.7 2 1.7h5.7c1 0 1.8-.7 2-1.7l1.7-11.1V7H20V5zm-3.2 2l-1.7 11.1c0 .1-.1.2-.3.2H9.1c-.1 0-.3-.1-.3-.2L7.2 7h9.6z" +})); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (trash); +//# sourceMappingURL=trash.js.map + +/***/ }), + +/***/ "react": +/*!************************!*\ + !*** external "React" ***! + \************************/ +/***/ ((module) => { + +module.exports = window["React"]; + /***/ }), /***/ "@wordpress/blob": @@ -636,13 +750,23 @@ module.exports = window["wp"]["i18n"]; /***/ }), +/***/ "@wordpress/primitives": +/*!************************************!*\ + !*** external ["wp","primitives"] ***! + \************************************/ +/***/ ((module) => { + +module.exports = window["wp"]["primitives"]; + +/***/ }), + /***/ "./src/block.json": /*!************************!*\ !*** ./src/block.json ***! \************************/ /***/ ((module) => { -module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focused-schema","version":"0.1.0","title":"Schéma + Légende","category":"homegrade-blocks","description":"Bloc de Gestion schéma. Insérer un schéma et insérez-y la légende nécéssaire à l\'aide de points de focus.","supports":{"html":false,"reusable":false},"attributes":{"coverId":{"type":"number"},"coverAlt":{"type":"string","source":"attribute","selector":"img","attribute":"alt","default":""},"coverUrl":{"type":"string","source":"attribute","selector":"img","attribute":"src"},"focusBullets":{"type":"array","default":[]}},"textdomain":"homegrade-theme__bloks-texte-fonctionnel","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css"}'); +module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focused-schema","version":"0.1.0","title":"Schéma + Légende","category":"homegrade-blocks","description":"Bloc de Gestion schéma. Insérer un schéma et insérez-y la légende nécéssaire à l\'aide de points de focus.","supports":{"html":false,"reusable":false},"attributes":{"coverId":{"type":"number"},"coverAlt":{"type":"string","source":"attribute","selector":"img","attribute":"alt","default":""},"showDescription":{"type":"boolean","default":false},"showLegend":{"type":"boolean","default":false},"coverUrl":{"type":"string","source":"attribute","selector":"img","attribute":"src"},"coverDescription":{"type":"string","source":"attribute","selector":"img","attribute":"data-description"},"coverLegend":{"type":"string","source":"attribute","selector":"img","attribute":"data-legend"},"focusBullets":{"type":"array","default":[]}},"textdomain":"homegrade-theme__bloks-texte-fonctionnel","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css"}'); /***/ }), @@ -652,7 +776,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json \************************************/ /***/ ((module) => { -module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focus-point","version":"0.1.0","title":"Point de légende ","category":"homegrade-blocks","description":"Point de légende pour titrer ou décrire un point de légende spécifique sur un Schéma ","supports":{"html":false},"textdomain":"focus-point","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","attributes":{"focusTitle":{"type":"string","default":"Légende Sans titre"},"focusCaptionDescription":{"type":"string"},"focusIndex":{"type":"number","default":0},"focusPosition":{"type":"object","default":{"x":0.5,"y":0.5}}}}'); +module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/focus-point","version":"0.1.0","title":"Point de légende ","category":"homegrade-blocks","description":"Point de légende pour titrer ou décrire un point de légende spécifique sur un Schéma ","supports":{"html":false},"textdomain":"focus-point","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","attributes":{"focusTitle":{"type":"string","default":"Légende Sans titre"},"focusCaptionDescription":{"type":"string"},"focusIndex":{"type":"number","default":0},"focusPosition":{"type":"object","default":{"x":0.5,"y":0.5}}}}'); /***/ }) @@ -698,9 +822,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ } /******/ var notFulfilled = Infinity; /******/ for (var i = 0; i < deferred.length; i++) { -/******/ var chunkIds = deferred[i][0]; -/******/ var fn = deferred[i][1]; -/******/ var priority = deferred[i][2]; +/******/ var [chunkIds, fn, priority] = deferred[i]; /******/ var fulfilled = true; /******/ for (var j = 0; j < chunkIds.length; j++) { /******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) { @@ -786,9 +908,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ /******/ // install a JSONP callback for chunk loading /******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => { -/******/ var chunkIds = data[0]; -/******/ var moreModules = data[1]; -/******/ var runtime = data[2]; +/******/ var [chunkIds, moreModules, runtime] = data; /******/ // add "moreModules" to the modules object, /******/ // then flag all "chunkIds" as loaded and fire callback /******/ var moduleId, chunkId, i = 0; @@ -811,7 +931,7 @@ module.exports = JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json /******/ return __webpack_require__.O(result); /******/ } /******/ -/******/ var chunkLoadingGlobal = self["webpackChunkmultiblocks"] = self["webpackChunkmultiblocks"] || []; +/******/ var chunkLoadingGlobal = globalThis["webpackChunkmultiblocks"] = globalThis["webpackChunkmultiblocks"] || []; /******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0)); /******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal)); /******/ })(); diff --git a/blocks/focused-schema/build/index.js.map b/blocks/focused-schema/build/index.js.map index edbfc51..d43a2c3 100644 --- a/blocks/focused-schema/build/index.js.map +++ b/blocks/focused-schema/build/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","mappings":"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;;;;;;;ACAA;;;;;;;;;;;;;;;;;;;;;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;UAEA;UACA;;;;;WCzBA;WACA;WACA;WACA;WACA,+BAA+B,wCAAwC;WACvE;WACA;WACA;WACA;WACA,iBAAiB,qBAAqB;WACtC;WACA;WACA;WACA;WACA,kBAAkB,qBAAqB;WACvC;WACA;WACA,KAAK;WACL;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;;;;WC7BA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,MAAM,qBAAqB;WAC3B;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;;;;;UEnDA;UACA;UACA;UACA;UACA","sources":["webpack://multiblocks/./src/edit.js","webpack://multiblocks/./src/focus-point/edit.js","webpack://multiblocks/./src/focus-point/index.js","webpack://multiblocks/./src/focus-point/save.js","webpack://multiblocks/./src/index.js","webpack://multiblocks/./src/save.js","webpack://multiblocks/./src/editor.scss?0339","webpack://multiblocks/./src/focus-point/editor.scss","webpack://multiblocks/./src/focus-point/style.scss","webpack://multiblocks/./src/style.scss?75bd","webpack://multiblocks/external window [\"wp\",\"blob\"]","webpack://multiblocks/external window [\"wp\",\"blockEditor\"]","webpack://multiblocks/external window [\"wp\",\"blocks\"]","webpack://multiblocks/external window [\"wp\",\"components\"]","webpack://multiblocks/external window [\"wp\",\"data\"]","webpack://multiblocks/external window [\"wp\",\"element\"]","webpack://multiblocks/external window [\"wp\",\"i18n\"]","webpack://multiblocks/webpack/bootstrap","webpack://multiblocks/webpack/runtime/chunk loaded","webpack://multiblocks/webpack/runtime/compat get default export","webpack://multiblocks/webpack/runtime/define property getters","webpack://multiblocks/webpack/runtime/hasOwnProperty shorthand","webpack://multiblocks/webpack/runtime/make namespace object","webpack://multiblocks/webpack/runtime/jsonp chunk loading","webpack://multiblocks/webpack/before-startup","webpack://multiblocks/webpack/startup","webpack://multiblocks/webpack/after-startup"],"sourcesContent":["import \"./editor.scss\";\nimport \"./focus-point\";\n\nimport { __ } from \"@wordpress/i18n\";\nimport { useSelect, dispatch, select } from \"@wordpress/data\";\nimport { useEffect, useState } from \"@wordpress/element\";\nimport { createBlock } from \"@wordpress/blocks\";\n\nimport {\n\tuseBlockProps,\n\tMediaPlaceholder,\n\tBlockControls,\n\tMediaReplaceFlow,\n\tInspectorControls,\n} from \"@wordpress/block-editor\";\nimport {\n\tToolbarButton,\n\tSpinner,\n\twithNotices,\n\tButton,\n\tPanelBody,\n} from \"@wordpress/components\";\nimport { InnerBlocks } from \"@wordpress/block-editor\";\n\nimport { isBlobURL, revokeBlobURL } from \"@wordpress/blob\";\n\nfunction Edit({\n\tattributes,\n\tsetAttributes,\n\tnoticeOperations,\n\tnoticeList,\n\tnoticeUI,\n\tclientId,\n\t...props\n}) {\n\tconst { coverUrl, coverId, coverAlt, focusBullets } = attributes;\n\tconst [blobUrl, setBlobUrl] = useState();\n\tconst currentBlockDatas = useSelect((select) => {\n\t\treturn select(\"core/block-editor\").getBlocksByClientId(clientId)[0];\n\t});\n\n\tlet children = useSelect(\n\t\t(select) =>\n\t\t\tselect(\"core/block-editor\").getBlocksByClientId(clientId)[0].innerBlocks\n\t);\n\n\tfunction onUploadError(message) {\n\t\tnoticeOperations.removeAllNotices(); // Remove all previous notices\n\t\tnoticeOperations.createErrorNotice(message);\n\t}\n\n\tfunction removeCoverImg() {\n\t\tsetAttributes({\n\t\t\tcoverUrl: undefined,\n\t\t\tcoverId: undefined,\n\t\t\tcoverAlt: \"\",\n\t\t});\n\t}\n\n\tfunction updateImage(image) {\n\t\tif (!image || !image.url) {\n\t\t\tsetAttributes({\n\t\t\t\tcoverUrl: undefined,\n\t\t\t\tcoverId: undefined,\n\t\t\t\tcoverAlt: \"\",\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tsetAttributes({\n\t\t\tcoverUrl: image.url,\n\t\t\tcoverId: image.id,\n\t\t\tcoverAlt: image.alt,\n\t\t});\n\t}\n\n\tfunction passCoverUrlToChildren() {\n\t\tif (children && coverUrl) {\n\t\t\tchildren.forEach(function (child) {\n\t\t\t\tdispatch(\"core/block-editor\").updateBlockAttributes(child.clientId, {\n\t\t\t\t\tcoverUrl: coverUrl,\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction passIndexToChildren() {\n\t\tif (children) {\n\t\t\tchildren.forEach((child, index) => {\n\t\t\t\tdispatch(\"core/block-editor\").updateBlockAttributes(child.clientId, {\n\t\t\t\t\tfocusIndex: index + 1,\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction updateFocusPointBullets() {\n\t\tif (children) {\n\t\t\tconst focusBullets = children.map((child, index) => {\n\t\t\t\treturn {\n\t\t\t\t\ttitle: child.attributes.focusTitle,\n\t\t\t\t\tx: child.attributes.focusPosition.x,\n\t\t\t\t\ty: child.attributes.focusPosition.y,\n\t\t\t\t};\n\t\t\t});\n\n\t\t\tsetAttributes({ focusBullets });\n\t\t}\n\t}\n\n\tfunction insertFocusPointBlock() {\n\t\tconst index = children && children.length ? children.length : 0;\n\t\tconst newBlock = createBlock(\"homegrade-content-blocks/focus-point\", {});\n\t\tdispatch(\"core/block-editor\").insertBlocks(newBlock, index, clientId);\n\t}\n\n\tfunction handleBulletClick(index) {\n\t\tif (currentBlockDatas && currentBlockDatas.innerBlocks) {\n\t\t\tconsole.log(currentBlockDatas.innerBlocks[index].clientId);\n\t\t\tdispatch(\"core/block-editor\").selectBlock(\n\t\t\t\tcurrentBlockDatas.innerBlocks[index].clientId\n\t\t\t);\n\t\t}\n\t}\n\n\tconst renderedFocusPointBullets = focusBullets.map((focusBullet, index) => {\n\t\treturn (\n\t\t\t handleBulletClick(index)}\n\t\t\t>\n\t\t\t\t\n\t\t\t\t\t{index + 1}\n\t\t\t\t\n\t\t\t\n\t\t);\n\t});\n\n\tuseEffect(() => {\n\t\tupdateFocusPointBullets();\n\t\tif (!coverId && isBlobURL(coverUrl)) {\n\t\t\tsetAttributes({ coverUrl: undefined, coverAlt: \"\" });\n\t\t}\n\t}, []);\n\tuseEffect(() => {\n\t\t// Fonction de clean du BLOB URL qui se lance à chaque changement de coverUrl\n\t\tif (isBlobURL(coverUrl)) {\n\t\t\t// Si la cover est une blob, c'est que ça upload donc on met cette url dans le state\n\t\t\tsetBlobUrl(coverUrl);\n\t\t} else {\n\t\t\t// Si la cover en'est plus une blob, c'est que l'upload est terminé, on revoke la blob et on clean le state\n\t\t\trevokeBlobURL(blobUrl); // On utilise la valeur stocké dans le state pour revoke l'url\n\t\t\tsetBlobUrl();\n\t\t}\n\t\tpassCoverUrlToChildren();\n\t}, [coverUrl]);\n\n\tuseEffect(() => {\n\t\tupdateFocusPointBullets();\n\t\tpassCoverUrlToChildren();\n\t}, [children]);\n\tuseEffect(() => {\n\t\tpassIndexToChildren();\n\t}, [currentBlockDatas]);\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t {\n\t\t\t\t\t\t\tinsertFocusPointBlock();\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\tAjouter un point Légende\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t{coverUrl && (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t{coverUrl && (\n\t\t\t\t\t\n\t\t\t\t\t\t{coverAlt}\n\t\t\t\t\t\t{renderedFocusPointBullets}\n\t\t\t\t\t\t{isBlobURL(coverUrl) && }\n\t\t\t\t\t\n\t\t\t\t)}\n\n\t\t\t\t
\n\t\t\t\t\t
    \n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\n\t\t\n\t);\n}\n\nexport default withNotices(Edit);\n","import { __ } from \"@wordpress/i18n\";\nimport { useBlockProps } from \"@wordpress/block-editor\";\nimport \"./editor.scss\";\nimport { InspectorControls } from \"@wordpress/block-editor\";\nimport { RichText } from \"@wordpress/block-editor\";\nimport {\n\tPanelBody,\n\tFocalPointPicker,\n\tTextControl,\n\tTextareaControl,\n} from \"@wordpress/components\";\n\nexport default function Edit({\n\tattributes,\n\tsetAttributes,\n\tclientId,\n\t...props\n}) {\n\tconst {\n\t\tfocusTitle,\n\t\tfocusPosition,\n\t\tfocusCaptionDescription,\n\t\tcoverUrl,\n\t\tfocusIndex,\n\t} = attributes;\n\n\tfunction handleChangeFocusPosition(focusPosition) {\n\t\tsetAttributes({ focusPosition });\n\t}\n\tfunction handleChangeTitle(focusTitle) {\n\t\tsetAttributes({ focusTitle: focusTitle });\n\t}\n\tfunction handleChangeCaptionDescription(focusCaptionDescription) {\n\t\tsetAttributes({ focusCaptionDescription });\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t\t\t{focusIndex}\n\t\t\t\t\t
\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeCaptionDescription(description);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeFocusPosition(focalPoint);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\n\t\t\t
\n\t\t\t\n\t\t\t\t {\n\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t\n\t\t\t\t{/* {focusTitle} */}\n\t\t\t\t{/* {focusCaptionDescription} */}\n\t\t\t\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\nimport \"./style.scss\";\nimport metadata from \"./block.json\";\n\nimport Edit from \"./edit\";\nimport Save from \"./save\";\n\nregisterBlockType(metadata.name, {\n\ttitle: metadata.title,\n\ticon: {\n\t\tforeground: \"#DF1E1E\",\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t},\n\n\tsupports: metadata.supports,\n\tattributes: metadata.attributes,\n\tedit: Edit,\n\tsave: Save,\n});\n","import { useBlockProps, RichText, InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst { focusCaptionDescription, focusTitle } = attributes;\n\treturn (\n\t\t\n\t\t\t{/* {focusTitle} */}\n\t\t\t\n\t\t\t\n\t\t\t{/* {focusCaptionDescription} */}\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\n\nimport \"./style.scss\";\n\nimport Edit from \"./edit\";\nimport save from \"./save\";\nimport metadata from \"./block.json\";\n\nregisterBlockType(metadata.name, {\n\ticon: {\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t\tforeground: \"#DF1E1E\",\n\t},\n\tedit: Edit,\n\tsave,\n});\n","import {\n\tuseBlockProps,\n\tMediaPlaceholder,\n\tRichText,\n\tBlockControls,\n\tMediaReplaceFlow,\n} from \"@wordpress/block-editor\";\nimport { InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst { coverUrl, coverId, coverAlt, focusBullets } = attributes;\n\tconst renderedFocusPointBullets = focusBullets.map((focusBullet, index) => {\n\t\treturn (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t{index + 1}\n\t\t\t\t\n\t\t\t\n\t\t);\n\t});\n\treturn (\n\t\t\n\t\t\t{coverUrl && (\n\t\t\t\t
\n\t\t\t\t\t\n\t\t\t\t\t{renderedFocusPointBullets}\n\t\t\t\t
\n\t\t\t)}\n\t\t\t
\n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
\n\t\t\t
\n\t\t\n\t);\n}\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","module.exports = window[\"wp\"][\"blob\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"data\"];","module.exports = window[\"wp\"][\"element\"];","module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar chunkIds = deferred[i][0];\n\t\tvar fn = deferred[i][1];\n\t\tvar priority = deferred[i][2];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"index\": 0,\n\t\"./style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar chunkIds = data[0];\n\tvar moreModules = data[1];\n\tvar runtime = data[2];\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunkmultiblocks\"] = self[\"webpackChunkmultiblocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"./style-index\"], () => (__webpack_require__(\"./src/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","useSelect","dispatch","select","useEffect","useState","createBlock","useBlockProps","MediaPlaceholder","BlockControls","MediaReplaceFlow","InspectorControls","ToolbarButton","Spinner","withNotices","Button","PanelBody","InnerBlocks","isBlobURL","revokeBlobURL","Edit","attributes","setAttributes","noticeOperations","noticeList","noticeUI","clientId","props","coverUrl","coverId","coverAlt","focusBullets","blobUrl","setBlobUrl","currentBlockDatas","getBlocksByClientId","children","innerBlocks","onUploadError","message","removeAllNotices","createErrorNotice","removeCoverImg","undefined","updateImage","image","url","id","alt","passCoverUrlToChildren","forEach","child","updateBlockAttributes","passIndexToChildren","index","focusIndex","updateFocusPointBullets","map","title","focusTitle","x","focusPosition","y","insertFocusPointBlock","length","newBlock","insertBlocks","handleBulletClick","console","log","selectBlock","renderedFocusPointBullets","focusBullet","createElement","className","style","top","left","onClick","Fragment","variant","group","name","disableMediaButtons","icon","onSelect","onError","accept","allowedTypes","notices","mediaId","mediaURL","src","allowedBlocks","RichText","FocalPointPicker","TextControl","TextareaControl","focusCaptionDescription","handleChangeFocusPosition","handleChangeTitle","handleChangeCaptionDescription","placeholder","label","value","onChange","rows","description","dimensions","width","height","focalPoint","tagName","registerBlockType","metadata","Save","foreground","viewBox","xmlns","d","cx","cy","r","supports","edit","save","Content"],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"index.js","mappings":"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","sources":["webpack://multiblocks/./src/edit.js","webpack://multiblocks/./src/focus-point/edit.js","webpack://multiblocks/./src/focus-point/index.js","webpack://multiblocks/./src/focus-point/save.js","webpack://multiblocks/./src/index.js","webpack://multiblocks/./src/save.js","webpack://multiblocks/./src/editor.scss","webpack://multiblocks/./src/focus-point/editor.scss","webpack://multiblocks/./src/focus-point/style.scss","webpack://multiblocks/./src/style.scss","webpack://multiblocks/../../node_modules/@wordpress/icons/build-module/library/trash.js","webpack://multiblocks/external window \"React\"","webpack://multiblocks/external window [\"wp\",\"blob\"]","webpack://multiblocks/external window [\"wp\",\"blockEditor\"]","webpack://multiblocks/external window [\"wp\",\"blocks\"]","webpack://multiblocks/external window [\"wp\",\"components\"]","webpack://multiblocks/external window [\"wp\",\"data\"]","webpack://multiblocks/external window [\"wp\",\"element\"]","webpack://multiblocks/external window [\"wp\",\"i18n\"]","webpack://multiblocks/external window [\"wp\",\"primitives\"]","webpack://multiblocks/webpack/bootstrap","webpack://multiblocks/webpack/runtime/chunk loaded","webpack://multiblocks/webpack/runtime/compat get default export","webpack://multiblocks/webpack/runtime/define property getters","webpack://multiblocks/webpack/runtime/hasOwnProperty shorthand","webpack://multiblocks/webpack/runtime/make namespace object","webpack://multiblocks/webpack/runtime/jsonp chunk loading","webpack://multiblocks/webpack/before-startup","webpack://multiblocks/webpack/startup","webpack://multiblocks/webpack/after-startup"],"sourcesContent":["import \"./editor.scss\";\nimport \"./focus-point\";\n\nimport { __ } from \"@wordpress/i18n\";\nimport { useSelect, dispatch, select } from \"@wordpress/data\";\nimport { useEffect, useState } from \"@wordpress/element\";\nimport { createBlock } from \"@wordpress/blocks\";\n\nimport {\n\tInnerBlocks,\n\tuseBlockProps,\n\tMediaPlaceholder,\n\tBlockControls,\n\tMediaReplaceFlow,\n\tInspectorControls,\n} from \"@wordpress/block-editor\";\nimport {\n\tToggleControl,\n\tToolbarButton,\n\tSpinner,\n\twithNotices,\n\tButton,\n\tPanelBody,\n\tTip,\n} from \"@wordpress/components\";\n\nimport { isBlobURL, revokeBlobURL } from \"@wordpress/blob\";\nimport { cover, handle, trash } from \"@wordpress/icons\";\n\nfunction Edit({\n\tattributes,\n\tsetAttributes,\n\tnoticeOperations,\n\tnoticeList,\n\tnoticeUI,\n\tclientId,\n\t...props\n}) {\n\tconst {\n\t\tcoverUrl,\n\t\tcoverId,\n\t\tcoverAlt,\n\t\tshowLegend,\n\t\tcoverLegend,\n\t\tshowDescription,\n\t\tcoverDescription,\n\t\tfocusBullets,\n\t} = attributes;\n\tconsole.log(coverLegend);\n\tconst [blobUrl, setBlobUrl] = useState();\n\tconst currentBlockDatas = useSelect((select) => {\n\t\treturn select(\"core/block-editor\").getBlocksByClientId(clientId)[0];\n\t});\n\n\tlet children = useSelect(\n\t\t(select) =>\n\t\t\tselect(\"core/block-editor\").getBlocksByClientId(clientId)[0].innerBlocks,\n\t);\n\n\tfunction onUploadError(message) {\n\t\tnoticeOperations.removeAllNotices(); // Remove all previous notices\n\t\tnoticeOperations.createErrorNotice(message);\n\t}\n\n\tfunction removeCoverImg() {\n\t\tsetAttributes({\n\t\t\tcoverUrl: undefined,\n\t\t\tcoverId: undefined,\n\t\t\tcoverDescription: \"\",\n\t\t\tcoverLegend: \"\",\n\t\t\tcoverAlt: \"\",\n\t\t});\n\t}\n\n\tfunction updateCover(image) {\n\t\tif (!image || !image.url) {\n\t\t\tsetAttributes({\n\t\t\t\tcoverUrl: undefined,\n\t\t\t\tcoverId: undefined,\n\t\t\t\tcoverDescription: \"\",\n\t\t\t\tcoverLegend: \"\",\n\t\t\t\tcoverAlt: \"\",\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\t\tsetAttributes({\n\t\t\tcoverUrl: image.url,\n\t\t\tcoverId: image.id,\n\t\t\tcoverAlt: image.alt,\n\t\t\tcoverDescription: image.description,\n\t\t\tcoverLegend: image.caption,\n\t\t});\n\t}\n\n\tfunction passCoverUrlToChildren() {\n\t\tif (children && coverUrl) {\n\t\t\tchildren.forEach(function (child) {\n\t\t\t\tdispatch(\"core/block-editor\").updateBlockAttributes(child.clientId, {\n\t\t\t\t\tcoverUrl: coverUrl,\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction passIndexToChildren() {\n\t\tif (children) {\n\t\t\tchildren.forEach((child, index) => {\n\t\t\t\tdispatch(\"core/block-editor\").updateBlockAttributes(child.clientId, {\n\t\t\t\t\tfocusIndex: index + 1,\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}\n\n\tfunction updateFocusPointBullets() {\n\t\tif (children) {\n\t\t\tconst focusBullets = children.map((child, index) => {\n\t\t\t\treturn {\n\t\t\t\t\ttitle: child.attributes.focusTitle,\n\t\t\t\t\tx: child.attributes.focusPosition.x,\n\t\t\t\t\ty: child.attributes.focusPosition.y,\n\t\t\t\t};\n\t\t\t});\n\n\t\t\tsetAttributes({ focusBullets });\n\t\t}\n\t}\n\n\tfunction insertFocusPointBlock() {\n\t\tconst index = children && children.length ? children.length : 0;\n\t\tconst newBlock = createBlock(\"homegrade-content-blocks/focus-point\", {});\n\t\tdispatch(\"core/block-editor\").insertBlocks(newBlock, index, clientId);\n\t}\n\n\tfunction handleBulletClick(index) {\n\t\tif (currentBlockDatas && currentBlockDatas.innerBlocks) {\n\t\t\tconsole.log(currentBlockDatas.innerBlocks[index].clientId);\n\t\t\tdispatch(\"core/block-editor\").selectBlock(\n\t\t\t\tcurrentBlockDatas.innerBlocks[index].clientId,\n\t\t\t);\n\t\t}\n\t}\n\n\tfunction handleShowDescription() {\n\t\tsetAttributes({ showDescription: !showDescription });\n\t}\n\tfunction handleShowLegend() {\n\t\tsetAttributes({ showLegend: !showLegend });\n\t}\n\n\tconst renderedFocusPointBullets = focusBullets.map((focusBullet, index) => {\n\t\treturn (\n\t\t\t handleBulletClick(index)}\n\t\t\t>\n\t\t\t\t\n\t\t\t\t\t{index + 1}\n\t\t\t\t\n\t\t\t\n\t\t);\n\t});\n\n\tuseEffect(() => {\n\t\tupdateFocusPointBullets();\n\t\tif (!coverId && isBlobURL(coverUrl)) {\n\t\t\tsetAttributes({ coverUrl: undefined, coverAlt: \"\" });\n\t\t}\n\t}, []);\n\tuseEffect(() => {\n\t\t// Fonction de clean du BLOB URL qui se lance à chaque changement de coverUrl\n\t\tif (isBlobURL(coverUrl)) {\n\t\t\t// Si la cover est une blob, c'est que ça upload donc on met cette url dans le state\n\t\t\tsetBlobUrl(coverUrl);\n\t\t} else {\n\t\t\t// Si la cover en'est plus une blob, c'est que l'upload est terminé, on revoke la blob et on clean le state\n\t\t\trevokeBlobURL(blobUrl); // On utilise la valeur stocké dans le state pour revoke l'url\n\t\t\tsetBlobUrl();\n\t\t}\n\t\tpassCoverUrlToChildren();\n\t}, [coverUrl]);\n\n\tuseEffect(() => {\n\t\tupdateFocusPointBullets();\n\t\tpassCoverUrlToChildren();\n\t}, [children]);\n\tuseEffect(() => {\n\t\tpassIndexToChildren();\n\t}, [currentBlockDatas]);\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t {\n\t\t\t\t\t\t\tinsertFocusPointBlock();\n\t\t\t\t\t\t}}\n\t\t\t\t\t>\n\t\t\t\t\t\tAjouter un point Légende\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{coverUrl && {coverAlt}}\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t{coverUrl && (\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t)}\n\t\t\t\t\t
\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
\n\n\t\t\t\n\t\t\t\n\t\t\t\t{coverUrl && (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t{renderedFocusPointBullets}\n\t\t\t\t\t\t{isBlobURL(coverUrl) && }\n\t\t\t\t\t\n\t\t\t\t)}\n\n\t\t\t\t
\n\t\t\t\t\t

\n\t\t\t\t\t\t{showLegend && coverLegend && (\n\t\t\t\t\t\t\t{coverLegend}\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{showDescription && coverDescription && (\n\t\t\t\t\t\t\t{coverDescription}\n\t\t\t\t\t\t)}\n\t\t\t\t\t

\n\t\t\t\t\t
    \n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\n\t\t\n\t);\n}\n\nexport default withNotices(Edit);\n","import { __ } from \"@wordpress/i18n\";\nimport { useBlockProps } from \"@wordpress/block-editor\";\nimport \"./editor.scss\";\nimport { InspectorControls } from \"@wordpress/block-editor\";\nimport { RichText } from \"@wordpress/block-editor\";\nimport {\n\tPanelBody,\n\tFocalPointPicker,\n\tTextControl,\n\tTextareaControl,\n} from \"@wordpress/components\";\n\nexport default function Edit({\n\tattributes,\n\tsetAttributes,\n\tclientId,\n\t...props\n}) {\n\tconst {\n\t\tfocusTitle,\n\t\tfocusPosition,\n\t\tfocusCaptionDescription,\n\t\tcoverUrl,\n\t\tfocusIndex,\n\t} = attributes;\n\n\tfunction handleChangeFocusPosition(focusPosition) {\n\t\tconsole.log(focusPosition);\n\t\tif (focusPosition.x < 0.05) {\n\t\t\tfocusPosition.x = 0.05;\n\t\t}\n\t\tif (focusPosition.x > 0.95) {\n\t\t\tfocusPosition.x = 0.95;\n\t\t}\n\n\t\tif (focusPosition.y < 0.02) {\n\t\t\tfocusPosition.y = 0.02;\n\t\t}\n\t\tif (focusPosition.y > 0.98) {\n\t\t\tfocusPosition.y = 0.98;\n\t\t}\n\t\tsetAttributes({ focusPosition });\n\t}\n\tfunction handleChangeTitle(focusTitle) {\n\t\tsetAttributes({ focusTitle: focusTitle });\n\t}\n\tfunction handleChangeCaptionDescription(focusCaptionDescription) {\n\t\tsetAttributes({ focusCaptionDescription });\n\t}\n\n\treturn (\n\t\t<>\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t\t\t{focusIndex}\n\t\t\t\t\t
\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeCaptionDescription(description);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\t {\n\t\t\t\t\t\t\thandleChangeFocusPosition(focalPoint);\n\t\t\t\t\t\t}}\n\t\t\t\t\t/>\n\t\t\t\t\n\t\t\t
\n\t\t\t\n\t\t\t\t {\n\t\t\t\t\t\thandleChangeTitle(value);\n\t\t\t\t\t}}\n\t\t\t\t/>\n\t\t\t\t\n\t\t\t\t{/* {focusTitle} */}\n\t\t\t\t{/* {focusCaptionDescription} */}\n\t\t\t\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\nimport \"./style.scss\";\nimport metadata from \"./block.json\";\n\nimport Edit from \"./edit\";\nimport Save from \"./save\";\n\nregisterBlockType(metadata.name, {\n\ttitle: metadata.title,\n\ticon: {\n\t\tforeground: \"#DF1E1E\",\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t},\n\n\tsupports: metadata.supports,\n\tattributes: metadata.attributes,\n\tedit: Edit,\n\tsave: Save,\n});\n","import { useBlockProps, RichText, InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst { focusCaptionDescription, focusTitle } = attributes;\n\treturn (\n\t\t\n\t\t\t{/* {focusTitle} */}\n\t\t\t\n\t\t\t\n\t\t\t{/* {focusCaptionDescription} */}\n\t\t\n\t);\n}\n","import { registerBlockType } from \"@wordpress/blocks\";\n\nimport \"./style.scss\";\n\nimport Edit from \"./edit\";\nimport save from \"./save\";\nimport metadata from \"./block.json\";\n\nregisterBlockType(metadata.name, {\n\ticon: {\n\t\tsrc: (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t),\n\t\tforeground: \"#DF1E1E\",\n\t},\n\tedit: Edit,\n\tsave,\n});\n","import {\n\tuseBlockProps,\n\tMediaPlaceholder,\n\tRichText,\n\tBlockControls,\n\tMediaReplaceFlow,\n} from \"@wordpress/block-editor\";\nimport { InnerBlocks } from \"@wordpress/block-editor\";\n\nexport default function save({ attributes }) {\n\tconst {\n\t\tcoverUrl,\n\t\tcoverId,\n\t\tcoverAlt,\n\t\tshowDescription,\n\t\tcoverDescription,\n\t\tshowLegend,\n\t\tcoverLegend,\n\t\tfocusBullets,\n\t} = attributes;\n\tconst renderedFocusPointBullets = focusBullets.map((focusBullet, index) => {\n\t\treturn (\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t{index + 1}\n\t\t\t\t\n\t\t\t\n\t\t);\n\t});\n\treturn (\n\t\t\n\t\t\t{coverUrl && (\n\t\t\t\t
\n\t\t\t\t\t\n\t\t\t\t\t{renderedFocusPointBullets}\n\t\t\t\t
\n\t\t\t)}\n\t\t\t
\n\t\t\t\t

\n\t\t\t\t\t{showLegend && coverLegend && (\n\t\t\t\t\t\t{coverLegend}\n\t\t\t\t\t)}\n\t\t\t\t\t{showDescription && coverDescription && (\n\t\t\t\t\t\t{coverDescription}\n\t\t\t\t\t)}\n\t\t\t\t

\n\n\t\t\t\t
    \n\t\t\t\t\t\n\t\t\t\t
\n\t\t\t
\n\t\t\n\t);\n}\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","import { createElement } from \"@wordpress/element\";\n\n/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\nconst trash = createElement(SVG, {\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 24 24\"\n}, createElement(Path, {\n d: \"M20 5h-5.7c0-1.3-1-2.3-2.3-2.3S9.7 3.7 9.7 5H4v2h1.5v.3l1.7 11.1c.1 1 1 1.7 2 1.7h5.7c1 0 1.8-.7 2-1.7l1.7-11.1V7H20V5zm-3.2 2l-1.7 11.1c0 .1-.1.2-.3.2H9.1c-.1 0-.3-.1-.3-.2L7.2 7h9.6z\"\n}));\nexport default trash;\n//# sourceMappingURL=trash.js.map","module.exports = window[\"React\"];","module.exports = window[\"wp\"][\"blob\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"data\"];","module.exports = window[\"wp\"][\"element\"];","module.exports = window[\"wp\"][\"i18n\"];","module.exports = window[\"wp\"][\"primitives\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"index\": 0,\n\t\"./style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkmultiblocks\"] = globalThis[\"webpackChunkmultiblocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"./style-index\"], () => (__webpack_require__(\"./src/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","useSelect","dispatch","select","useEffect","useState","createBlock","InnerBlocks","useBlockProps","MediaPlaceholder","BlockControls","MediaReplaceFlow","InspectorControls","ToggleControl","ToolbarButton","Spinner","withNotices","Button","PanelBody","Tip","isBlobURL","revokeBlobURL","cover","handle","trash","Edit","attributes","setAttributes","noticeOperations","noticeList","noticeUI","clientId","props","coverUrl","coverId","coverAlt","showLegend","coverLegend","showDescription","coverDescription","focusBullets","console","log","blobUrl","setBlobUrl","currentBlockDatas","getBlocksByClientId","children","innerBlocks","onUploadError","message","removeAllNotices","createErrorNotice","removeCoverImg","undefined","updateCover","image","url","id","alt","description","caption","passCoverUrlToChildren","forEach","child","updateBlockAttributes","passIndexToChildren","index","focusIndex","updateFocusPointBullets","map","title","focusTitle","x","focusPosition","y","insertFocusPointBlock","length","newBlock","insertBlocks","handleBulletClick","selectBlock","handleShowDescription","handleShowLegend","renderedFocusPointBullets","focusBullet","createElement","className","style","top","left","onClick","Fragment","variant","src","mediaId","mediaUrl","allowedTypes","accept","onSelect","name","icon","label","checked","onChange","help","disableMediaButtons","onError","notices","allowedBlocks","RichText","FocalPointPicker","TextControl","TextareaControl","focusCaptionDescription","handleChangeFocusPosition","handleChangeTitle","handleChangeCaptionDescription","placeholder","value","rows","dimensions","width","height","focalPoint","tagName","registerBlockType","metadata","Save","foreground","viewBox","xmlns","d","cx","cy","r","supports","edit","save","Content"],"sourceRoot":""} \ No newline at end of file diff --git a/blocks/focused-schema/build/style-index.css b/blocks/focused-schema/build/style-index.css index 61cf278..84285eb 100644 --- a/blocks/focused-schema/build/style-index.css +++ b/blocks/focused-schema/build/style-index.css @@ -1,6 +1,7 @@ -/*!***************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***! - \***************************************************************************************************************************************************************************************************************************************/ +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/style.scss ***! + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ +@charset "UTF-8"; /** * The following styles get applied both on the front of your site * and in the editor. @@ -10,6 +11,12 @@ .homegrade-blocks-focused-schema figure { position: relative; } +.homegrade-blocks-focused-schema figcaption .legend + .description:before { + content: "—"; + margin: 0 5px; + display: inline-block; + margin-bottom: 10px; +} .homegrade-blocks-focused-schema figcaption ol { padding-top: 20px; counter-reset: myOrderedListItemsCounter; @@ -109,9 +116,9 @@ font-weight: bold; margin-right: 6px; } -/*!***************************************************************************************************************************************************************************************************************************************************!*\ - !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/style.scss ***! - \***************************************************************************************************************************************************************************************************************************************************/ +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ + !*** css ./node_modules/.pnpm/css-loader@6.10.0_webpack@5.90.3/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.35_webpack@5.90.3/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.71.1_webpack@5.90.3/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/focus-point/style.scss ***! + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ /*# sourceMappingURL=style-index.css.map*/ \ No newline at end of file diff --git a/blocks/focused-schema/build/style-index.css.map b/blocks/focused-schema/build/style-index.css.map index 643f05a..ee53fdd 100644 --- a/blocks/focused-schema/build/style-index.css.map +++ b/blocks/focused-schema/build/style-index.css.map @@ -1 +1 @@ -{"version":3,"file":"./style-index.css","mappings":";;;AAAA;;;;;EAAA;AAQC;EACC;AADF;AAKE;EACC;EACA;AAHH;AAKG;EACC;EACA;EACA;EACA;EACA;AAHJ;AAKG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAHJ;AAQC;EACC;EACA;EACA;EACA;EACA;AANF;AAQE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AANH;AAUC;EACC;EACA;EACA;AARF;AAUE;EAEC;AATH;AAYC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EAAA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAZF;AAcE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAZH;AAqBC;EACC;AAnBF;;AAyBA;EACC;EACA;AAtBD,C","sources":["webpack://multiblocks/./src/style.scss"],"sourcesContent":["/**\n * The following styles get applied both on the front of your site\n * and in the editor.\n *\n * Replace them with your own styles or remove the file completely.\n */\n\n.homegrade-blocks-focused-schema {\n\tfigure {\n\t\tposition: relative;\n\t}\n\n\tfigcaption {\n\t\tol {\n\t\t\tpadding-top: 20px;\n\t\t\tcounter-reset: myOrderedListItemsCounter;\n\n\t\t\tli {\n\t\t\t\tline-height: 1.3;\n\t\t\t\tlist-style-type: none;\n\t\t\t\tposition: relative;\n\t\t\t\tpadding: 8px;\n\t\t\t\tpadding-left: 50px;\n\t\t\t}\n\t\t\tli:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\tleft: 0;\n\t\t\t\ttop: 0;\n\t\t\t\ttransform: translateY(3px);\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\tbackground-color: red;\n\t\t\t\tcolor: white;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tcounter-increment: myOrderedListItemsCounter;\n\t\t\t\tcontent: counter(myOrderedListItemsCounter);\n\t\t\t\tmargin-right: 0.5em;\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\t}\n\n\t.homegrade-blocks-focus-point-bullet {\n\t\tposition: absolute !important;\n\t\tborder-radius: 50%;\n\t\ttransition: scale 0.2s ease-in-out;\n\t\tz-index: 1;\n\t\ttransform: translateX(-50%);\n\n\t\t&__index {\n\t\t\tfont-weight: 700;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tposition: relative;\n\t\t\tcolor: white;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\tpadding: 16px;\n\t\t}\n\t}\n\n\t.homegrade-blocks-focus-point-bullet:hover {\n\t\tscale: 1.2;\n\t\tfilter: brightness(1.2) hue-rotate(10deg);\n\t\tz-index: 1;\n\n\t\t& + .homegrade-blocks-focus-point-bullet__tooltip-container {\n\t\t\t// background-color: red;\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\t.homegrade-blocks-focus-point-bullet__tooltip-container {\n\t\tz-index: 999;\n\t\tposition: absolute;\n\t\tleft: calc(44%);\n\t\ttop: 25%;\n\t\ttransform: translate(-50%, calc(-100%));\n\n\t\tbackground-color: white;\n\t\tborder-radius: 14px;\n\t\tpadding: 10px;\n\n\t\twidth: max-content;\n\t\tmin-width: 70px;\n\t\tmax-width: 220px;\n\t\ttext-align: center;\n\t\tdisplay: none;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t\tbox-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);\n\t\t--bullet-x-position: 50%;\n\n\t\t&:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tbackground-color: white;\n\t\t\tposition: absolute;\n\t\t\ttop: 100%;\n\t\t\tleft: var(--bullet-x-position);\n\t\t\twidth: 10px;\n\t\t\theight: 10px;\n\t\t\ttransform: translate(-50%, -50%) rotate(45deg);\n\t\t\tbox-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04);\n\t\t\tz-index: 999;\n\t\t}\n\t\t// &__tooltip-container {\n\t\t// \t&__title {\n\t\t// \t\twidth: auto;\n\t\t// \t\tmin-width: 100px;\n\t\t// \t}\n\t\t// }\n\t}\n\t.homegrade-blocks-focus-point-bullet__tooltip-container:hover {\n\t\tdisplay: flex;\n\t}\n}\n\n//***** TOOLTIP\n\n.tooltip-title {\n\tfont-weight: bold;\n\tmargin-right: 6px;\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file +{"version":3,"file":"./style-index.css","mappings":";;;AAAA,gBAAgB;AAAhB;;;;;EAAA;AAQC;EACC;AAAF;AAKG;EACC;EACA;EACA;EACA;AAHJ;AAME;EACC;EACA;AAJH;AAMG;EACC;EACA;EACA;EACA;EACA;AAJJ;AAMG;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAJJ;AASC;EACC;EACA;EACA;EACA;EACA;AAPF;AASE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAPH;AAWC;EACC;EACA;EACA;AATF;AAWE;EAEC;AAVH;AAaC;EACC;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;EAAA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAbF;AAeE;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAbH;AAsBC;EACC;AApBF;;AA0BA;EACC;EACA;AAvBD,C","sources":["webpack://multiblocks/./src/style.scss"],"sourcesContent":["/**\n * The following styles get applied both on the front of your site\n * and in the editor.\n *\n * Replace them with your own styles or remove the file completely.\n */\n\n.homegrade-blocks-focused-schema {\n\tfigure {\n\t\tposition: relative;\n\t}\n\n\tfigcaption {\n\t\t.legend + .description {\n\t\t\t&:before {\n\t\t\t\tcontent: \"—\";\n\t\t\t\tmargin: 0 5px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tmargin-bottom: 10px;\n\t\t\t}\n\t\t}\n\t\tol {\n\t\t\tpadding-top: 20px;\n\t\t\tcounter-reset: myOrderedListItemsCounter;\n\n\t\t\tli {\n\t\t\t\tline-height: 1.3;\n\t\t\t\tlist-style-type: none;\n\t\t\t\tposition: relative;\n\t\t\t\tpadding: 8px;\n\t\t\t\tpadding-left: 50px;\n\t\t\t}\n\t\t\tli:before {\n\t\t\t\tcontent: \"\";\n\t\t\t\tleft: 0;\n\t\t\t\ttop: 0;\n\t\t\t\ttransform: translateY(3px);\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: center;\n\t\t\t\talign-items: center;\n\t\t\t\tbackground-color: red;\n\t\t\t\tcolor: white;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tcounter-increment: myOrderedListItemsCounter;\n\t\t\t\tcontent: counter(myOrderedListItemsCounter);\n\t\t\t\tmargin-right: 0.5em;\n\t\t\t\tfont-weight: 700;\n\t\t\t}\n\t\t}\n\t}\n\n\t.homegrade-blocks-focus-point-bullet {\n\t\tposition: absolute !important;\n\t\tborder-radius: 50%;\n\t\ttransition: scale 0.2s ease-in-out;\n\t\tz-index: 1;\n\t\ttransform: translateX(-50%);\n\n\t\t&__index {\n\t\t\tfont-weight: 700;\n\t\t\twidth: 20px;\n\t\t\theight: 20px;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tposition: relative;\n\t\t\tcolor: white;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: center;\n\t\t\talign-items: center;\n\t\t\tpadding: 16px;\n\t\t}\n\t}\n\n\t.homegrade-blocks-focus-point-bullet:hover {\n\t\tscale: 1.2;\n\t\tfilter: brightness(1.2) hue-rotate(10deg);\n\t\tz-index: 1;\n\n\t\t& + .homegrade-blocks-focus-point-bullet__tooltip-container {\n\t\t\t// background-color: red;\n\t\t\tdisplay: flex;\n\t\t}\n\t}\n\t.homegrade-blocks-focus-point-bullet__tooltip-container {\n\t\tz-index: 999;\n\t\tposition: absolute;\n\t\tleft: calc(44%);\n\t\ttop: 25%;\n\t\ttransform: translate(-50%, calc(-100%));\n\n\t\tbackground-color: white;\n\t\tborder-radius: 14px;\n\t\tpadding: 10px;\n\n\t\twidth: max-content;\n\t\tmin-width: 70px;\n\t\tmax-width: 220px;\n\t\ttext-align: center;\n\t\tdisplay: none;\n\t\tjustify-content: center;\n\t\talign-items: center;\n\t\tbox-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);\n\t\t--bullet-x-position: 50%;\n\n\t\t&:after {\n\t\t\tcontent: \"\";\n\t\t\tdisplay: block;\n\t\t\tbackground-color: white;\n\t\t\tposition: absolute;\n\t\t\ttop: 100%;\n\t\t\tleft: var(--bullet-x-position);\n\t\t\twidth: 10px;\n\t\t\theight: 10px;\n\t\t\ttransform: translate(-50%, -50%) rotate(45deg);\n\t\t\tbox-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04);\n\t\t\tz-index: 999;\n\t\t}\n\t\t// &__tooltip-container {\n\t\t// \t&__title {\n\t\t// \t\twidth: auto;\n\t\t// \t\tmin-width: 100px;\n\t\t// \t}\n\t\t// }\n\t}\n\t.homegrade-blocks-focus-point-bullet__tooltip-container:hover {\n\t\tdisplay: flex;\n\t}\n}\n\n//***** TOOLTIP\n\n.tooltip-title {\n\tfont-weight: bold;\n\tmargin-right: 6px;\n}\n"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/blocks/focused-schema/src/_old_viewscriptfrontend.js b/blocks/focused-schema/src/_old_viewscriptfrontend.js deleted file mode 100644 index 3eed40a..0000000 --- a/blocks/focused-schema/src/_old_viewscriptfrontend.js +++ /dev/null @@ -1,33 +0,0 @@ -window.addEventListener("DOMContentLoaded", (event) => { - // alert("Hello from frontend.js"); - const focusBulletPoints = document.querySelectorAll( - ".homegrade-blocks-focus-point-bullet", - ); - focusBulletPoints.forEach((focusPoint) => { - const focusPointsContainer = focusPoint.parentElement; - - focusPoint.addEventListener("mouseover", (event) => { - const aleradyHoveredFocusPoint = document.querySelector("[data-hovered]"); - - const focusTitle = focusPoint.getAttribute("data-focus-bullet-title"); - - const focusPointPopupContainer = document.createElement("div"); - focusPointPopupContainer.className = "focus-point-popup-container"; - - const focusPointPopupTitle = document.createElement("h4"); - focusPointPopupTitle.textContent = focusTitle; - focusPointPopupTitle.className = "focus-point-popup-container__title"; - - focusPointPopupContainer.appendChild(focusPointPopupTitle); - focusPoint.appendChild(focusPointPopupContainer); - focusPoint.setAttribute("data-hovered", ""); - }); - - focusPoint.addEventListener("mouseout", function () { - const focusPointPopupContainer = focusPoint.querySelector( - ".focus-point-popup-container", - ); - focusPointPopupContainer.remove(); - }); - }); -}); diff --git a/blocks/focused-schema/src/block.json b/blocks/focused-schema/src/block.json index ad3695b..a9782dd 100644 --- a/blocks/focused-schema/src/block.json +++ b/blocks/focused-schema/src/block.json @@ -21,12 +21,32 @@ "attribute": "alt", "default": "" }, + "showDescription": { + "type": "boolean", + "default": false + }, + "showLegend": { + "type": "boolean", + "default": false + }, "coverUrl": { "type": "string", "source": "attribute", "selector": "img", "attribute": "src" }, + "coverDescription": { + "type": "string", + "source": "attribute", + "selector": "img", + "attribute": "data-description" + }, + "coverLegend": { + "type": "string", + "source": "attribute", + "selector": "img", + "attribute": "data-legend" + }, "focusBullets": { "type": "array", "default": [] diff --git a/blocks/focused-schema/src/edit.js b/blocks/focused-schema/src/edit.js index e885233..52bddb2 100644 --- a/blocks/focused-schema/src/edit.js +++ b/blocks/focused-schema/src/edit.js @@ -7,6 +7,7 @@ import { useEffect, useState } from "@wordpress/element"; import { createBlock } from "@wordpress/blocks"; import { + InnerBlocks, useBlockProps, MediaPlaceholder, BlockControls, @@ -14,15 +15,17 @@ import { InspectorControls, } from "@wordpress/block-editor"; import { + ToggleControl, ToolbarButton, Spinner, withNotices, Button, PanelBody, + Tip, } from "@wordpress/components"; -import { InnerBlocks } from "@wordpress/block-editor"; import { isBlobURL, revokeBlobURL } from "@wordpress/blob"; +import { cover, handle, trash } from "@wordpress/icons"; function Edit({ attributes, @@ -33,7 +36,17 @@ function Edit({ clientId, ...props }) { - const { coverUrl, coverId, coverAlt, focusBullets } = attributes; + const { + coverUrl, + coverId, + coverAlt, + showLegend, + coverLegend, + showDescription, + coverDescription, + focusBullets, + } = attributes; + console.log(coverLegend); const [blobUrl, setBlobUrl] = useState(); const currentBlockDatas = useSelect((select) => { return select("core/block-editor").getBlocksByClientId(clientId)[0]; @@ -41,7 +54,7 @@ function Edit({ let children = useSelect( (select) => - select("core/block-editor").getBlocksByClientId(clientId)[0].innerBlocks + select("core/block-editor").getBlocksByClientId(clientId)[0].innerBlocks, ); function onUploadError(message) { @@ -53,15 +66,19 @@ function Edit({ setAttributes({ coverUrl: undefined, coverId: undefined, + coverDescription: "", + coverLegend: "", coverAlt: "", }); } - function updateImage(image) { + function updateCover(image) { if (!image || !image.url) { setAttributes({ coverUrl: undefined, coverId: undefined, + coverDescription: "", + coverLegend: "", coverAlt: "", }); return; @@ -70,6 +87,8 @@ function Edit({ coverUrl: image.url, coverId: image.id, coverAlt: image.alt, + coverDescription: image.description, + coverLegend: image.caption, }); } @@ -117,11 +136,18 @@ function Edit({ if (currentBlockDatas && currentBlockDatas.innerBlocks) { console.log(currentBlockDatas.innerBlocks[index].clientId); dispatch("core/block-editor").selectBlock( - currentBlockDatas.innerBlocks[index].clientId + currentBlockDatas.innerBlocks[index].clientId, ); } } + function handleShowDescription() { + setAttributes({ showDescription: !showDescription }); + } + function handleShowLegend() { + setAttributes({ showLegend: !showLegend }); + } + const renderedFocusPointBullets = focusBullets.map((focusBullet, index) => { return (
- + - - - {coverUrl && ( - <> + + {coverUrl && {coverAlt}} +
- - - )} - + {coverUrl && ( +
+
+ )} +
+
+ + + + + + + - {coverAlt} + {coverAlt} {renderedFocusPointBullets} {isBlobURL(coverUrl) && } )}
+

+ {showLegend && coverLegend && ( + {coverLegend} + )} + {showDescription && coverDescription && ( + {coverDescription} + )} +

    0.95) { + focusPosition.x = 0.95; + } + + if (focusPosition.y < 0.02) { + focusPosition.y = 0.02; + } + if (focusPosition.y > 0.98) { + focusPosition.y = 0.98; + } setAttributes({ focusPosition }); } function handleChangeTitle(focusTitle) { diff --git a/blocks/focused-schema/src/render.php b/blocks/focused-schema/src/render.php deleted file mode 100644 index e54c76a..0000000 --- a/blocks/focused-schema/src/render.php +++ /dev/null @@ -1,13 +0,0 @@ -'; -// print_r($attributes); -// print_r($blocks[0]); -// echo ''; -?> - -

    Salut

    - \ No newline at end of file diff --git a/blocks/focused-schema/src/save.js b/blocks/focused-schema/src/save.js index 6bdbffe..b12f0d9 100644 --- a/blocks/focused-schema/src/save.js +++ b/blocks/focused-schema/src/save.js @@ -8,7 +8,16 @@ import { import { InnerBlocks } from "@wordpress/block-editor"; export default function save({ attributes }) { - const { coverUrl, coverId, coverAlt, focusBullets } = attributes; + const { + coverUrl, + coverId, + coverAlt, + showDescription, + coverDescription, + showLegend, + coverLegend, + focusBullets, + } = attributes; const renderedFocusPointBullets = focusBullets.map((focusBullet, index) => { return (
    {renderedFocusPointBullets} )}
    +

    + {showLegend && coverLegend && ( + {coverLegend} + )} + {showDescription && coverDescription && ( + {coverDescription} + )} +

    +
    diff --git a/blocks/focused-schema/src/style.scss b/blocks/focused-schema/src/style.scss index f95ef5b..64ec3a6 100644 --- a/blocks/focused-schema/src/style.scss +++ b/blocks/focused-schema/src/style.scss @@ -11,6 +11,14 @@ } figcaption { + .legend + .description { + &:before { + content: "—"; + margin: 0 5px; + display: inline-block; + margin-bottom: 10px; + } + } ol { padding-top: 20px; counter-reset: myOrderedListItemsCounter;