@eeacms/volto-group-block 8.1.1 → 10.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +7 -2
- package/CHANGELOG.md +18 -40
- package/DEVELOP.md +23 -17
- package/README.md +45 -19
- package/cypress.config.js +9 -0
- package/docker-compose.yml +1 -1
- package/jest-addon.config.js +10 -4
- package/locales/de/LC_MESSAGES/volto.po +0 -20
- package/locales/en/LC_MESSAGES/volto.po +0 -20
- package/locales/it/LC_MESSAGES/volto.po +0 -20
- package/locales/ro/LC_MESSAGES/volto.po +0 -20
- package/locales/volto.pot +0 -20
- package/package.json +1 -1
- package/src/components/manage/Blocks/Group/CounterComponent.jsx +13 -4
- package/src/components/manage/Blocks/Group/CounterComponent.test.jsx +116 -1
- package/src/components/manage/Blocks/Group/DefaultBody.jsx +30 -47
- package/src/components/manage/Blocks/Group/DefaultBody.test.jsx +28 -5
- package/src/components/manage/Blocks/Group/Edit.jsx +48 -19
- package/src/components/manage/Blocks/Group/Edit.test.jsx +17 -1
- package/src/components/manage/Blocks/Group/LayoutSchema.jsx +8 -0
- package/src/components/manage/Blocks/Group/View.test.jsx +1 -1
- package/src/components/manage/Blocks/Group/editor.less +5 -30
- package/src/components/manage/Blocks/Group/EditBlockWrapper.jsx +0 -197
- package/src/components/manage/Blocks/Group/EditBlockWrapper.test.jsx +0 -58
package/.eslintrc.js
CHANGED
|
@@ -3,6 +3,11 @@ const path = require('path');
|
|
|
3
3
|
const projectRootPath = fs.realpathSync(__dirname + '/../../../');
|
|
4
4
|
|
|
5
5
|
let voltoPath = path.join(projectRootPath, 'node_modules/@plone/volto');
|
|
6
|
+
const voltoSlatePath = fs.existsSync(
|
|
7
|
+
path.join(projectRootPath, 'node_modules/@plone/volto-slate/src'),
|
|
8
|
+
)
|
|
9
|
+
? '@plone/volto-slate/src'
|
|
10
|
+
: '@plone/volto/packages/volto-slate/src';
|
|
6
11
|
let configFile;
|
|
7
12
|
if (fs.existsSync(`${projectRootPath}/tsconfig.json`))
|
|
8
13
|
configFile = `${projectRootPath}/tsconfig.json`;
|
|
@@ -34,7 +39,7 @@ const defaultConfig = {
|
|
|
34
39
|
alias: {
|
|
35
40
|
map: [
|
|
36
41
|
['@plone/volto', '@plone/volto/src'],
|
|
37
|
-
['@plone/volto-slate',
|
|
42
|
+
['@plone/volto-slate', voltoSlatePath],
|
|
38
43
|
...addonAliases,
|
|
39
44
|
['@package', `${__dirname}/src`],
|
|
40
45
|
['@root', `${__dirname}/src`],
|
|
@@ -54,7 +59,7 @@ const defaultConfig = {
|
|
|
54
59
|
allowReferrer: true,
|
|
55
60
|
},
|
|
56
61
|
],
|
|
57
|
-
}
|
|
62
|
+
},
|
|
58
63
|
};
|
|
59
64
|
|
|
60
65
|
const config = addonExtenders.reduce(
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
### [10.0.0](https://github.com/eea/volto-group-block/compare/9.0.0...10.0.0) - 27 March 2026
|
|
8
|
+
|
|
9
|
+
#### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
- feat: Volto 18 support - refs #287700 [Nilesh - [`eab0346`](https://github.com/eea/volto-group-block/commit/eab0346ec36eedc552958b744ae82927b88058cf)]
|
|
12
|
+
|
|
13
|
+
#### :house: Internal changes
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
#### :hammer_and_wrench: Others
|
|
17
|
+
|
|
18
|
+
- tests: Fix Sonar Qube tags - refs #297339 [Alin Voinea - [`75babfe`](https://github.com/eea/volto-group-block/commit/75babfeaa1ee5f707803a24a532a28c969d94a19)]
|
|
19
|
+
## [9.0.0](https://github.com/eea/volto-group-block/compare/8.1.1...9.0.0) - 10 February 2026
|
|
20
|
+
|
|
21
|
+
#### :rocket: New Features
|
|
22
|
+
|
|
23
|
+
- feat: Persist charCount to block data and add maxCharsOverflowPercent - refs #294806 [Alin Voinea - [`b5bbd75`](https://github.com/eea/volto-group-block/commit/b5bbd7516cb8cb6bcff8541d711fd9fa74a4d92c)]
|
|
24
|
+
|
|
7
25
|
### [8.1.1](https://github.com/eea/volto-group-block/compare/8.1.0...8.1.1) - 26 January 2026
|
|
8
26
|
|
|
9
27
|
#### :hammer_and_wrench: Others
|
|
@@ -23,16 +41,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
23
41
|
|
|
24
42
|
#### :house: Internal changes
|
|
25
43
|
|
|
26
|
-
- chore: [JENKINS] fix sonarqube tags [valentinab25 - [`6dbeeb3`](https://github.com/eea/volto-group-block/commit/6dbeeb3b42ee1e69692dcb466bbff921a54ddabb)]
|
|
27
44
|
|
|
28
45
|
#### :hammer_and_wrench: Others
|
|
29
46
|
|
|
30
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`8e153d3`](https://github.com/eea/volto-group-block/commit/8e153d34ef330adeb5b1ef7d96b2ff433ecec5ff)]
|
|
31
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`405738f`](https://github.com/eea/volto-group-block/commit/405738f8f13a236ad89f5f9870316322b1522518)]
|
|
32
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`84d6509`](https://github.com/eea/volto-group-block/commit/84d6509edf1b0821bd8709cf603f1025f99d18ff)]
|
|
33
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`ffb8602`](https://github.com/eea/volto-group-block/commit/ffb860257444d9ca05412111081a1320def9ee78)]
|
|
34
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`4bd723a`](https://github.com/eea/volto-group-block/commit/4bd723a108b4c9d6e78cc7c1ceec58573c57abf2)]
|
|
35
|
-
- Add Sonarqube tag using ied-frontend addons list [EEA Jenkins - [`4f803d3`](https://github.com/eea/volto-group-block/commit/4f803d38efffcdc87f0dc0173b4142d9398bd2db)]
|
|
36
47
|
### [7.1.1](https://github.com/eea/volto-group-block/compare/7.1.0...7.1.1) - 30 January 2025
|
|
37
48
|
|
|
38
49
|
#### :house: Internal changes
|
|
@@ -60,9 +71,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
60
71
|
|
|
61
72
|
#### :hammer_and_wrench: Others
|
|
62
73
|
|
|
63
|
-
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`e727ac6`](https://github.com/eea/volto-group-block/commit/e727ac6a8c1882b4e77a08fd0c5bb0a401cd3bdb)]
|
|
64
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`75c2946`](https://github.com/eea/volto-group-block/commit/75c29460dc6c42bbb799c13a5a6ef2bb8f26ed5a)]
|
|
65
|
-
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`96f3133`](https://github.com/eea/volto-group-block/commit/96f31335cdda925daf3e5824f0a23121b0c9b3ef)]
|
|
66
74
|
### [6.4.0](https://github.com/eea/volto-group-block/compare/6.3.5...6.4.0) - 17 January 2024
|
|
67
75
|
|
|
68
76
|
#### :rocket: New Features
|
|
@@ -77,7 +85,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
77
85
|
|
|
78
86
|
#### :house: Internal changes
|
|
79
87
|
|
|
80
|
-
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`616f6eb`](https://github.com/eea/volto-group-block/commit/616f6ebe0385d82a827c6679eabdcf4e92a18c11)]
|
|
81
88
|
|
|
82
89
|
#### :hammer_and_wrench: Others
|
|
83
90
|
|
|
@@ -90,11 +97,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
90
97
|
- Prettier [kreafox - [`0c5d2d1`](https://github.com/eea/volto-group-block/commit/0c5d2d1a494489663cc97c5dc0f4ad13c4b67c8d)]
|
|
91
98
|
- test: mock useLocation [kreafox - [`746887f`](https://github.com/eea/volto-group-block/commit/746887fa0e778f2d4cbe86661fc8c38c8a4bafb5)]
|
|
92
99
|
- test: mock useLocation [kreafox - [`a360401`](https://github.com/eea/volto-group-block/commit/a360401b8ee05e9cb54b253b0e605d0a040c8f78)]
|
|
93
|
-
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`25030fb`](https://github.com/eea/volto-group-block/commit/25030fbd69108f90df02130e5010e56398941ad2)]
|
|
94
|
-
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`1517dbb`](https://github.com/eea/volto-group-block/commit/1517dbb81cf9128752d835ae59dc22b251f4b035)]
|
|
95
|
-
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`b0ba5f9`](https://github.com/eea/volto-group-block/commit/b0ba5f9c6d37526411a7a984595ac624401f8ac5)]
|
|
96
|
-
- test: [JENKINS] Increase shm-size to cypress docker [valentinab25 - [`8dbdfeb`](https://github.com/eea/volto-group-block/commit/8dbdfeb89fe53c6dc2f476b183a53c9266ab2bdf)]
|
|
97
|
-
- test: [JENKINS] Improve cypress time [valentinab25 - [`d0324f4`](https://github.com/eea/volto-group-block/commit/d0324f4aad6d94233ca8ce3645ca5162f39d9834)]
|
|
98
100
|
### [6.3.4](https://github.com/eea/volto-group-block/compare/6.3.3...6.3.4) - 22 October 2023
|
|
99
101
|
|
|
100
102
|
### [6.3.3](https://github.com/eea/volto-group-block/compare/6.3.2...6.3.3) - 17 October 2023
|
|
@@ -142,7 +144,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
142
144
|
|
|
143
145
|
- Release #39 from eea/develop [ichim-david - [`283e1e8`](https://github.com/eea/volto-group-block/commit/283e1e8dd1047415bae054cfd502d1691deaeb59)]
|
|
144
146
|
- Release 6.3.0 [Alin Voinea - [`3d74bb5`](https://github.com/eea/volto-group-block/commit/3d74bb5342e3882e0ddee1aa8edab7e90949def6)]
|
|
145
|
-
- test: Fix eslint and yarn i18n [Alin Voinea - [`763f764`](https://github.com/eea/volto-group-block/commit/763f76448625e05b53a2bde86ca48dda0cb263cb)]
|
|
146
147
|
- i18n: Add en [Alin Voinea - [`f3385cd`](https://github.com/eea/volto-group-block/commit/f3385cd33bfbe3efe514fd82fd140d17e33051e1)]
|
|
147
148
|
- test: Update Makefile and docker-compose to align it with Jenkinsfile [valentinab25 - [`3aa996b`](https://github.com/eea/volto-group-block/commit/3aa996b4c115da6f37ca771f07f10d58fbfa33e8)]
|
|
148
149
|
- fix eslint warnings [nileshgulia1 - [`cfdf2e9`](https://github.com/eea/volto-group-block/commit/cfdf2e900bcc456fa5a24ce7b03859170ad024ba)]
|
|
@@ -173,7 +174,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
173
174
|
|
|
174
175
|
#### :house: Internal changes
|
|
175
176
|
|
|
176
|
-
- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`ad30e83`](https://github.com/eea/volto-group-block/commit/ad30e832bb869b67dc4e64ed99590b51cb80ab75)]
|
|
177
177
|
|
|
178
178
|
#### :hammer_and_wrench: Others
|
|
179
179
|
|
|
@@ -190,19 +190,12 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
190
190
|
|
|
191
191
|
#### :hammer_and_wrench: Others
|
|
192
192
|
|
|
193
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`37ffae5`](https://github.com/eea/volto-group-block/commit/37ffae512967b36af22cbed208a3ec9e1ddc392b)]
|
|
194
193
|
## [6.0.0](https://github.com/eea/volto-group-block/compare/5.0.1...6.0.0) - 24 March 2023
|
|
195
194
|
|
|
196
195
|
#### :hammer_and_wrench: Others
|
|
197
196
|
|
|
198
197
|
- (feat): Possibility to copy/cut/paste blocks within section group block - refs #157469 [dobri1408 - [`e9fc098`](https://github.com/eea/volto-group-block/commit/e9fc09825ba2ae258feb77864491d97d94c585b4)]
|
|
199
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`db4b09a`](https://github.com/eea/volto-group-block/commit/db4b09a6c14a8b271dec0c766886ffbcc3fe205e)]
|
|
200
|
-
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`b8c2bf4`](https://github.com/eea/volto-group-block/commit/b8c2bf471868bb0394b2dbbf75ccb7917a9ef0bf)]
|
|
201
|
-
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`b343119`](https://github.com/eea/volto-group-block/commit/b3431196931fd568476fa8bf6fbc508e086229ae)]
|
|
202
198
|
- test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`2f42e7c`](https://github.com/eea/volto-group-block/commit/2f42e7c19a1da5a9c6a883cb4f101e8fa224ff94)]
|
|
203
|
-
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`73afcc2`](https://github.com/eea/volto-group-block/commit/73afcc2f417797cedaa78cceefb007001d6c2406)]
|
|
204
|
-
- yarn 3 [Alin Voinea - [`3c00ccc`](https://github.com/eea/volto-group-block/commit/3c00ccc7110bbf12a4d268182313418fb46b1a5d)]
|
|
205
|
-
- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`9b9662b`](https://github.com/eea/volto-group-block/commit/9b9662bda1da70ba0c3a7b4b05cebf130ed89e9e)]
|
|
206
199
|
### [5.0.1](https://github.com/eea/volto-group-block/compare/5.0.0...5.0.1) - 16 November 2022
|
|
207
200
|
|
|
208
201
|
#### :nail_care: Enhancements
|
|
@@ -219,8 +212,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
219
212
|
|
|
220
213
|
- Prepare 5.0.0 release [Miu Razvan - [`88c0ddd`](https://github.com/eea/volto-group-block/commit/88c0ddd569aeda7ee34d1eadea6a087f4e7dc257)]
|
|
221
214
|
- Update dependencies [Alin Voinea - [`c8405af`](https://github.com/eea/volto-group-block/commit/c8405afb830cdf62e7877bf30b619933519e1d71)]
|
|
222
|
-
- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`18e26c6`](https://github.com/eea/volto-group-block/commit/18e26c6939706d572ab8574e9b1826b9abc76314)]
|
|
223
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`8ed6d21`](https://github.com/eea/volto-group-block/commit/8ed6d21d8489911cc4cb471e3f8823c35f4adc50)]
|
|
224
215
|
### [4.3.8](https://github.com/eea/volto-group-block/compare/4.3.7...4.3.8) - 26 August 2022
|
|
225
216
|
|
|
226
217
|
### [4.3.7](https://github.com/eea/volto-group-block/compare/4.3.6...4.3.7) - 22 August 2022
|
|
@@ -233,9 +224,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
233
224
|
|
|
234
225
|
#### :hammer_and_wrench: Others
|
|
235
226
|
|
|
236
|
-
- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`4e73f8b`](https://github.com/eea/volto-group-block/commit/4e73f8be3c73559557efadc410cb56abc055d82d)]
|
|
237
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`3040335`](https://github.com/eea/volto-group-block/commit/3040335002c63b50208c95918413bc958150e7a9)]
|
|
238
|
-
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`386f730`](https://github.com/eea/volto-group-block/commit/386f730ed65f73fe1468b9b77351c97fb70edcc5)]
|
|
239
227
|
### [4.3.5](https://github.com/eea/volto-group-block/compare/4.3.4...4.3.5) - 4 January 2022
|
|
240
228
|
|
|
241
229
|
### [4.3.4](https://github.com/eea/volto-group-block/compare/4.3.3...4.3.4) - 3 January 2022
|
|
@@ -244,23 +232,15 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
244
232
|
|
|
245
233
|
#### :hammer_and_wrench: Others
|
|
246
234
|
|
|
247
|
-
- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`3e62d79`](https://github.com/eea/volto-group-block/commit/3e62d79a7ed37d10d623bc845d43e1144f8080f7)]
|
|
248
235
|
### [4.3.2](https://github.com/eea/volto-group-block/compare/4.3.1...4.3.2) - 10 December 2021
|
|
249
236
|
|
|
250
237
|
#### :hammer_and_wrench: Others
|
|
251
238
|
|
|
252
239
|
- Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`bc36cf5`](https://github.com/eea/volto-group-block/commit/bc36cf58c39e2b43c2fbf5189df6ddefc1260857)]
|
|
253
|
-
- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`8038e78`](https://github.com/eea/volto-group-block/commit/8038e783c1e8ddd71e21f72070fdfa8e7e098993)]
|
|
254
|
-
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`daccdbc`](https://github.com/eea/volto-group-block/commit/daccdbc733e47be7d6536eb67f8f2eea038dc94b)]
|
|
255
240
|
### [4.3.1](https://github.com/eea/volto-group-block/compare/4.3.0...4.3.1) - 11 October 2021
|
|
256
241
|
|
|
257
242
|
#### :hammer_and_wrench: Others
|
|
258
243
|
|
|
259
|
-
- Add Sonarqube tag using bise-frontend addons list [EEA Jenkins - [`b0092e4`](https://github.com/eea/volto-group-block/commit/b0092e4f78a1a0184e22e32bb9806cd57417dfb2)]
|
|
260
|
-
- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`ff8889c`](https://github.com/eea/volto-group-block/commit/ff8889cb7b0761b1df43b201984ce40b14e1561b)]
|
|
261
|
-
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`0375c28`](https://github.com/eea/volto-group-block/commit/0375c28ed1ffe9186a4790b454795c0ca8039f72)]
|
|
262
|
-
- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`c392190`](https://github.com/eea/volto-group-block/commit/c392190f044f5d9397bd2fb8c3d6a357f84960d0)]
|
|
263
|
-
- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`9694501`](https://github.com/eea/volto-group-block/commit/9694501141e6780eba89464d36406e3c93629fd8)]
|
|
264
244
|
### [4.3.0](https://github.com/eea/volto-group-block/compare/4.2.3...4.3.0) - 24 June 2021
|
|
265
245
|
|
|
266
246
|
#### :hammer_and_wrench: Others
|
|
@@ -376,7 +356,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
376
356
|
- Release 1.0.0 [Alin Voinea - [`b6ef873`](https://github.com/eea/volto-group-block/commit/b6ef873cb6f61e17db66fdd4de1d9d4902a66fc6)]
|
|
377
357
|
- Update package meta info [Alin Voinea - [`143b7d4`](https://github.com/eea/volto-group-block/commit/143b7d44438d7afa5e346a9d21a85352df4e925f)]
|
|
378
358
|
- Add Jenkinkins pipeline [Alin Voinea - [`866a4e1`](https://github.com/eea/volto-group-block/commit/866a4e14ea1eb8f5adb01222e576e5ab6dc73a70)]
|
|
379
|
-
- yarn prettier [Alin Voinea - [`e3fe0a3`](https://github.com/eea/volto-group-block/commit/e3fe0a36b89878769341b45198d6c9e2f2584d15)]
|
|
380
359
|
### [0.1.3](https://github.com/eea/volto-group-block/compare/0.1.2...0.1.3) - 9 November 2020
|
|
381
360
|
|
|
382
361
|
#### :hammer_and_wrench: Others
|
|
@@ -416,5 +395,4 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
416
395
|
- Render meta block [Alin Voinea - [`0d44560`](https://github.com/eea/volto-group-block/commit/0d4456011ca56454068a54c610250b02df4ccb3b)]
|
|
417
396
|
- Implement meta block allowedBlocks settings [Alin Voinea - [`f24feb1`](https://github.com/eea/volto-group-block/commit/f24feb1a1751f04841c21c7cd52a517fb02074ba)]
|
|
418
397
|
- Edit meta block [Alin Voinea - [`236d291`](https://github.com/eea/volto-group-block/commit/236d29156fa835a7aa54eecdb4f120de0d64b271)]
|
|
419
|
-
- yarn bootstrap [Alin Voinea - [`e009dfb`](https://github.com/eea/volto-group-block/commit/e009dfb6b9b74d101a6722f0982a5359fc522b6b)]
|
|
420
398
|
- Initial commit [Alin Voinea - [`6a7b0de`](https://github.com/eea/volto-group-block/commit/6a7b0deb8f873d1462fd6a9c61edfc1562b3aace)]
|
package/DEVELOP.md
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
make start
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
+
`make start` defaults to Volto 18. Use `make VOLTO_VERSION=17 start` to test the Volto 17 dev environment.
|
|
16
|
+
|
|
15
17
|
1. Wait for `Volto started at 0.0.0.0:3000` meesage
|
|
16
18
|
|
|
17
19
|
1. Go to http://localhost:3000
|
|
@@ -26,21 +28,20 @@
|
|
|
26
28
|
|
|
27
29
|
### Or add @eeacms/volto-group-block to your Volto project
|
|
28
30
|
|
|
29
|
-
Before starting make sure your development environment is properly set. See [Volto
|
|
30
|
-
|
|
31
|
-
1. Make sure you have installed `yo`, `@plone/generator-volto` and `mrs-developer`
|
|
31
|
+
Before starting make sure your development environment is properly set. See the official Plone documentation for [creating a project with Cookieplone](https://6.docs.plone.org/install/create-project-cookieplone.html) and [installing an add-on in development mode in Volto 18 and 19](https://6.docs.plone.org/volto/development/add-ons/install-an-add-on-dev-18.html).
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
For new Volto 18+ projects, use Cookieplone. It includes `mrs-developer` by default.
|
|
34
34
|
|
|
35
|
-
1. Create new
|
|
35
|
+
1. Create a new Volto project with Cookieplone
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
cd
|
|
37
|
+
uvx cookieplone project
|
|
38
|
+
cd project-title
|
|
39
39
|
|
|
40
40
|
1. Add the following to `mrs.developer.json`:
|
|
41
41
|
|
|
42
42
|
{
|
|
43
43
|
"volto-group-block": {
|
|
44
|
+
"output": "packages",
|
|
44
45
|
"url": "https://github.com/eea/volto-group-block.git",
|
|
45
46
|
"package": "@eeacms/volto-group-block",
|
|
46
47
|
"branch": "develop",
|
|
@@ -48,28 +49,31 @@ Before starting make sure your development environment is properly set. See [Vol
|
|
|
48
49
|
}
|
|
49
50
|
}
|
|
50
51
|
|
|
51
|
-
1.
|
|
52
|
+
1. Add `@eeacms/volto-group-block` to the `addons` key in your project `volto.config.js`
|
|
53
|
+
|
|
54
|
+
1. Install or refresh the project setup
|
|
52
55
|
|
|
53
|
-
make
|
|
54
|
-
yarn
|
|
56
|
+
make install
|
|
55
57
|
|
|
56
|
-
1. Start backend
|
|
58
|
+
1. Start backend in one terminal
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
make backend-start
|
|
59
61
|
|
|
60
|
-
...wait for backend to setup and start
|
|
62
|
+
...wait for backend to setup and start, ending with `Ready to handle requests`
|
|
61
63
|
|
|
62
64
|
...you can also check http://localhost:8080/Plone
|
|
63
65
|
|
|
64
|
-
1. Start frontend
|
|
66
|
+
1. Start frontend in a second terminal
|
|
65
67
|
|
|
66
|
-
|
|
68
|
+
make frontend-start
|
|
67
69
|
|
|
68
70
|
1. Go to http://localhost:3000
|
|
69
71
|
|
|
70
72
|
1. Happy hacking!
|
|
71
73
|
|
|
72
|
-
cd
|
|
74
|
+
cd packages/volto-group-block
|
|
75
|
+
|
|
76
|
+
For legacy Volto 17 projects, keep using the yarn-based workflow from the Volto 17 documentation.
|
|
73
77
|
|
|
74
78
|
## Cypress
|
|
75
79
|
|
|
@@ -81,7 +85,7 @@ project where you added `volto-group-block` to `mrs.developer.json`
|
|
|
81
85
|
Go to:
|
|
82
86
|
|
|
83
87
|
```BASH
|
|
84
|
-
cd
|
|
88
|
+
cd packages/volto-group-block/
|
|
85
89
|
```
|
|
86
90
|
|
|
87
91
|
Start:
|
|
@@ -93,6 +97,8 @@ Start:
|
|
|
93
97
|
|
|
94
98
|
This will build and start with Docker a clean `Plone backend` and `Volto Frontend` with `volto-group-block` block installed.
|
|
95
99
|
|
|
100
|
+
Use `make VOLTO_VERSION=17 start` if you need to reproduce the Volto 17 setup locally.
|
|
101
|
+
|
|
96
102
|
Open Cypress Interface:
|
|
97
103
|
|
|
98
104
|
```Bash
|
package/README.md
CHANGED
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
[](https://github.com/eea/volto-group-block/releases)
|
|
4
4
|
|
|
5
5
|
[](https://ci.eionet.europa.eu/view/Github/job/volto-addons/job/volto-group-block/job/master/display/redirect)
|
|
6
|
-
[](https://sonarqube.eea.europa.eu/api/project_badges/measure?project=volto-group-block
|
|
6
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block)
|
|
7
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block)
|
|
8
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block)
|
|
9
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block)
|
|
10
10
|
|
|
11
11
|
[](https://ci.eionet.europa.eu/view/Github/job/volto-addons/job/volto-group-block/job/develop/display/redirect)
|
|
12
|
-
[](https://sonarqube.eea.europa.eu/api/project_badges/measure?project=volto-group-block
|
|
12
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block&branch=develop)
|
|
13
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block&branch=develop)
|
|
14
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block&branch=develop)
|
|
15
|
+
[](https://sonarqube.eea.europa.eu/dashboard?id=volto-group-block&branch=develop)
|
|
16
16
|
|
|
17
17
|
[Volto](https://github.com/plone/volto) add-on to group blocks in sections and filter available blocks per content-type per section
|
|
18
18
|
|
|
@@ -20,6 +20,18 @@
|
|
|
20
20
|
|
|
21
21
|

|
|
22
22
|
|
|
23
|
+
## Upgrade
|
|
24
|
+
|
|
25
|
+
### Upgrading to 10.x
|
|
26
|
+
|
|
27
|
+
> This version requires `Volto >= 17.18` or `Volto 18+`. It removes the custom `EditBlockWrapper` and uses Volto's built-in block chrome provided by `BlocksForm`.
|
|
28
|
+
|
|
29
|
+
#### Breaking changes
|
|
30
|
+
|
|
31
|
+
- **Removed `EditBlockWrapper.jsx`.** Any code importing `EditBlockWrapper` from `@eeacms/volto-group-block` will break. Use Volto's built-in `EditBlockWrapper` from `@plone/volto/components/manage/Blocks/Block/EditBlockWrapper` if you need a custom wrapper.
|
|
32
|
+
- **Removed the "Section help" button.** The `?` icon that appeared in the inner block toolbar and opened the sidebar to display editing instructions has been removed. The `instructions` field is still available in the group block schema and still rendered in the sidebar panel, but there is no longer a per-block shortcut button to reveal it.
|
|
33
|
+
- **`disableInnerButtons`** is now implemented via a CSS class (`.disable-inner-buttons`) instead of a JS-level `disabled` prop on the removed wrapper.
|
|
34
|
+
|
|
23
35
|
## Getting started
|
|
24
36
|
|
|
25
37
|
### Try volto-group-block with Docker
|
|
@@ -31,6 +43,11 @@
|
|
|
31
43
|
|
|
32
44
|
Go to http://localhost:3000
|
|
33
45
|
|
|
46
|
+
`make start` now defaults to Volto 18. To run the same setup against Volto 17, use:
|
|
47
|
+
|
|
48
|
+
VOLTO_VERSION=17 make
|
|
49
|
+
VOLTO_VERSION=17 make start
|
|
50
|
+
|
|
34
51
|
### Add volto-group-block to your Volto project
|
|
35
52
|
|
|
36
53
|
1. Make sure you have a [Plone backend](https://plone.org/download) up-and-running at http://localhost:8080/Plone
|
|
@@ -44,30 +61,39 @@ Go to http://localhost:3000
|
|
|
44
61
|
* If you already have a volto project, just update `package.json`:
|
|
45
62
|
|
|
46
63
|
```JSON
|
|
47
|
-
"addons": [
|
|
48
|
-
"@eeacms/volto-group-block"
|
|
49
|
-
],
|
|
50
|
-
|
|
51
64
|
"dependencies": {
|
|
52
65
|
"@eeacms/volto-group-block": "*"
|
|
53
66
|
}
|
|
54
67
|
```
|
|
55
68
|
|
|
56
|
-
|
|
69
|
+
and `volto.config.js`:
|
|
57
70
|
|
|
71
|
+
```JavaScript
|
|
72
|
+
const addons = ['@eeacms/volto-group-block'];
|
|
58
73
|
```
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
74
|
+
|
|
75
|
+
* If not, create one with Cookieplone, as recommended by the official Plone documentation for Volto 18+:
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
uvx cookieplone project
|
|
79
|
+
cd project-title
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
1. Install or update dependencies, then start the project:
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
make install
|
|
62
86
|
```
|
|
63
87
|
|
|
64
|
-
|
|
88
|
+
For a Cookieplone project, start the backend and frontend in separate terminals:
|
|
65
89
|
|
|
66
90
|
```
|
|
67
|
-
|
|
68
|
-
|
|
91
|
+
make backend-start
|
|
92
|
+
make frontend-start
|
|
69
93
|
```
|
|
70
94
|
|
|
95
|
+
For a legacy Volto 17 project, install the package with `yarn` and restart the frontend as usual.
|
|
96
|
+
|
|
71
97
|
1. Go to http://localhost:3000
|
|
72
98
|
|
|
73
99
|
1. Happy editing!
|
package/cypress.config.js
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
const { defineConfig } = require('cypress');
|
|
2
2
|
|
|
3
|
+
const apiPath =
|
|
4
|
+
process.env.CYPRESS_API_PATH ||
|
|
5
|
+
process.env.RAZZLE_DEV_PROXY_API_PATH ||
|
|
6
|
+
process.env.RAZZLE_INTERNAL_API_PATH ||
|
|
7
|
+
'http://localhost:8080/Plone';
|
|
8
|
+
|
|
3
9
|
module.exports = defineConfig({
|
|
4
10
|
viewportWidth: 1280,
|
|
5
11
|
defaultCommandTimeout: 8888,
|
|
6
12
|
chromeWebSecurity: false,
|
|
13
|
+
env: {
|
|
14
|
+
API_PATH: apiPath,
|
|
15
|
+
},
|
|
7
16
|
reporter: 'junit',
|
|
8
17
|
video: false,
|
|
9
18
|
retries: {
|
package/docker-compose.yml
CHANGED
package/jest-addon.config.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
require('dotenv').config({ path: __dirname + '/.env' })
|
|
2
|
+
const fs = require('fs')
|
|
3
|
+
const path = require('path')
|
|
4
|
+
|
|
5
|
+
const voltoSlatePath = fs.existsSync(
|
|
6
|
+
path.join(__dirname, '../../../node_modules/@plone/volto-slate/src'),
|
|
7
|
+
)
|
|
8
|
+
? '<rootDir>/node_modules/@plone/volto-slate/src'
|
|
9
|
+
: '<rootDir>/node_modules/@plone/volto/packages/volto-slate/src'
|
|
2
10
|
|
|
3
11
|
module.exports = {
|
|
4
12
|
testMatch: ['**/src/addons/**/?(*.)+(spec|test).[jt]s?(x)'],
|
|
@@ -17,10 +25,8 @@ module.exports = {
|
|
|
17
25
|
'@eeacms/search/(.*)$': '<rootDir>/src/addons/volto-searchlib/searchlib/$1',
|
|
18
26
|
'@eeacms/search': '<rootDir>/src/addons/volto-searchlib/searchlib',
|
|
19
27
|
'@eeacms/(.*?)/(.*)$': '<rootDir>/node_modules/@eeacms/$1/src/$2',
|
|
20
|
-
'@plone/volto-slate$':
|
|
21
|
-
|
|
22
|
-
'@plone/volto-slate/(.*)$':
|
|
23
|
-
'<rootDir>/node_modules/@plone/volto/packages/volto-slate/src/$1',
|
|
28
|
+
'@plone/volto-slate$': voltoSlatePath,
|
|
29
|
+
'@plone/volto-slate/(.*)$': `${voltoSlatePath}/$1`,
|
|
24
30
|
'~/(.*)$': '<rootDir>/src/$1',
|
|
25
31
|
'load-volto-addons':
|
|
26
32
|
'<rootDir>/node_modules/@plone/volto/jest-addons-loader.js',
|
|
@@ -21,16 +21,6 @@ msgstr "Abschnitt (Gruppe)"
|
|
|
21
21
|
msgid "SectionGroupSettings"
|
|
22
22
|
msgstr "Abschnitt (Gruppe) Einstellungen"
|
|
23
23
|
|
|
24
|
-
#. Default: "Unknown Block {block}"
|
|
25
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
26
|
-
msgid "Unknown Block"
|
|
27
|
-
msgstr "Unbekannter Block {block}"
|
|
28
|
-
|
|
29
|
-
#. Default: "Add block"
|
|
30
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
31
|
-
msgid "addBlock"
|
|
32
|
-
msgstr "Block hinzufügen"
|
|
33
|
-
|
|
34
24
|
#. Default: "Select HTML5 element to be used for this block"
|
|
35
25
|
#: components/manage/Blocks/Group/EditSchema
|
|
36
26
|
msgid "asPropertyDescription"
|
|
@@ -41,21 +31,11 @@ msgstr "Wählen Sie das HTML5-Element, das für diesen Block verwendet werden so
|
|
|
41
31
|
msgid "asPropertyTitle"
|
|
42
32
|
msgstr ""
|
|
43
33
|
|
|
44
|
-
#. Default: "delete"
|
|
45
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
46
|
-
msgid "delete"
|
|
47
|
-
msgstr "Löschen"
|
|
48
|
-
|
|
49
34
|
#. Default: "Default"
|
|
50
35
|
#: components/manage/Blocks/Group/EditSchema
|
|
51
36
|
msgid "fieldsetDefaultTitle"
|
|
52
37
|
msgstr "Standard"
|
|
53
38
|
|
|
54
|
-
#. Default: "Remove block"
|
|
55
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
56
|
-
msgid "removeBlock"
|
|
57
|
-
msgstr "Block entfernen"
|
|
58
|
-
|
|
59
39
|
#. Default: "Section block"
|
|
60
40
|
#: components/manage/Blocks/Group/EditSchema
|
|
61
41
|
msgid "sectionBlock"
|
|
@@ -21,16 +21,6 @@ msgstr ""
|
|
|
21
21
|
msgid "SectionGroupSettings"
|
|
22
22
|
msgstr ""
|
|
23
23
|
|
|
24
|
-
#. Default: "Unknown Block {block}"
|
|
25
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
26
|
-
msgid "Unknown Block"
|
|
27
|
-
msgstr ""
|
|
28
|
-
|
|
29
|
-
#. Default: "Add block"
|
|
30
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
31
|
-
msgid "addBlock"
|
|
32
|
-
msgstr ""
|
|
33
|
-
|
|
34
24
|
#. Default: "Select HTML5 element to be used for this block"
|
|
35
25
|
#: components/manage/Blocks/Group/EditSchema
|
|
36
26
|
msgid "asPropertyDescription"
|
|
@@ -41,21 +31,11 @@ msgstr ""
|
|
|
41
31
|
msgid "asPropertyTitle"
|
|
42
32
|
msgstr ""
|
|
43
33
|
|
|
44
|
-
#. Default: "delete"
|
|
45
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
46
|
-
msgid "delete"
|
|
47
|
-
msgstr ""
|
|
48
|
-
|
|
49
34
|
#. Default: "Default"
|
|
50
35
|
#: components/manage/Blocks/Group/EditSchema
|
|
51
36
|
msgid "fieldsetDefaultTitle"
|
|
52
37
|
msgstr ""
|
|
53
38
|
|
|
54
|
-
#. Default: "Remove block"
|
|
55
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
56
|
-
msgid "removeBlock"
|
|
57
|
-
msgstr ""
|
|
58
|
-
|
|
59
39
|
#. Default: "Section block"
|
|
60
40
|
#: components/manage/Blocks/Group/EditSchema
|
|
61
41
|
msgid "sectionBlock"
|
|
@@ -21,16 +21,6 @@ msgstr ""
|
|
|
21
21
|
msgid "SectionGroupSettings"
|
|
22
22
|
msgstr ""
|
|
23
23
|
|
|
24
|
-
#. Default: "Unknown Block {block}"
|
|
25
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
26
|
-
msgid "Unknown Block"
|
|
27
|
-
msgstr ""
|
|
28
|
-
|
|
29
|
-
#. Default: "Add block"
|
|
30
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
31
|
-
msgid "addBlock"
|
|
32
|
-
msgstr ""
|
|
33
|
-
|
|
34
24
|
#. Default: "Select HTML5 element to be used for this block"
|
|
35
25
|
#: components/manage/Blocks/Group/EditSchema
|
|
36
26
|
msgid "asPropertyDescription"
|
|
@@ -41,21 +31,11 @@ msgstr ""
|
|
|
41
31
|
msgid "asPropertyTitle"
|
|
42
32
|
msgstr ""
|
|
43
33
|
|
|
44
|
-
#. Default: "delete"
|
|
45
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
46
|
-
msgid "delete"
|
|
47
|
-
msgstr ""
|
|
48
|
-
|
|
49
34
|
#. Default: "Default"
|
|
50
35
|
#: components/manage/Blocks/Group/EditSchema
|
|
51
36
|
msgid "fieldsetDefaultTitle"
|
|
52
37
|
msgstr ""
|
|
53
38
|
|
|
54
|
-
#. Default: "Remove block"
|
|
55
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
56
|
-
msgid "removeBlock"
|
|
57
|
-
msgstr ""
|
|
58
|
-
|
|
59
39
|
#. Default: "Section block"
|
|
60
40
|
#: components/manage/Blocks/Group/EditSchema
|
|
61
41
|
msgid "sectionBlock"
|
|
@@ -21,16 +21,6 @@ msgstr ""
|
|
|
21
21
|
msgid "SectionGroupSettings"
|
|
22
22
|
msgstr ""
|
|
23
23
|
|
|
24
|
-
#. Default: "Unknown Block {block}"
|
|
25
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
26
|
-
msgid "Unknown Block"
|
|
27
|
-
msgstr ""
|
|
28
|
-
|
|
29
|
-
#. Default: "Add block"
|
|
30
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
31
|
-
msgid "addBlock"
|
|
32
|
-
msgstr ""
|
|
33
|
-
|
|
34
24
|
#. Default: "Select HTML5 element to be used for this block"
|
|
35
25
|
#: components/manage/Blocks/Group/EditSchema
|
|
36
26
|
msgid "asPropertyDescription"
|
|
@@ -41,21 +31,11 @@ msgstr ""
|
|
|
41
31
|
msgid "asPropertyTitle"
|
|
42
32
|
msgstr ""
|
|
43
33
|
|
|
44
|
-
#. Default: "delete"
|
|
45
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
46
|
-
msgid "delete"
|
|
47
|
-
msgstr ""
|
|
48
|
-
|
|
49
34
|
#. Default: "Default"
|
|
50
35
|
#: components/manage/Blocks/Group/EditSchema
|
|
51
36
|
msgid "fieldsetDefaultTitle"
|
|
52
37
|
msgstr ""
|
|
53
38
|
|
|
54
|
-
#. Default: "Remove block"
|
|
55
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
56
|
-
msgid "removeBlock"
|
|
57
|
-
msgstr ""
|
|
58
|
-
|
|
59
39
|
#. Default: "Section block"
|
|
60
40
|
#: components/manage/Blocks/Group/EditSchema
|
|
61
41
|
msgid "sectionBlock"
|
package/locales/volto.pot
CHANGED
|
@@ -23,16 +23,6 @@ msgstr ""
|
|
|
23
23
|
msgid "SectionGroupSettings"
|
|
24
24
|
msgstr ""
|
|
25
25
|
|
|
26
|
-
#. Default: "Unknown Block {block}"
|
|
27
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
28
|
-
msgid "Unknown Block"
|
|
29
|
-
msgstr ""
|
|
30
|
-
|
|
31
|
-
#. Default: "Add block"
|
|
32
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
33
|
-
msgid "addBlock"
|
|
34
|
-
msgstr ""
|
|
35
|
-
|
|
36
26
|
#. Default: "Select HTML5 element to be used for this block"
|
|
37
27
|
#: components/manage/Blocks/Group/EditSchema
|
|
38
28
|
msgid "asPropertyDescription"
|
|
@@ -43,21 +33,11 @@ msgstr ""
|
|
|
43
33
|
msgid "asPropertyTitle"
|
|
44
34
|
msgstr ""
|
|
45
35
|
|
|
46
|
-
#. Default: "delete"
|
|
47
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
48
|
-
msgid "delete"
|
|
49
|
-
msgstr ""
|
|
50
|
-
|
|
51
36
|
#. Default: "Default"
|
|
52
37
|
#: components/manage/Blocks/Group/EditSchema
|
|
53
38
|
msgid "fieldsetDefaultTitle"
|
|
54
39
|
msgstr ""
|
|
55
40
|
|
|
56
|
-
#. Default: "Remove block"
|
|
57
|
-
#: components/manage/Blocks/Group/EditBlockWrapper
|
|
58
|
-
msgid "removeBlock"
|
|
59
|
-
msgstr ""
|
|
60
|
-
|
|
61
41
|
#. Default: "Section block"
|
|
62
42
|
#: components/manage/Blocks/Group/EditSchema
|
|
63
43
|
msgid "sectionBlock"
|