@eeacms/volto-embed 11.0.0 → 11.0.1
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 +6 -6
- package/CHANGELOG.md +27 -1
- package/package.json +1 -1
- package/src/Blocks/EmbedMaps/Edit.jsx +1 -1
- package/src/Blocks/EmbedMaps/{Edit.test.js → Edit.test.jsx} +3 -5
- package/src/Blocks/EmbedMaps/View.jsx +5 -3
- package/src/Blocks/EmbedMaps/{View.test.js → View.test.jsx} +8 -0
- package/src/Blocks/Maps/Edit.jsx +7 -4
- package/src/Blocks/Maps/MapsSidebar.jsx +2 -1
- package/src/Blocks/Maps/View.jsx +1 -1
- package/src/Blocks/Maps/{View.test.js → View.test.jsx} +8 -0
- package/src/Blocks/index.js +1 -1
- package/src/EmbedMap/EmbedMap.jsx +3 -1
- package/src/PrivacyProtection/PrivacyProtection.jsx +7 -3
- package/src/Toolbar/Enlarge.jsx +1 -1
- package/src/Toolbar/FigureNote.jsx +4 -3
- package/src/Toolbar/MoreInfo.jsx +1 -1
- package/src/Toolbar/Sources.jsx +1 -1
- package/src/Toolbar/Sources.test.jsx +8 -0
- package/src/Toolbar/{Toolbar.test.js → Toolbar.test.jsx} +8 -0
- package/src/Views/MapView.jsx +1 -1
- package/src/Views/{MapView.test.js → MapView.test.jsx} +8 -0
- package/src/Widgets/MapsWidget.jsx +15 -6
- package/src/helpers.js +1 -1
- /package/src/Blocks/EmbedMaps/{schema.js → schema.jsx} +0 -0
- /package/src/Blocks/Maps/{Edit.test.js → Edit.test.jsx} +0 -0
- /package/src/Blocks/Maps/{schema.js → schema.jsx} +0 -0
- /package/src/EmbedMap/{EmbedMap.test.js → EmbedMap.test.jsx} +0 -0
package/.eslintrc.js
CHANGED
|
@@ -16,16 +16,16 @@ if (configFile) {
|
|
|
16
16
|
voltoPath = `./${jsConfig.baseUrl}/${pathsConfig['@plone/volto'][0]}`;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
const
|
|
20
|
-
const
|
|
19
|
+
const { AddonRegistry } = require('@plone/registry/addon-registry');
|
|
20
|
+
const { registry } = AddonRegistry.init(projectRootPath);
|
|
21
21
|
|
|
22
22
|
// Extends ESlint configuration for adding the aliases to `src` directories in Volto addons
|
|
23
|
-
const addonAliases = Object.keys(
|
|
23
|
+
const addonAliases = Object.keys(registry.packages).map((o) => [
|
|
24
24
|
o,
|
|
25
|
-
|
|
25
|
+
registry.packages[o].modulePath,
|
|
26
26
|
]);
|
|
27
27
|
|
|
28
|
-
const addonExtenders =
|
|
28
|
+
const addonExtenders = registry.getEslintExtenders().map((m) => require(m));
|
|
29
29
|
|
|
30
30
|
const defaultConfig = {
|
|
31
31
|
extends: `${voltoPath}/.eslintrc`,
|
|
@@ -34,7 +34,7 @@ const defaultConfig = {
|
|
|
34
34
|
alias: {
|
|
35
35
|
map: [
|
|
36
36
|
['@plone/volto', '@plone/volto/src'],
|
|
37
|
-
['@plone/volto-slate', '@plone/volto
|
|
37
|
+
['@plone/volto-slate', '@plone/volto-slate/src'],
|
|
38
38
|
...addonAliases,
|
|
39
39
|
['@package', `${__dirname}/src`],
|
|
40
40
|
['@root', `${__dirname}/src`],
|
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,13 @@ 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
|
-
### [11.0.
|
|
7
|
+
### [11.0.1](https://github.com/eea/volto-embed/compare/11.0.0...11.0.1) - 8 April 2026
|
|
8
|
+
|
|
9
|
+
#### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
- fix: make test [Alin V. (Claudiu) - [`48a5d78`](https://github.com/eea/volto-embed/commit/48a5d7841971c5f4a00057c8f5bae76c298a49ad)]
|
|
12
|
+
|
|
13
|
+
## [11.0.0](https://github.com/eea/volto-embed/compare/10.1.4...11.0.0) - 24 March 2026
|
|
8
14
|
|
|
9
15
|
#### :rocket: New Features
|
|
10
16
|
|
|
@@ -12,6 +18,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
12
18
|
|
|
13
19
|
#### :house: Internal changes
|
|
14
20
|
|
|
21
|
+
- chore: [JENKINSFILE] add package version in sonarqube [valentinab25 - [`9c76ba6`](https://github.com/eea/volto-embed/commit/9c76ba6f0b9a3b5247e3620c3466a828b3c58364)]
|
|
22
|
+
- chore: [JENKINSFILE] use sonarqube branches [EEA Jenkins - [`6830021`](https://github.com/eea/volto-embed/commit/6830021746cab2066f12f205ef43e858e2bcc914)]
|
|
15
23
|
|
|
16
24
|
#### :hammer_and_wrench: Others
|
|
17
25
|
|
|
@@ -64,6 +72,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
64
72
|
- add useScreenHeight prop [Miu Razvan - [`a261a59`](https://github.com/eea/volto-embed/commit/a261a593892f44845579b2c0aa764e22bbf48e73)]
|
|
65
73
|
- fix tests [Miu Razvan - [`0798660`](https://github.com/eea/volto-embed/commit/0798660ce054a7a60e4c3888cb63ba9c131a42f8)]
|
|
66
74
|
- Set interactiv map height to window innerheight, ref #272831 [Miu Razvan - [`5ac9eb5`](https://github.com/eea/volto-embed/commit/5ac9eb5e66cdc626b33d0bdad5b80994af2d7d79)]
|
|
75
|
+
- Add Sonarqube tag using insitu-frontend addons list [EEA Jenkins - [`d99c3dc`](https://github.com/eea/volto-embed/commit/d99c3dc2151f6576b127e3c751fabaae3ad676b8)]
|
|
67
76
|
### [10.0.2](https://github.com/eea/volto-embed/compare/10.0.1...10.0.2) - 7 June 2024
|
|
68
77
|
|
|
69
78
|
#### :bug: Bug Fixes
|
|
@@ -149,6 +158,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
149
158
|
|
|
150
159
|
- test: increase coverage [kreafox - [`2d8e43c`](https://github.com/eea/volto-embed/commit/2d8e43cf3988564306b6aa7b885b0ff398043ce0)]
|
|
151
160
|
- test: increase coverage [kreafox - [`1fa9052`](https://github.com/eea/volto-embed/commit/1fa9052a3c015361e3a7eae043c418b696262fbe)]
|
|
161
|
+
- test: [JENKINS] fail with logs on coverage [valentinab25 - [`eaabce8`](https://github.com/eea/volto-embed/commit/eaabce87f1ed4b88a25bfc59a75285e858413d6a)]
|
|
152
162
|
- test: increase cypress timeout [kreafox - [`9bb40a5`](https://github.com/eea/volto-embed/commit/9bb40a5df2b29a55edec24a57fcd6e65f270f13c)]
|
|
153
163
|
- test: updates [kreafox - [`5b54d02`](https://github.com/eea/volto-embed/commit/5b54d02c6b6392e25f07ef1e286bdbced999592e)]
|
|
154
164
|
- test: update snapshot [kreafox - [`338f23e`](https://github.com/eea/volto-embed/commit/338f23ee5c6c75ccb6ee2d8d474298553fe3bd53)]
|
|
@@ -205,11 +215,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
205
215
|
- update [Miu Razvan - [`926beb8`](https://github.com/eea/volto-embed/commit/926beb87d2c44907aebe57369312eea7bf22d656)]
|
|
206
216
|
- update [Miu Razvan - [`da351ae`](https://github.com/eea/volto-embed/commit/da351ae9ffaaef756f7a665618a03fd04cb9b01d)]
|
|
207
217
|
- use volto-datablocks@develop dependency [Miu Razvan - [`b379d84`](https://github.com/eea/volto-embed/commit/b379d8478657dd39dad066181b349cee7ac2531d)]
|
|
218
|
+
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`ddf685a`](https://github.com/eea/volto-embed/commit/ddf685a9481d780a1df2e4f991f93676478c3e05)]
|
|
208
219
|
## [8.0.0](https://github.com/eea/volto-embed/compare/7.0.2...8.0.0) - 17 November 2023
|
|
209
220
|
|
|
210
221
|
#### :hammer_and_wrench: Others
|
|
211
222
|
|
|
212
223
|
- tests: add cypress tests [nileshgulia1 - [`e4b2803`](https://github.com/eea/volto-embed/commit/e4b28033114170639787d77976dc13b7f697f704)]
|
|
224
|
+
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`83d91d5`](https://github.com/eea/volto-embed/commit/83d91d5716a9ce8ebbbff01a7838711298684be4)]
|
|
213
225
|
- fix error [Claudia Ifrim - [`553f3af`](https://github.com/eea/volto-embed/commit/553f3af004af034c721dcd6b01de55c258a88c49)]
|
|
214
226
|
- bump version [Miu Razvan - [`363694a`](https://github.com/eea/volto-embed/commit/363694ae50cdec941fb53b396b75e9a4554d44fb)]
|
|
215
227
|
### [7.0.2](https://github.com/eea/volto-embed/compare/7.0.1...7.0.2) - 10 November 2023
|
|
@@ -219,6 +231,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
219
231
|
#### :hammer_and_wrench: Others
|
|
220
232
|
|
|
221
233
|
- add missing less variable [Miu Razvan - [`47683a7`](https://github.com/eea/volto-embed/commit/47683a7816581d117bb88f16e3087864aaa52f5e)]
|
|
234
|
+
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`ba168e4`](https://github.com/eea/volto-embed/commit/ba168e49554a51a6015a98a77dc0ceab76320218)]
|
|
222
235
|
## [7.0.0](https://github.com/eea/volto-embed/compare/6.0.1...7.0.0) - 6 November 2023
|
|
223
236
|
|
|
224
237
|
#### :rocket: New Features
|
|
@@ -228,12 +241,15 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
228
241
|
#### :house: Internal changes
|
|
229
242
|
|
|
230
243
|
- style: Automated code fix [eea-jenkins - [`c34d6f4`](https://github.com/eea/volto-embed/commit/c34d6f47fd33f728d40254a12c05fe385b27f2e9)]
|
|
244
|
+
- chore: [JENKINS] Refactor automated testing [valentinab25 - [`673f3ff`](https://github.com/eea/volto-embed/commit/673f3ff355baa8d3646e4558ff2be00f36b5a45a)]
|
|
231
245
|
- chore: husky, lint-staged use fixed versions [valentinab25 - [`31169f7`](https://github.com/eea/volto-embed/commit/31169f73887837463daee76d63b6516046ad49aa)]
|
|
232
246
|
|
|
233
247
|
#### :hammer_and_wrench: Others
|
|
234
248
|
|
|
235
249
|
- update tests [Miu Razvan - [`c906b79`](https://github.com/eea/volto-embed/commit/c906b79149e853f718d924871ce2e633e5e427c8)]
|
|
236
250
|
- update tests [Miu Razvan - [`11625b6`](https://github.com/eea/volto-embed/commit/11625b65846388a846d1bdf7ebb2e1f8bd103c91)]
|
|
251
|
+
- test: [JENKINS] Increase shm-size to cypress docker [valentinab25 - [`5e7a155`](https://github.com/eea/volto-embed/commit/5e7a15505334c9b81f07172116b49eaefc692ebf)]
|
|
252
|
+
- test: [JENKINS] Improve cypress time [valentinab25 - [`eeb6dcb`](https://github.com/eea/volto-embed/commit/eeb6dcb4b0f8af07496450e6e7783932ebe88bf7)]
|
|
237
253
|
- Release 7.0.0 [Alin Voinea - [`cbc5c79`](https://github.com/eea/volto-embed/commit/cbc5c79f1b66daf0d599d9de5a1bc7d137bafed8)]
|
|
238
254
|
- add act in unit tests [Miu Razvan - [`ecf5b2f`](https://github.com/eea/volto-embed/commit/ecf5b2fe553d99ad6a11570d3d34852d557fbe85)]
|
|
239
255
|
- update [Miu Razvan - [`049cc14`](https://github.com/eea/volto-embed/commit/049cc140bb6ffea4eb3f1555e693e9973ef63d0e)]
|
|
@@ -256,6 +272,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
256
272
|
|
|
257
273
|
- test: EN locales, pre-commit fix, feature PRs checks Refs #257193 [valentinab25 - [`dc2de20`](https://github.com/eea/volto-embed/commit/dc2de2084b53043f240ee1efa2588b5037326ed7)]
|
|
258
274
|
- test: Fix package.json scripts to use makefile [Alin Voinea - [`b4ffca2`](https://github.com/eea/volto-embed/commit/b4ffca24bb8cc4ba2007cc1040cc7b55dc7cc779)]
|
|
275
|
+
- test: Fix eslint and yarn i18n [Alin Voinea - [`1563d0a`](https://github.com/eea/volto-embed/commit/1563d0ab1f54e775a16705bfd3d267303eb2a526)]
|
|
259
276
|
- i18n: Add en [Alin Voinea - [`b4e0694`](https://github.com/eea/volto-embed/commit/b4e0694ee40ecc195536fd1826adfab8876c5061)]
|
|
260
277
|
- test: Update Makefile and docker-compose to align it with Jenkinsfile [valentinab25 - [`8f228ca`](https://github.com/eea/volto-embed/commit/8f228ca0644cee0f777a01114895583f387a395c)]
|
|
261
278
|
- test: increase test coverage - refs #254313 [ana-oprea - [`30354d8`](https://github.com/eea/volto-embed/commit/30354d8a10a78e4fc322e37f4be20ff85cd00bbc)]
|
|
@@ -284,6 +301,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
284
301
|
|
|
285
302
|
- Add react-countup to resolutions [kreafox - [`36eb637`](https://github.com/eea/volto-embed/commit/36eb637c0cb9413b0b0e0ce53e621b2289929d65)]
|
|
286
303
|
- Move generic classes to privacy-protection [kreafox - [`715d559`](https://github.com/eea/volto-embed/commit/715d559e370bf7a3489b64d357b0a6cd7b1a3af2)]
|
|
304
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`5715b4d`](https://github.com/eea/volto-embed/commit/5715b4d3fcc14a34e031c383275c685d88f4db44)]
|
|
305
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`ef24ac0`](https://github.com/eea/volto-embed/commit/ef24ac05b17f4f4dbf05ceafbee677012a7f28f5)]
|
|
306
|
+
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`81f957b`](https://github.com/eea/volto-embed/commit/81f957b51aef7be59214530b774de8547bee3f5f)]
|
|
287
307
|
### [5.0.2](https://github.com/eea/volto-embed/compare/5.0.1...5.0.2) - 20 March 2023
|
|
288
308
|
|
|
289
309
|
#### :hammer_and_wrench: Others
|
|
@@ -298,6 +318,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
298
318
|
- update .project.eslintrc.js [Miu Razvan - [`628fd40`](https://github.com/eea/volto-embed/commit/628fd402b00d075ce319b9be92ff5f0e4d0ca2c4)]
|
|
299
319
|
- rename schema.jsx [Miu Razvan - [`62794e3`](https://github.com/eea/volto-embed/commit/62794e398eab5117132e5622cab735f6cf4f79fd)]
|
|
300
320
|
- improving code quality as per sonarqube reported issues [tedw87 - [`c7842f7`](https://github.com/eea/volto-embed/commit/c7842f7795f344e9d30538ddf2da04e97e319ebe)]
|
|
321
|
+
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`fe3a2de`](https://github.com/eea/volto-embed/commit/fe3a2de6180796c3d6b569733d2b9365a669c23e)]
|
|
301
322
|
## [5.0.0](https://github.com/eea/volto-embed/compare/4.0.4...5.0.0) - 31 October 2022
|
|
302
323
|
|
|
303
324
|
#### :hammer_and_wrench: Others
|
|
@@ -317,6 +338,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
317
338
|
|
|
318
339
|
- use specific alpha for addon test [andreiggr - [`e6df633`](https://github.com/eea/volto-embed/commit/e6df633aa4d2b0ee7eeb6b5aafa21528f14cd1df)]
|
|
319
340
|
- add optional height to privacy container [andreiggr - [`e2ac711`](https://github.com/eea/volto-embed/commit/e2ac711db4e461b474cade42109346a73bb8ecbd)]
|
|
341
|
+
- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`9f3f358`](https://github.com/eea/volto-embed/commit/9f3f35882fb367d72c7916abe7cbf366dbd8d5b6)]
|
|
342
|
+
- Add Sonarqube tag using bise-frontend addons list [EEA Jenkins - [`7677140`](https://github.com/eea/volto-embed/commit/767714006abf7cbe336c5ab00d76c7232d5bc798)]
|
|
320
343
|
### [4.0.2](https://github.com/eea/volto-embed/compare/4.0.1...4.0.2) - 15 July 2022
|
|
321
344
|
|
|
322
345
|
#### :hammer_and_wrench: Others
|
|
@@ -356,6 +379,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
356
379
|
|
|
357
380
|
- Update package.json [Nilesh - [`0ec673a`](https://github.com/eea/volto-embed/commit/0ec673a8178731b8c1e010101caee2a3c9fafaca)]
|
|
358
381
|
- Update package.json [Nilesh - [`b8b94ec`](https://github.com/eea/volto-embed/commit/b8b94ec64672229f464b9108b4ac01a848827c00)]
|
|
382
|
+
- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`cfe04d8`](https://github.com/eea/volto-embed/commit/cfe04d885255bb8e472a3b268b98e3d7b9022437)]
|
|
359
383
|
- Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`bf197dd`](https://github.com/eea/volto-embed/commit/bf197dd6516f9c18994add19b1141e061a96e2b6)]
|
|
360
384
|
- no hardcoded text [Daniela Mormocea - [`4001bb4`](https://github.com/eea/volto-embed/commit/4001bb414df05c1516f95e4dcec4a328406dc63f)]
|
|
361
385
|
- fix [Daniela Mormocea - [`a41ca9a`](https://github.com/eea/volto-embed/commit/a41ca9a2795a59f2633fb97938244e335dca8c43)]
|
|
@@ -429,6 +453,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
|
429
453
|
- revert use of custom bg image [nileshgulia1 - [`63a74b7`](https://github.com/eea/volto-embed/commit/63a74b7e671d85b602b0190c7a18e6d6ad71341b)]
|
|
430
454
|
- PrivacyProtection update & accept bg image [Andrei Grigore - [`f3f05d1`](https://github.com/eea/volto-embed/commit/f3f05d1d21fc88b90de3f68a995242b6c359e03a)]
|
|
431
455
|
- fix loading of cookies [nileshgulia1 - [`46348d8`](https://github.com/eea/volto-embed/commit/46348d8321b4633a3d5fdcbfb2c4f01912d7ed2a)]
|
|
456
|
+
- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`a1e1f50`](https://github.com/eea/volto-embed/commit/a1e1f50db8a1ebc11261c3a24c39687c00ca7eea)]
|
|
457
|
+
- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`1e1471e`](https://github.com/eea/volto-embed/commit/1e1471ebab5ba6e5bf0c231ddd0de94d8fe6c846)]
|
|
432
458
|
### [2.0.1](https://github.com/eea/volto-embed/compare/2.0.0...2.0.1) - 28 May 2021
|
|
433
459
|
|
|
434
460
|
#### :hammer_and_wrench: Others
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { compose } from 'redux';
|
|
3
3
|
import { injectIntl } from 'react-intl';
|
|
4
4
|
import BlockDataForm from '@plone/volto/components/manage/Form/BlockDataForm';
|
|
5
|
-
import
|
|
5
|
+
import SidebarPortal from '@plone/volto/components/manage/Sidebar/SidebarPortal';
|
|
6
6
|
import View from './View';
|
|
7
7
|
import getSchema from './schema';
|
|
8
8
|
|
|
@@ -9,11 +9,9 @@ import '@testing-library/jest-dom';
|
|
|
9
9
|
|
|
10
10
|
installEmbedMaps(config);
|
|
11
11
|
|
|
12
|
-
jest.mock('@plone/volto/components', () => ({
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
),
|
|
16
|
-
UniversalLink: ({ children, href }) => <a href={href}>{children}</a>,
|
|
12
|
+
jest.mock('@plone/volto/components/manage/Sidebar/SidebarPortal', () => ({
|
|
13
|
+
__esModule: true,
|
|
14
|
+
default: ({ children }) => <div data-testid="sidebar-portal">{children}</div>,
|
|
17
15
|
}));
|
|
18
16
|
|
|
19
17
|
jest.mock(
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import React, { useEffect, useMemo, useState } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import reduce from 'lodash/reduce';
|
|
3
|
+
import isArray from 'lodash/isArray';
|
|
4
|
+
import isString from 'lodash/isString';
|
|
3
5
|
import { connect } from 'react-redux';
|
|
4
6
|
import { Message } from 'semantic-ui-react';
|
|
5
|
-
import { getContent } from '@plone/volto/actions';
|
|
6
|
-
import { flattenToAppURL } from '@plone/volto/helpers';
|
|
7
|
+
import { getContent } from '@plone/volto/actions/content/content';
|
|
8
|
+
import { flattenToAppURL } from '@plone/volto/helpers/Url/Url';
|
|
7
9
|
import EmbedMap from '@eeacms/volto-embed/EmbedMap/EmbedMap';
|
|
8
10
|
import { pickMetadata } from '@eeacms/volto-embed/helpers';
|
|
9
11
|
import { defineMessages, useIntl } from 'react-intl';
|
|
@@ -7,6 +7,14 @@ import '@testing-library/jest-dom';
|
|
|
7
7
|
import View from './View';
|
|
8
8
|
import installEmbedMaps from '.';
|
|
9
9
|
|
|
10
|
+
jest.mock('@plone/volto/components/manage/UniversalLink/UniversalLink', () => {
|
|
11
|
+
return ({ children, href, ...rest }) => (
|
|
12
|
+
<a href={href} {...rest}>
|
|
13
|
+
{children}
|
|
14
|
+
</a>
|
|
15
|
+
);
|
|
16
|
+
});
|
|
17
|
+
|
|
10
18
|
installEmbedMaps(config);
|
|
11
19
|
|
|
12
20
|
describe('EmbedMaps Block View', () => {
|
package/src/Blocks/Maps/Edit.jsx
CHANGED
|
@@ -4,14 +4,17 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import React, { Component } from 'react';
|
|
7
|
-
import
|
|
7
|
+
import isEqual from 'lodash/isEqual';
|
|
8
|
+
import isString from 'lodash/isString';
|
|
8
9
|
import PropTypes from 'prop-types';
|
|
9
10
|
import { Button, Input, Message } from 'semantic-ui-react';
|
|
10
11
|
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
|
|
11
12
|
import cx from 'classnames';
|
|
12
|
-
import { withBlockExtensions } from '@plone/volto/helpers';
|
|
13
|
+
import { withBlockExtensions } from '@plone/volto/helpers//Extensions';
|
|
13
14
|
import { compose } from 'redux';
|
|
14
|
-
import
|
|
15
|
+
import Image from '@plone/volto/components/theme/Image/Image';
|
|
16
|
+
import Icon from '@plone/volto/components/theme/Icon/Icon';
|
|
17
|
+
import SidebarPortal from '@plone/volto/components/manage/Sidebar/SidebarPortal';
|
|
15
18
|
import clearSVG from '@plone/volto/icons/clear.svg';
|
|
16
19
|
import aheadSVG from '@plone/volto/icons/ahead.svg';
|
|
17
20
|
import mapsBlockSVG from '@plone/volto/components/manage/Blocks/Maps/block-maps.svg';
|
|
@@ -256,7 +259,7 @@ class Edit extends Component {
|
|
|
256
259
|
) : (
|
|
257
260
|
<Message>
|
|
258
261
|
<center>
|
|
259
|
-
<
|
|
262
|
+
<Image src={mapsBlockSVG} alt="" loading="lazy" />
|
|
260
263
|
<div className="toolbar-inner">
|
|
261
264
|
<Input
|
|
262
265
|
onKeyDown={this.onKeyDownVariantMenuForm}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { useIntl, defineMessages } from 'react-intl';
|
|
3
|
-
import
|
|
3
|
+
import Icon from '@plone/volto/components/theme/Icon/Icon';
|
|
4
|
+
import BlockDataForm from '@plone/volto/components/manage/Form/BlockDataForm';
|
|
4
5
|
import globeSVG from '@plone/volto/icons/globe.svg';
|
|
5
6
|
import { Segment } from 'semantic-ui-react';
|
|
6
7
|
import { addPrivacyProtectionToSchema } from '@eeacms/volto-embed';
|
package/src/Blocks/Maps/View.jsx
CHANGED
|
@@ -8,7 +8,7 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|
|
8
8
|
import PropTypes from 'prop-types';
|
|
9
9
|
import cx from 'classnames';
|
|
10
10
|
import { compose } from 'redux';
|
|
11
|
-
import { withBlockExtensions } from '@plone/volto/helpers';
|
|
11
|
+
import { withBlockExtensions } from '@plone/volto/helpers//Extensions';
|
|
12
12
|
import PrivacyProtection from '@eeacms/volto-embed/PrivacyProtection/PrivacyProtection';
|
|
13
13
|
|
|
14
14
|
const messages = defineMessages({
|
|
@@ -7,6 +7,14 @@ import '@testing-library/jest-dom';
|
|
|
7
7
|
import View from './View';
|
|
8
8
|
import installEmbedMaps from '.';
|
|
9
9
|
|
|
10
|
+
jest.mock('@plone/volto/components/manage/UniversalLink/UniversalLink', () => {
|
|
11
|
+
return ({ children, href, ...rest }) => (
|
|
12
|
+
<a href={href} {...rest}>
|
|
13
|
+
{children}
|
|
14
|
+
</a>
|
|
15
|
+
);
|
|
16
|
+
});
|
|
17
|
+
|
|
10
18
|
installEmbedMaps(config);
|
|
11
19
|
|
|
12
20
|
config.settings = {
|
package/src/Blocks/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import React, { useEffect, useState, useRef } from 'react';
|
|
2
|
-
import
|
|
2
|
+
import isNaN from 'lodash/isNaN';
|
|
3
|
+
import isNumber from 'lodash/isNumber';
|
|
4
|
+
import isEmpty from 'lodash/isEmpty';
|
|
3
5
|
import { compose } from 'redux';
|
|
4
6
|
import { connect } from 'react-redux';
|
|
5
7
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
2
|
import cx from 'classnames';
|
|
3
|
-
import
|
|
3
|
+
import isNumber from 'lodash/isNumber';
|
|
4
4
|
import { compose } from 'redux';
|
|
5
5
|
import { useSelector, useDispatch } from 'react-redux';
|
|
6
6
|
import {
|
|
@@ -15,8 +15,12 @@ import { serializeNodes } from '@plone/volto-slate/editor/render';
|
|
|
15
15
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
16
16
|
import { toast } from 'react-toastify';
|
|
17
17
|
import config from '@plone/volto/registry';
|
|
18
|
-
import {
|
|
19
|
-
|
|
18
|
+
import {
|
|
19
|
+
getBaseUrl,
|
|
20
|
+
toPublicURL,
|
|
21
|
+
isInternalURL,
|
|
22
|
+
} from '@plone/volto/helpers/Url/Url';
|
|
23
|
+
import Toast from '@plone/volto/components/manage/Toast/Toast';
|
|
20
24
|
import {
|
|
21
25
|
getConnectedDataParametersForContext,
|
|
22
26
|
getFilteredURL,
|
package/src/Toolbar/Enlarge.jsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Popup } from 'semantic-ui-react';
|
|
3
|
-
import
|
|
3
|
+
import isArray from 'lodash/isArray';
|
|
4
|
+
import isString from 'lodash/isString';
|
|
4
5
|
import cx from 'classnames';
|
|
5
6
|
import {
|
|
6
7
|
serializeNodes,
|
|
@@ -12,8 +13,8 @@ export const serializeText = (notes) => {
|
|
|
12
13
|
const text = isArray(notes)
|
|
13
14
|
? serializeNodesToText(notes)
|
|
14
15
|
: isString(notes)
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
? notes
|
|
17
|
+
: '';
|
|
17
18
|
if (!text) return <p>There are no notes set for this visualization</p>;
|
|
18
19
|
return content;
|
|
19
20
|
};
|
package/src/Toolbar/MoreInfo.jsx
CHANGED
package/src/Toolbar/Sources.jsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import cx from 'classnames';
|
|
3
3
|
import { Popup } from 'semantic-ui-react';
|
|
4
|
-
import
|
|
4
|
+
import UniversalLink from '@plone/volto/components/manage/UniversalLink/UniversalLink';
|
|
5
5
|
|
|
6
6
|
const Link = ({ children, ...props }) => {
|
|
7
7
|
if (props.href) {
|
|
@@ -3,6 +3,14 @@ import { render, fireEvent, screen } from '@testing-library/react';
|
|
|
3
3
|
import Sources from './Sources';
|
|
4
4
|
import '@testing-library/jest-dom';
|
|
5
5
|
|
|
6
|
+
jest.mock('@plone/volto/components/manage/UniversalLink/UniversalLink', () => {
|
|
7
|
+
return ({ children, href, ...rest }) => (
|
|
8
|
+
<a href={href} {...rest}>
|
|
9
|
+
{children}
|
|
10
|
+
</a>
|
|
11
|
+
);
|
|
12
|
+
});
|
|
13
|
+
|
|
6
14
|
const mockSources = [
|
|
7
15
|
{
|
|
8
16
|
chart_source: 'Source 1',
|
|
@@ -6,6 +6,14 @@ import '@testing-library/jest-dom';
|
|
|
6
6
|
|
|
7
7
|
import { Enlarge, FigureNote, MoreInfo, Share, Sources } from '.';
|
|
8
8
|
|
|
9
|
+
jest.mock('@plone/volto/components/manage/UniversalLink/UniversalLink', () => {
|
|
10
|
+
return ({ children, href, ...rest }) => (
|
|
11
|
+
<a href={href} {...rest}>
|
|
12
|
+
{children}
|
|
13
|
+
</a>
|
|
14
|
+
);
|
|
15
|
+
});
|
|
16
|
+
|
|
9
17
|
config.blocks.blocksConfig = {
|
|
10
18
|
...config.blocks.blocksConfig,
|
|
11
19
|
maps: {
|
package/src/Views/MapView.jsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Container } from 'semantic-ui-react';
|
|
3
|
-
import { hasBlocksData } from '@plone/volto/helpers';
|
|
3
|
+
import { hasBlocksData } from '@plone/volto/helpers/Blocks/Blocks';
|
|
4
4
|
import RenderBlocks from '@plone/volto/components/theme/View/RenderBlocks';
|
|
5
5
|
import EmbedMap from '@eeacms/volto-embed/EmbedMap/EmbedMap';
|
|
6
6
|
import { pickMetadata } from '@eeacms/volto-embed/helpers';
|
|
@@ -6,6 +6,14 @@ import '@testing-library/jest-dom';
|
|
|
6
6
|
|
|
7
7
|
import MapView from './MapView';
|
|
8
8
|
|
|
9
|
+
jest.mock('@plone/volto/components/manage/UniversalLink/UniversalLink', () => {
|
|
10
|
+
return ({ children, href, ...rest }) => (
|
|
11
|
+
<a href={href} {...rest}>
|
|
12
|
+
{children}
|
|
13
|
+
</a>
|
|
14
|
+
);
|
|
15
|
+
});
|
|
16
|
+
|
|
9
17
|
config.settings = {
|
|
10
18
|
...config.settings,
|
|
11
19
|
publicURL: 'https://www.eea.europa.eu/',
|
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
import { useMemo, useState, useEffect } from 'react';
|
|
2
2
|
import { useIntl, FormattedMessage, defineMessages } from 'react-intl';
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
import Icon from '@plone/volto/components/theme/Icon/Icon';
|
|
4
|
+
import {
|
|
5
|
+
Button,
|
|
6
|
+
Modal,
|
|
7
|
+
Grid,
|
|
8
|
+
Label,
|
|
9
|
+
Input,
|
|
10
|
+
Message,
|
|
11
|
+
Image,
|
|
12
|
+
} from 'semantic-ui-react';
|
|
13
|
+
import map from 'lodash/map';
|
|
14
|
+
import FormFieldWrapper from '@plone/volto/components/manage/Widgets/FormFieldWrapper';
|
|
15
|
+
import InlineForm from '@plone/volto/components/manage/Form/InlineForm';
|
|
7
16
|
import { addPrivacyProtectionToSchema } from '@eeacms/volto-embed';
|
|
8
17
|
import EmbedMap from '@eeacms/volto-embed/EmbedMap/EmbedMap';
|
|
9
18
|
import { MapsSchema } from '@eeacms/volto-embed/Blocks/Maps/schema';
|
|
10
|
-
import { getBaseUrl } from '@plone/volto/helpers';
|
|
19
|
+
import { getBaseUrl } from '@plone/volto/helpers/Url/Url';
|
|
11
20
|
|
|
12
21
|
import clearSVG from '@plone/volto/icons/clear.svg';
|
|
13
22
|
import aheadSVG from '@plone/volto/icons/ahead.svg';
|
|
@@ -132,7 +141,7 @@ function MapEditorModal({ id, onClose, onChange, ...rest }) {
|
|
|
132
141
|
{!value.url && (
|
|
133
142
|
<Message>
|
|
134
143
|
<center>
|
|
135
|
-
<
|
|
144
|
+
<Image src={mapsBlockSVG} alt="" loading="lazy" />
|
|
136
145
|
<div className="toolbar-inner">
|
|
137
146
|
<Input
|
|
138
147
|
onKeyDown={onKeyDownVariantMenuForm}
|
package/src/helpers.js
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|