introducing block feature
This commit is contained in:
parent
bc470b80a9
commit
67af63fc92
18
blocks/no-answers/.editorconfig
Normal file
18
blocks/no-answers/.editorconfig
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# This file is for unifying the coding style for different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
# WordPress Coding Standards
|
||||
# https://make.wordpress.org/core/handbook/coding-standards/
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_style = tab
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
30
blocks/no-answers/.gitignore
vendored
Normal file
30
blocks/no-answers/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Output of `npm pack`
|
||||
*.tgz
|
||||
|
||||
# Output of `wp-scripts plugin-zip`
|
||||
*.zip
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
18
blocks/no-answers/build/block.json
Normal file
18
blocks/no-answers/build/block.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 2,
|
||||
"name": "homegrade-content-blocks/no-answers",
|
||||
"version": "0.1.0",
|
||||
"title": "Pas de réponses ? ",
|
||||
"category": "homegrade-blocks",
|
||||
"icon": "smiley",
|
||||
"description": "Vous ne trouvez pas de réponse à votre question ?",
|
||||
"supports": {
|
||||
"html": false,
|
||||
"multiple": false
|
||||
},
|
||||
"textdomain": "homegrade-blocks",
|
||||
"editorScript": "file:./index.js",
|
||||
"editorStyle": "file:./index.css",
|
||||
"style": "file:./style-index.css"
|
||||
}
|
||||
1
blocks/no-answers/build/index.asset.php
Normal file
1
blocks/no-answers/build/index.asset.php
Normal file
|
|
@ -0,0 +1 @@
|
|||
<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-i18n'), 'version' => 'ff8ab5c917e851a74adc');
|
||||
13
blocks/no-answers/build/index.css
Normal file
13
blocks/no-answers/build/index.css
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** 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 ***!
|
||||
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/**
|
||||
* The following styles get applied inside the editor only.
|
||||
*
|
||||
* Replace them with your own styles or remove the file completely.
|
||||
*/
|
||||
.wp-block-create-block-multiblocks {
|
||||
border: 1px dotted #f00;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.css.map*/
|
||||
1
blocks/no-answers/build/index.css.map
Normal file
1
blocks/no-answers/build/index.css.map
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"index.css","mappings":";;;AAAA;;;;EAAA;AAMA;EACC;AAAD,C","sources":["webpack://multiblocks/./src/editor.scss"],"sourcesContent":["/**\n * The following styles get applied inside the editor only.\n *\n * Replace them with your own styles or remove the file completely.\n */\n\n.wp-block-create-block-multiblocks {\n\tborder: 1px dotted #f00;\n}\n"],"names":[],"sourceRoot":""}
|
||||
351
blocks/no-answers/build/index.js
Normal file
351
blocks/no-answers/build/index.js
Normal file
|
|
@ -0,0 +1,351 @@
|
|||
/******/ (() => { // webpackBootstrap
|
||||
/******/ "use strict";
|
||||
/******/ var __webpack_modules__ = ({
|
||||
|
||||
/***/ "./src/edit.js":
|
||||
/*!*********************!*\
|
||||
!*** ./src/edit.js ***!
|
||||
\*********************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
||||
/* harmony export */ "default": () => (/* binding */ Edit)
|
||||
/* harmony export */ });
|
||||
/* 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 _editor_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./editor.scss */ "./src/editor.scss");
|
||||
/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @wordpress/block-editor */ "@wordpress/block-editor");
|
||||
/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_3__);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function Edit() {
|
||||
return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", {
|
||||
...(0,_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_3__.useBlockProps)({
|
||||
id: "pas-de-reponses",
|
||||
className: `homegrade-blocks-no-answers`
|
||||
})
|
||||
}, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_3__.InnerBlocks, {
|
||||
allowedBlocks: ["homegrade-content-blocks/highlight"],
|
||||
template: [["homegrade-content-blocks/highlight", {
|
||||
iconName: "chain",
|
||||
title: "Vous ne trouvez pas de réponse à votre question ?"
|
||||
}]]
|
||||
}));
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./src/index.js":
|
||||
/*!**********************!*\
|
||||
!*** ./src/index.js ***!
|
||||
\**********************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* 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");
|
||||
/* harmony import */ var _edit__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./edit */ "./src/edit.js");
|
||||
/* harmony import */ var _save__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./save */ "./src/save.js");
|
||||
/* harmony import */ var _block_json__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./block.json */ "./src/block.json");
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__.registerBlockType)(_block_json__WEBPACK_IMPORTED_MODULE_5__.name, {
|
||||
icon: {
|
||||
src: (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", {
|
||||
xmlns: "http://www.w3.org/2000/svg",
|
||||
viewBox: "0 0 61.99 62"
|
||||
}, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("g", null, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", {
|
||||
class: "cls-1",
|
||||
d: "M46.85,32.74h4.81l.04.06c.65,1.04,1.75,1.66,2.94,1.66,1.91,0,3.46-1.55,3.46-3.47s-1.55-3.46-3.46-3.46h0c-1.2,0-2.3.62-2.94,1.66l-.04.06h-4.81c-.81-7.41-6.69-13.3-14.1-14.11v-4.82l.06-.04c1.03-.64,1.65-1.74,1.65-2.94,0-1.91-1.55-3.46-3.46-3.46s-3.46,1.55-3.46,3.46c0,1.21.62,2.31,1.65,2.94l.06.04v4.82c-7.41.81-13.3,6.69-14.11,14.11h-4.81l-.04-.06c-.65-1.04-1.75-1.66-2.94-1.66-1.91,0-3.46,1.55-3.46,3.46s1.55,3.47,3.46,3.47c1.2,0,2.3-.62,2.94-1.66l.04-.06h4.81c.81,7.42,6.69,13.3,14.11,14.11v4.81l-.06.04c-1.03.64-1.65,1.74-1.65,2.94,0,1.91,1.55,3.46,3.46,3.46s3.46-1.55,3.46-3.46c0-1.2-.62-2.3-1.65-2.94l-.06-.04v-4.81c7.41-.81,13.3-6.7,14.11-14.11ZM27.08,26.02c-.44-.23-.76-.61-.91-1.08-.15-.47-.11-.97.12-1.41,1.05-2.03,3.26-3.1,5.53-2.66,2,.39,3.6,1.99,3.99,3.99.47,2.41-.83,4.82-3.1,5.73h0s-.05,2.49-.05,2.49c0,1.02-.83,1.85-1.85,1.85s-1.85-.83-1.85-1.85v-2.44c0-1.53.93-2.89,2.37-3.47.63-.25.98-.91.85-1.6-.1-.53-.54-.97-1.07-1.07-.73-.14-1.3.27-1.54.73-.23.44-.61.76-1.08.91-.47.15-.97.11-1.41-.12ZM30.81,41.21c-1.32,0-2.39-1.07-2.39-2.39s1.07-2.39,2.39-2.39,2.39,1.07,2.39,2.39-1.07,2.39-2.39,2.39ZM19.62,13.96c.44.44,1.12.51,1.66.19,1.93-1.13,4.06-1.93,6.34-2.33v-.68c-1.09-.96-1.71-2.32-1.71-3.8,0-3.17,2.92-5.69,6.23-4.96,2.01.44,3.58,2.14,3.88,4.18.26,1.78-.37,3.45-1.65,4.58v.68c2.27.4,4.42,1.2,6.35,2.32.54.32,1.22.25,1.66-.19l6.4-6.4h-.01c.6-.6.5-1.59-.2-2.07C43.58,2.03,37.53,0,30.99,0s-12.59,2.02-17.58,5.48c-.7.48-.8,1.47-.2,2.07l6.41,6.41ZM56.51,13.42c-.48-.7-1.47-.8-2.07-.2l-6.41,6.4c-.44.44-.5,1.12-.19,1.66,1.12,1.93,1.92,4.07,2.32,6.35h.68c.96-1.09,2.33-1.72,3.8-1.72,3.12,0,5.59,2.82,5,6.05-.35,1.91-1.79,3.49-3.72,3.97-1.93.48-3.84-.16-5.08-1.56h-.68c-.4,2.27-1.2,4.42-2.32,6.35-.32.54-.25,1.22.19,1.66l6.41,6.41c.6.6,1.59.5,2.07-.2,3.45-5,5.48-11.05,5.48-17.59s-2.03-12.59-5.48-17.58ZM48.8,54.45l-6.4-6.4c-.44-.44-1.12-.5-1.66-.19-1.94,1.12-4.08,1.92-6.36,2.32v.68c1.28,1.13,1.91,2.8,1.65,4.58-.3,2.03-1.87,3.74-3.88,4.18-3.31.73-6.24-1.79-6.24-4.96,0-1.48.62-2.84,1.71-3.8v-.68c-2.27-.4-4.41-1.2-6.34-2.33-.54-.32-1.22-.25-1.66.19l-6.41,6.41c-.6.6-.5,1.59.2,2.07,5,3.45,11.06,5.48,17.59,5.48s12.59-2.03,17.58-5.48c.7-.48.8-1.47.2-2.07h.02ZM14.14,40.73c-1.12-1.94-1.92-4.08-2.32-6.36h-.69c-.96,1.09-2.33,1.72-3.8,1.72-3.12,0-5.59-2.82-5-6.05.35-1.91,1.79-3.49,3.72-3.97,1.93-.48,3.84.16,5.08,1.56h.68c.4-2.27,1.2-4.42,2.33-6.35.32-.54.25-1.22-.19-1.66l-6.41-6.41c-.6-.6-1.59-.5-2.07.2C2.01,18.41,0,24.46,0,31s2.02,12.59,5.48,17.59c.48.7,1.47.8,2.07.2l6.4-6.4c.44-.44.5-1.12.19-1.66Z"
|
||||
}))),
|
||||
foreground: "#DF1E1E"
|
||||
},
|
||||
edit: _edit__WEBPACK_IMPORTED_MODULE_3__["default"],
|
||||
save: _save__WEBPACK_IMPORTED_MODULE_4__["default"]
|
||||
});
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./src/save.js":
|
||||
/*!*********************!*\
|
||||
!*** ./src/save.js ***!
|
||||
\*********************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
||||
/* harmony export */ "default": () => (/* binding */ save)
|
||||
/* harmony export */ });
|
||||
/* 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__);
|
||||
|
||||
|
||||
function save({
|
||||
attributes
|
||||
}) {
|
||||
return (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("div", {
|
||||
..._wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.useBlockProps.save({
|
||||
id: "pas-de-reponses",
|
||||
className: `homegrade-blocks-no-answers`
|
||||
})
|
||||
}, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_1__.InnerBlocks.Content, null));
|
||||
}
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./src/editor.scss":
|
||||
/*!*************************!*\
|
||||
!*** ./src/editor.scss ***!
|
||||
\*************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./src/style.scss":
|
||||
/*!************************!*\
|
||||
!*** ./src/style.scss ***!
|
||||
\************************/
|
||||
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "react":
|
||||
/*!************************!*\
|
||||
!*** external "React" ***!
|
||||
\************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = window["React"];
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "@wordpress/block-editor":
|
||||
/*!*************************************!*\
|
||||
!*** external ["wp","blockEditor"] ***!
|
||||
\*************************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = window["wp"]["blockEditor"];
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "@wordpress/blocks":
|
||||
/*!********************************!*\
|
||||
!*** external ["wp","blocks"] ***!
|
||||
\********************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = window["wp"]["blocks"];
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "@wordpress/i18n":
|
||||
/*!******************************!*\
|
||||
!*** external ["wp","i18n"] ***!
|
||||
\******************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = window["wp"]["i18n"];
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./src/block.json":
|
||||
/*!************************!*\
|
||||
!*** ./src/block.json ***!
|
||||
\************************/
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":2,"name":"homegrade-content-blocks/no-answers","version":"0.1.0","title":"Pas de réponses ? ","category":"homegrade-blocks","icon":"smiley","description":"Vous ne trouvez pas de réponse à votre question ?","supports":{"html":false,"multiple":false},"textdomain":"homegrade-blocks","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css"}');
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
/************************************************************************/
|
||||
/******/ // The module cache
|
||||
/******/ var __webpack_module_cache__ = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/ // Check if module is in cache
|
||||
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
||||
/******/ if (cachedModule !== undefined) {
|
||||
/******/ return cachedModule.exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = __webpack_module_cache__[moduleId] = {
|
||||
/******/ // no module.id needed
|
||||
/******/ // no module.loaded needed
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = __webpack_modules__;
|
||||
/******/
|
||||
/************************************************************************/
|
||||
/******/ /* webpack/runtime/chunk loaded */
|
||||
/******/ (() => {
|
||||
/******/ var deferred = [];
|
||||
/******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
|
||||
/******/ if(chunkIds) {
|
||||
/******/ priority = priority || 0;
|
||||
/******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
|
||||
/******/ deferred[i] = [chunkIds, fn, priority];
|
||||
/******/ return;
|
||||
/******/ }
|
||||
/******/ var notFulfilled = Infinity;
|
||||
/******/ for (var i = 0; i < deferred.length; i++) {
|
||||
/******/ 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])))) {
|
||||
/******/ chunkIds.splice(j--, 1);
|
||||
/******/ } else {
|
||||
/******/ fulfilled = false;
|
||||
/******/ if(priority < notFulfilled) notFulfilled = priority;
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ if(fulfilled) {
|
||||
/******/ deferred.splice(i--, 1)
|
||||
/******/ var r = fn();
|
||||
/******/ if (r !== undefined) result = r;
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ return result;
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/compat get default export */
|
||||
/******/ (() => {
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = (module) => {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ () => (module['default']) :
|
||||
/******/ () => (module);
|
||||
/******/ __webpack_require__.d(getter, { a: getter });
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/define property getters */
|
||||
/******/ (() => {
|
||||
/******/ // define getter functions for harmony exports
|
||||
/******/ __webpack_require__.d = (exports, definition) => {
|
||||
/******/ for(var key in definition) {
|
||||
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
||||
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
||||
/******/ (() => {
|
||||
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/make namespace object */
|
||||
/******/ (() => {
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = (exports) => {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/jsonp chunk loading */
|
||||
/******/ (() => {
|
||||
/******/ // no baseURI
|
||||
/******/
|
||||
/******/ // object to store loaded and loading chunks
|
||||
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
||||
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
||||
/******/ var installedChunks = {
|
||||
/******/ "index": 0,
|
||||
/******/ "./style-index": 0
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // no chunk on demand loading
|
||||
/******/
|
||||
/******/ // no prefetching
|
||||
/******/
|
||||
/******/ // no preloaded
|
||||
/******/
|
||||
/******/ // no HMR
|
||||
/******/
|
||||
/******/ // no HMR manifest
|
||||
/******/
|
||||
/******/ __webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);
|
||||
/******/
|
||||
/******/ // install a JSONP callback for chunk loading
|
||||
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
|
||||
/******/ 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;
|
||||
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
|
||||
/******/ for(moduleId in moreModules) {
|
||||
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
||||
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ if(runtime) var result = runtime(__webpack_require__);
|
||||
/******/ }
|
||||
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
|
||||
/******/ for(;i < chunkIds.length; i++) {
|
||||
/******/ chunkId = chunkIds[i];
|
||||
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
||||
/******/ installedChunks[chunkId][0]();
|
||||
/******/ }
|
||||
/******/ installedChunks[chunkId] = 0;
|
||||
/******/ }
|
||||
/******/ return __webpack_require__.O(result);
|
||||
/******/ }
|
||||
/******/
|
||||
/******/ var chunkLoadingGlobal = globalThis["webpackChunkmultiblocks"] = globalThis["webpackChunkmultiblocks"] || [];
|
||||
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
|
||||
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
|
||||
/******/ })();
|
||||
/******/
|
||||
/************************************************************************/
|
||||
/******/
|
||||
/******/ // startup
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ // This entry module depends on other loaded chunks and execution need to be delayed
|
||||
/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["./style-index"], () => (__webpack_require__("./src/index.js")))
|
||||
/******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
|
||||
/******/
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=index.js.map
|
||||
1
blocks/no-answers/build/index.js.map
Normal file
1
blocks/no-answers/build/index.js.map
Normal file
File diff suppressed because one or more lines are too long
16
blocks/no-answers/build/style-index.css
Normal file
16
blocks/no-answers/build/style-index.css
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
||||
!*** 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 ***!
|
||||
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
||||
/**
|
||||
* The following styles get applied both on the front of your site
|
||||
* and in the editor.
|
||||
*
|
||||
* Replace them with your own styles or remove the file completely.
|
||||
*/
|
||||
.wp-block-create-block-multiblocks {
|
||||
background-color: #21759b;
|
||||
color: #fff;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=style-index.css.map*/
|
||||
1
blocks/no-answers/build/style-index.css.map
Normal file
1
blocks/no-answers/build/style-index.css.map
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"./style-index.css","mappings":";;;AAAA;;;;;EAAA;AAOA;EACC;EACA;EACA;AAAD,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.wp-block-create-block-multiblocks {\n\tbackground-color: #21759b;\n\tcolor: #fff;\n\tpadding: 2px;\n}\n"],"names":[],"sourceRoot":""}
|
||||
20
blocks/no-answers/package.json
Normal file
20
blocks/no-answers/package.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "multiblocks",
|
||||
"version": "0.1.0",
|
||||
"description": "Example block scaffolded with Create Block tool.",
|
||||
"author": "The WordPress Contributors",
|
||||
"license": "GPL-2.0-or-later",
|
||||
"main": "build/index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"format": "wp-scripts format",
|
||||
"lint:css": "wp-scripts lint-style",
|
||||
"lint:js": "wp-scripts lint-js",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^26.9.0"
|
||||
}
|
||||
}
|
||||
10956
blocks/no-answers/pnpm-lock.yaml
Normal file
10956
blocks/no-answers/pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load Diff
18
blocks/no-answers/src/block.json
Normal file
18
blocks/no-answers/src/block.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/block.json",
|
||||
"apiVersion": 2,
|
||||
"name": "homegrade-content-blocks/no-answers",
|
||||
"version": "0.1.0",
|
||||
"title": "Pas de réponses ? ",
|
||||
"category": "homegrade-blocks",
|
||||
"icon": "smiley",
|
||||
"description": "Vous ne trouvez pas de réponse à votre question ?",
|
||||
"supports": {
|
||||
"html": false,
|
||||
"multiple": false
|
||||
},
|
||||
"textdomain": "homegrade-blocks",
|
||||
"editorScript": "file:./index.js",
|
||||
"editorStyle": "file:./index.css",
|
||||
"style": "file:./style-index.css"
|
||||
}
|
||||
34
blocks/no-answers/src/edit.js
Normal file
34
blocks/no-answers/src/edit.js
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
import { __ } from "@wordpress/i18n";
|
||||
import "./editor.scss";
|
||||
|
||||
import {
|
||||
useBlockProps,
|
||||
RichText,
|
||||
BlockControls,
|
||||
InnerBlocks,
|
||||
} from "@wordpress/block-editor";
|
||||
import { title } from "@wordpress/icons";
|
||||
|
||||
export default function Edit() {
|
||||
return (
|
||||
<div
|
||||
{...useBlockProps({
|
||||
id: "pas-de-reponses",
|
||||
className: `homegrade-blocks-no-answers`,
|
||||
})}
|
||||
>
|
||||
<InnerBlocks
|
||||
allowedBlocks={["homegrade-content-blocks/highlight"]}
|
||||
template={[
|
||||
[
|
||||
"homegrade-content-blocks/highlight",
|
||||
{
|
||||
iconName: "chain",
|
||||
title: "Vous ne trouvez pas de réponse à votre question ?",
|
||||
},
|
||||
],
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
9
blocks/no-answers/src/editor.scss
Normal file
9
blocks/no-answers/src/editor.scss
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* The following styles get applied inside the editor only.
|
||||
*
|
||||
* Replace them with your own styles or remove the file completely.
|
||||
*/
|
||||
|
||||
.wp-block-create-block-multiblocks {
|
||||
border: 1px dotted #f00;
|
||||
}
|
||||
24
blocks/no-answers/src/index.js
Normal file
24
blocks/no-answers/src/index.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { registerBlockType } from "@wordpress/blocks";
|
||||
import "./style.scss";
|
||||
|
||||
import Edit from "./edit";
|
||||
import save from "./save";
|
||||
import metadata from "./block.json";
|
||||
|
||||
registerBlockType(metadata.name, {
|
||||
icon: {
|
||||
src: (
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61.99 62">
|
||||
<g>
|
||||
<path
|
||||
class="cls-1"
|
||||
d="M46.85,32.74h4.81l.04.06c.65,1.04,1.75,1.66,2.94,1.66,1.91,0,3.46-1.55,3.46-3.47s-1.55-3.46-3.46-3.46h0c-1.2,0-2.3.62-2.94,1.66l-.04.06h-4.81c-.81-7.41-6.69-13.3-14.1-14.11v-4.82l.06-.04c1.03-.64,1.65-1.74,1.65-2.94,0-1.91-1.55-3.46-3.46-3.46s-3.46,1.55-3.46,3.46c0,1.21.62,2.31,1.65,2.94l.06.04v4.82c-7.41.81-13.3,6.69-14.11,14.11h-4.81l-.04-.06c-.65-1.04-1.75-1.66-2.94-1.66-1.91,0-3.46,1.55-3.46,3.46s1.55,3.47,3.46,3.47c1.2,0,2.3-.62,2.94-1.66l.04-.06h4.81c.81,7.42,6.69,13.3,14.11,14.11v4.81l-.06.04c-1.03.64-1.65,1.74-1.65,2.94,0,1.91,1.55,3.46,3.46,3.46s3.46-1.55,3.46-3.46c0-1.2-.62-2.3-1.65-2.94l-.06-.04v-4.81c7.41-.81,13.3-6.7,14.11-14.11ZM27.08,26.02c-.44-.23-.76-.61-.91-1.08-.15-.47-.11-.97.12-1.41,1.05-2.03,3.26-3.1,5.53-2.66,2,.39,3.6,1.99,3.99,3.99.47,2.41-.83,4.82-3.1,5.73h0s-.05,2.49-.05,2.49c0,1.02-.83,1.85-1.85,1.85s-1.85-.83-1.85-1.85v-2.44c0-1.53.93-2.89,2.37-3.47.63-.25.98-.91.85-1.6-.1-.53-.54-.97-1.07-1.07-.73-.14-1.3.27-1.54.73-.23.44-.61.76-1.08.91-.47.15-.97.11-1.41-.12ZM30.81,41.21c-1.32,0-2.39-1.07-2.39-2.39s1.07-2.39,2.39-2.39,2.39,1.07,2.39,2.39-1.07,2.39-2.39,2.39ZM19.62,13.96c.44.44,1.12.51,1.66.19,1.93-1.13,4.06-1.93,6.34-2.33v-.68c-1.09-.96-1.71-2.32-1.71-3.8,0-3.17,2.92-5.69,6.23-4.96,2.01.44,3.58,2.14,3.88,4.18.26,1.78-.37,3.45-1.65,4.58v.68c2.27.4,4.42,1.2,6.35,2.32.54.32,1.22.25,1.66-.19l6.4-6.4h-.01c.6-.6.5-1.59-.2-2.07C43.58,2.03,37.53,0,30.99,0s-12.59,2.02-17.58,5.48c-.7.48-.8,1.47-.2,2.07l6.41,6.41ZM56.51,13.42c-.48-.7-1.47-.8-2.07-.2l-6.41,6.4c-.44.44-.5,1.12-.19,1.66,1.12,1.93,1.92,4.07,2.32,6.35h.68c.96-1.09,2.33-1.72,3.8-1.72,3.12,0,5.59,2.82,5,6.05-.35,1.91-1.79,3.49-3.72,3.97-1.93.48-3.84-.16-5.08-1.56h-.68c-.4,2.27-1.2,4.42-2.32,6.35-.32.54-.25,1.22.19,1.66l6.41,6.41c.6.6,1.59.5,2.07-.2,3.45-5,5.48-11.05,5.48-17.59s-2.03-12.59-5.48-17.58ZM48.8,54.45l-6.4-6.4c-.44-.44-1.12-.5-1.66-.19-1.94,1.12-4.08,1.92-6.36,2.32v.68c1.28,1.13,1.91,2.8,1.65,4.58-.3,2.03-1.87,3.74-3.88,4.18-3.31.73-6.24-1.79-6.24-4.96,0-1.48.62-2.84,1.71-3.8v-.68c-2.27-.4-4.41-1.2-6.34-2.33-.54-.32-1.22-.25-1.66.19l-6.41,6.41c-.6.6-.5,1.59.2,2.07,5,3.45,11.06,5.48,17.59,5.48s12.59-2.03,17.58-5.48c.7-.48.8-1.47.2-2.07h.02ZM14.14,40.73c-1.12-1.94-1.92-4.08-2.32-6.36h-.69c-.96,1.09-2.33,1.72-3.8,1.72-3.12,0-5.59-2.82-5-6.05.35-1.91,1.79-3.49,3.72-3.97,1.93-.48,3.84.16,5.08,1.56h.68c.4-2.27,1.2-4.42,2.33-6.35.32-.54.25-1.22-.19-1.66l-6.41-6.41c-.6-.6-1.59-.5-2.07.2C2.01,18.41,0,24.46,0,31s2.02,12.59,5.48,17.59c.48.7,1.47.8,2.07.2l6.4-6.4c.44-.44.5-1.12.19-1.66Z"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
||||
),
|
||||
foreground: "#DF1E1E",
|
||||
},
|
||||
edit: Edit,
|
||||
save,
|
||||
});
|
||||
14
blocks/no-answers/src/save.js
Normal file
14
blocks/no-answers/src/save.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { useBlockProps, InnerBlocks } from "@wordpress/block-editor";
|
||||
|
||||
export default function save({ attributes }) {
|
||||
return (
|
||||
<div
|
||||
{...useBlockProps.save({
|
||||
id: "pas-de-reponses",
|
||||
className: `homegrade-blocks-no-answers`,
|
||||
})}
|
||||
>
|
||||
<InnerBlocks.Content />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
12
blocks/no-answers/src/style.scss
Normal file
12
blocks/no-answers/src/style.scss
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/**
|
||||
* The following styles get applied both on the front of your site
|
||||
* and in the editor.
|
||||
*
|
||||
* Replace them with your own styles or remove the file completely.
|
||||
*/
|
||||
|
||||
.wp-block-create-block-multiblocks {
|
||||
background-color: #21759b;
|
||||
color: #fff;
|
||||
padding: 2px;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user