Skip to content

Commit

Permalink
Merge pull request #31 from eea/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
avoinea authored Mar 28, 2024
2 parents 10166b4 + 2e08f37 commit 6e16f07
Show file tree
Hide file tree
Showing 15 changed files with 159 additions and 107 deletions.
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Jest configuration variables
# - possible values: ON, OFF
JEST_USE_SETUP=OFF
65 changes: 65 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
const fs = require('fs');
const path = require('path');
const projectRootPath = fs.realpathSync(__dirname + '/../../../');

let voltoPath = path.join(projectRootPath, 'node_modules/@plone/volto');
let configFile;
if (fs.existsSync(`${projectRootPath}/tsconfig.json`))
configFile = `${projectRootPath}/tsconfig.json`;
else if (fs.existsSync(`${projectRootPath}/jsconfig.json`))
configFile = `${projectRootPath}/jsconfig.json`;

if (configFile) {
const jsConfig = require(configFile).compilerOptions;
const pathsConfig = jsConfig.paths;
if (pathsConfig['@plone/volto'])
voltoPath = `./${jsConfig.baseUrl}/${pathsConfig['@plone/volto'][0]}`;
}

const AddonConfigurationRegistry = require(`${voltoPath}/addon-registry.js`);
const reg = new AddonConfigurationRegistry(projectRootPath);

// Extends ESlint configuration for adding the aliases to `src` directories in Volto addons
const addonAliases = Object.keys(reg.packages).map((o) => [
o,
reg.packages[o].modulePath,
]);

const addonExtenders = reg.getEslintExtenders().map((m) => require(m));

const defaultConfig = {
extends: `${voltoPath}/.eslintrc`,
settings: {
'import/resolver': {
alias: {
map: [
['@plone/volto', '@plone/volto/src'],
['@plone/volto-slate', '@plone/volto/packages/volto-slate/src'],
...addonAliases,
['@package', `${__dirname}/src`],
['@root', `${__dirname}/src`],
['~', `${__dirname}/src`],
],
extensions: ['.js', '.jsx', '.json'],
},
'babel-plugin-root-import': {
rootPathSuffix: 'src',
},
},
},
rules: {
'react/jsx-no-target-blank': [
'error',
{
allowReferrer: true,
},
],
}
};

const config = addonExtenders.reduce(
(acc, extender) => extender.modify(acc),
defaultConfig,
);

module.exports = config;
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.vscode/
.history
.eslintrc.js
.nyc_output
project
coverage
Expand Down
48 changes: 0 additions & 48 deletions .project.eslintrc.js

This file was deleted.

61 changes: 31 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,44 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [6.2.0](https://github.com/eea/volto-block-divider/compare/6.1.6...6.2.0) - 28 March 2024

#### :rocket: New Features

- feat(styling): added divider spacing options #19 from eea/divider-spacing-sizes [ichim-david - [`8999247`](https://github.com/eea/volto-block-divider/commit/899924700b1dd266e745d3beeb55e38e9ac84b3a)]

#### :bug: Bug Fixes

- fix(tests): cypress wait by defining content with move to volto-17 [David Ichim - [`5a9f0a3`](https://github.com/eea/volto-block-divider/commit/5a9f0a3924f3f991f14f8b126bd7e98a62f67273)]
- fix(lint): removed syntax less flag since latest version doesn't support this flag [David Ichim - [`3c0e579`](https://github.com/eea/volto-block-divider/commit/3c0e579269839bbcf5895276c0d979d0b7427257)]

#### :nail_care: Enhancements

- change(divider): added spacing field description and the values use css variables [David Ichim - [`757e7e4`](https://github.com/eea/volto-block-divider/commit/757e7e4521f07b9883d1d91e08ff83beb2060cef)]

#### :house: Internal changes

- chore: package.json [Alin Voinea - [`959fe8a`](https://github.com/eea/volto-block-divider/commit/959fe8a996ad869af17e814e6d7c0fc6388698cd)]

#### :hammer_and_wrench: Others

- Update package.json [ichim-david - [`c7d2830`](https://github.com/eea/volto-block-divider/commit/c7d2830b8147bbd018396a7c1620e40b8e7215bf)]
- tests cleanup [David Ichim - [`dfef06d`](https://github.com/eea/volto-block-divider/commit/dfef06dcb789887437997ab2a39313fa4be6eaeb)]
- wip trying to get cypress tests to run [David Ichim - [`25494eb`](https://github.com/eea/volto-block-divider/commit/25494eb817c86f9857e9d603e29560680b7a54ae)]
- Add razzle-plugin-scss dependency [David Ichim - [`5a2aa04`](https://github.com/eea/volto-block-divider/commit/5a2aa04b4640bd38fe3a1792cf0132cd40a85517)]
- Add postcss-less dependency to devDependencies [David Ichim - [`935bf7d`](https://github.com/eea/volto-block-divider/commit/935bf7d220cfec5a8f9d08620f9f756764d90e5b)]
- lint fixes for webpack5 [David Ichim - [`b456f07`](https://github.com/eea/volto-block-divider/commit/b456f0701b738416eb418075c5b8c12ceb8edf64)]
- test: Update jest,Jenkinsfile,lint to volto-addons-template PR30 [valentinab25 - [`67c1704`](https://github.com/eea/volto-block-divider/commit/67c1704f1872ce2b2897ab49245303efbb72101b)]
- test: Update jest,Jenkinsfile,lint to volto-addons-template PR30 [valentinab25 - [`66fa334`](https://github.com/eea/volto-block-divider/commit/66fa3343d3f628da10e2f16f925c92fde966f5ba)]
- test: Update jest,Jenkinsfile,lint to volto-addons-template PR30 [valentinab25 - [`dc53bee`](https://github.com/eea/volto-block-divider/commit/dc53bee05344e85fb0c6cded23f05fc89c9a1f07)]
- feature: Divider has spacing sizes now [andreiggr - [`bf813c4`](https://github.com/eea/volto-block-divider/commit/bf813c48bf86d387f0f82d3d84d8bc2041208815)]
### [6.1.6](https://github.com/eea/volto-block-divider/compare/6.1.5...6.1.6) - 18 January 2024

#### :house: Internal changes

- chore: [JENKINS] Refactor automated testing [valentinab25 - [`86bf1c6`](https://github.com/eea/volto-block-divider/commit/86bf1c66147e216d9f0547af9bbd83b69b2c13f8)]

#### :hammer_and_wrench: Others

- test: [JENKINS] fix jest config, fail with logs on coverage [valentinab25 - [`05b9c0b`](https://github.com/eea/volto-block-divider/commit/05b9c0bdcef06b006b454eb9fd2075bd6e5aafb0)]
- test: [JENKINS] fix jest config, fail with logs on coverage [valentinab25 - [`5b99daf`](https://github.com/eea/volto-block-divider/commit/5b99dafd0126079e858a5686201308d5ecf4b956)]
- test: [JENKINS] fix jest config, fail with logs on coverage [valentinab25 - [`c7e9f04`](https://github.com/eea/volto-block-divider/commit/c7e9f047ce22b87d6b3a0c7952b33f3b2a230df9)]
- test: [JENKINS] Use java17 for sonarqube scanner [valentinab25 - [`f6b298b`](https://github.com/eea/volto-block-divider/commit/f6b298b7a3c942227bee116cde1dd4546c6bec72)]
- test: [JENKINS] Run cypress in started frontend container [valentinab25 - [`59b74bd`](https://github.com/eea/volto-block-divider/commit/59b74bde35f9c63897326f8ccc8f8d82a3a3669b)]
- test: [JENKINS] Add cpu limit on cypress docker [valentinab25 - [`aebf493`](https://github.com/eea/volto-block-divider/commit/aebf49320e7cba0bc75ab9a3bef9becd88a2894d)]
- test: [JENKINS] Increase shm-size to cypress docker [valentinab25 - [`c783a3e`](https://github.com/eea/volto-block-divider/commit/c783a3eff6b98a63682201805abaff7e27197715)]
- test: [JENKINS] Improve cypress time [valentinab25 - [`c0ec4f9`](https://github.com/eea/volto-block-divider/commit/c0ec4f9ba1296630ac412922a25c4044e5fb3269)]
### [6.1.5](https://github.com/eea/volto-block-divider/compare/6.1.4...6.1.5) - 30 October 2023

#### :hammer_and_wrench: Others
Expand Down Expand Up @@ -48,13 +70,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
#### :hammer_and_wrench: Others

- test: EN locales, pre-commit fix, feature PRs checks Refs #257193 [valentinab25 - [`0955582`](https://github.com/eea/volto-block-divider/commit/0955582852b9c01a4491708475fcad44a55c4400)]
- test: Fix eslint and yarn i18n [Alin Voinea - [`7a228ae`](https://github.com/eea/volto-block-divider/commit/7a228ae420dbd904af837c8e721f9ac9ef4139b0)]
- test: Update Makefile and docker-compose to align it with Jenkinsfile [valentinab25 - [`6f9c2b2`](https://github.com/eea/volto-block-divider/commit/6f9c2b21504a986feaccede14078fb8bad42916a)]
### [6.1.2](https://github.com/eea/volto-block-divider/compare/6.1.1...6.1.2) - 12 June 2023

#### :house: Internal changes

- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`025726b`](https://github.com/eea/volto-block-divider/commit/025726b23acb6069d001e533ac6f168d36a212a3)]

#### :hammer_and_wrench: Others

Expand All @@ -79,7 +99,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### :hammer_and_wrench: Others

- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`c9b4e33`](https://github.com/eea/volto-block-divider/commit/c9b4e3346d7c314967d1eee97246e013d86bb29e)]
## [6.0.0](https://github.com/eea/volto-block-divider/compare/5.0.0...6.0.0) - 7 February 2023

#### :hammer_and_wrench: Others
Expand All @@ -94,11 +113,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- theme_picker as dep [Andrei Grigore - [`3ac2b1e`](https://github.com/eea/volto-block-divider/commit/3ac2b1e0e8c7ac26bf67cca17d666c734b0475dc)]
- theme_picker widget [Andrei Grigore - [`a79f498`](https://github.com/eea/volto-block-divider/commit/a79f498fb1ae075228389ef1c7f90a0a1bf62e83)]
- color_picker widget for themes [andreiggr - [`ce29995`](https://github.com/eea/volto-block-divider/commit/ce29995518ca373f6b1d5f177f060ca5ce90c1a1)]
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`c06b612`](https://github.com/eea/volto-block-divider/commit/c06b612ecc85113a3fb69787fe11581423d6222a)]
- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`65e5e6e`](https://github.com/eea/volto-block-divider/commit/65e5e6e0060c79f2590eeb45d26fdbaf327b7848)]
- test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`38542c3`](https://github.com/eea/volto-block-divider/commit/38542c3b1360ddfb353bcaa14d38726a3214b714)]
- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`2c99661`](https://github.com/eea/volto-block-divider/commit/2c9966168e90c2f15a63ed41b1c3fd27cd7793e4)]
- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`c72bf5c`](https://github.com/eea/volto-block-divider/commit/c72bf5cf7cf06c533b0d57e603f3caa0a7e29689)]
## [5.0.0](https://github.com/eea/volto-block-divider/compare/4.0.0...5.0.0) - 16 November 2022

#### :nail_care: Enhancements
Expand All @@ -118,8 +133,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- test(cypress): Upgrade to Cypress 10 / Razzle 4 [Alin Voinea - [`cf94cfe`](https://github.com/eea/volto-block-divider/commit/cf94cfe0610725a673588584e64c2b2e8b33b727)]
- Cleanup [Alin Voinea - [`3075641`](https://github.com/eea/volto-block-divider/commit/3075641e51caf41217bf19d6713495f745bb2472)]
- Update dependencies [Alin Voinea - [`725a7fe`](https://github.com/eea/volto-block-divider/commit/725a7fea880a3a132a29b064ff7992a834eb5502)]
- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`f2eafb7`](https://github.com/eea/volto-block-divider/commit/f2eafb73cc120a25292301959223f85b70b99b56)]
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`9fed525`](https://github.com/eea/volto-block-divider/commit/9fed5259f6f7169784e9c442f8f293b1210a127a)]
- update(jest): add @plone/volto-slate resolver refs- #153447 [nileshgulia1 - [`c07f8a6`](https://github.com/eea/volto-block-divider/commit/c07f8a69b2d91a02e9d0fdd030c7e142fecdf4d7)]
### [3.0.2](https://github.com/eea/volto-block-divider/compare/3.0.1...3.0.2) - 30 June 2022

Expand All @@ -128,33 +141,22 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
#### :hammer_and_wrench: Others

- Remove useless Default theme option [Alin Voinea - [`8ee738f`](https://github.com/eea/volto-block-divider/commit/8ee738fe3b1adac5bafecb94d2e3d3f073ea4cef)]
- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`f55d68f`](https://github.com/eea/volto-block-divider/commit/f55d68ff83a20fe2242ad4af49a10f1d02e862d5)]
## [3.0.0](https://github.com/eea/volto-block-divider/compare/2.1.6...3.0.0) - 8 June 2022

#### :hammer_and_wrench: Others

- Fix demo screencast link in readme [Alin Voinea - [`0c5bd4a`](https://github.com/eea/volto-block-divider/commit/0c5bd4a33db9e92ba0a7ead73af57c389566be0b)]
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`baeb4f1`](https://github.com/eea/volto-block-divider/commit/baeb4f1e58950c948a2b79bdcce3431230d70bbb)]
- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`6532525`](https://github.com/eea/volto-block-divider/commit/653252532fb923854435cdf8d3e4688a56bda00f)]
### [2.1.6](https://github.com/eea/volto-block-divider/compare/2.1.5...2.1.6) - 3 January 2022

### [2.1.5](https://github.com/eea/volto-block-divider/compare/2.1.4...2.1.5) - 18 December 2021

#### :hammer_and_wrench: Others

- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`52dbb9a`](https://github.com/eea/volto-block-divider/commit/52dbb9a1510f88fc6a4deb09a2efea849aa30f4e)]
### [2.1.4](https://github.com/eea/volto-block-divider/compare/2.1.3...2.1.4) - 10 December 2021

#### :hammer_and_wrench: Others

- Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`b9564dd`](https://github.com/eea/volto-block-divider/commit/b9564dde604e4fa79f56fb80de874e656844ec42)]
- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`6c4487a`](https://github.com/eea/volto-block-divider/commit/6c4487a600138b9a93aac69e05325e5511641cc1)]
- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`603148f`](https://github.com/eea/volto-block-divider/commit/603148fd421880a8fde9152f9c214f4573fbbeb2)]
- Add Sonarqube tag using forests-frontend addons list [EEA Jenkins - [`e6cc2e4`](https://github.com/eea/volto-block-divider/commit/e6cc2e4fd983ff556eb63f23ed28f4fda4bf55e3)]
- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`c494a8a`](https://github.com/eea/volto-block-divider/commit/c494a8a781727c3cbcff5e1f46358b9eeb2520d9)]
- Add Sonarqube tag using climate-energy-frontend addons list [EEA Jenkins - [`4dee0fe`](https://github.com/eea/volto-block-divider/commit/4dee0fee99b83448eb050ee87bdc1d6c795f7b23)]
- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`debd561`](https://github.com/eea/volto-block-divider/commit/debd5619957c6c271a9d94230dad70f021f8f316)]
- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`c5b03e3`](https://github.com/eea/volto-block-divider/commit/c5b03e3f0d8a3752e9010d56723a11bbbfb5e1c5)]
### [2.1.3](https://github.com/eea/volto-block-divider/compare/2.1.2...2.1.3) - 27 May 2021

### [2.1.2](https://github.com/eea/volto-block-divider/compare/2.1.1...2.1.2) - 14 May 2021
Expand Down Expand Up @@ -200,7 +202,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

- Release 1.0.0 [Alin Voinea - [`d660ff2`](https://github.com/eea/volto-block-divider/commit/d660ff2a78d1c9e423d379b2f75da4405f9c6a8e)]
- Public release 1.0.0 [Alin Voinea - [`5829e27`](https://github.com/eea/volto-block-divider/commit/5829e270fd4188245c84dccbe13dc0e4e01dd0c1)]
- yarn prettier [Alin Voinea - [`9456822`](https://github.com/eea/volto-block-divider/commit/9456822b69769e1a243be1217b9031d9f0fed791)]
### 0.1.0 - 7 October 2020

#### :hammer_and_wrench: Others
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pipeline {
environment {
GIT_NAME = "volto-block-divider"
NAMESPACE = "@eeacms"
SONARQUBE_TAGS = "volto.eea.europa.eu,biodiversity.europa.eu,www.eea.europa.eu-ims,climate-energy.eea.europa.eu,sustainability.eionet.europa.eu,forest.eea.europa.eu,clms.land.copernicus.eu,industry.eea.europa.eu,water.europa.eu-freshwater,demo-www.eea.europa.eu,clmsdemo.devel6cph.eea.europa.eu,prod-www.eea.europa.eu,water.europa.eu-marine,demo-kitkat.dev2aws.eea.europa.eu,climate-adapt.eea.europa.eu,climate-advisory-board.devel4cph.eea.europa.eu,climate-advisory-board.europa.eu,www.eea.europa.eu-en"
SONARQUBE_TAGS = "volto.eea.europa.eu,biodiversity.europa.eu,www.eea.europa.eu-ims,climate-energy.eea.europa.eu,sustainability.eionet.europa.eu,forest.eea.europa.eu,clms.land.copernicus.eu,industry.eea.europa.eu,water.europa.eu-freshwater,demo-www.eea.europa.eu,clmsdemo.devel6cph.eea.europa.eu,prod-www.eea.europa.eu,water.europa.eu-marine,demo-kitkat.dev2aws.eea.europa.eu,climate-adapt.eea.europa.eu,climate-advisory-board.devel4cph.eea.europa.eu,climate-advisory-board.europa.eu,www.eea.europa.eu-en,insitu-frontend.eionet.europa.eu"
DEPENDENCIES = ""
BACKEND_PROFILES = "eea.kitkat:testing"
BACKEND_ADDONS = ""
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ test-update: ## Update jest tests snapshots

.PHONY: stylelint
stylelint: ## Stylelint
$(NODE_MODULES)/stylelint/bin/stylelint.js --allow-empty-input 'src/**/*.{css,less}'
$(NODE_MODULES)/.bin/stylelint --allow-empty-input 'src/**/*.{css,less}'

.PHONY: stylelint-overrides
stylelint-overrides:
$(NODE_MODULES)/.bin/stylelint --custom-syntax less --allow-empty-input 'theme/**/*.overrides' 'src/**/*.overrides'

.PHONY: stylelint-fix
stylelint-fix: ## Fix stylelint
$(NODE_MODULES)/stylelint/bin/stylelint.js --allow-empty-input 'src/**/*.{css,less}' --fix
$(NODE_MODULES)/.bin/stylelint --allow-empty-input 'src/**/*.{css,less}' --fix
$(NODE_MODULES)/.bin/stylelint --custom-syntax less --allow-empty-input 'theme/**/*.overrides' 'src/**/*.overrides' --fix

.PHONY: prettier
Expand All @@ -119,11 +119,11 @@ prettier-fix: ## Fix prettier

.PHONY: lint
lint: ## ES Lint
$(NODE_MODULES)/eslint/bin/eslint.js --max-warnings=0 'src/**/*.{js,jsx}'
$(NODE_MODULES)/.bin/eslint --max-warnings=0 'src/**/*.{js,jsx}'

.PHONY: lint-fix
lint-fix: ## Fix ES Lint
$(NODE_MODULES)/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx}'
$(NODE_MODULES)/.bin/eslint --fix 'src/**/*.{js,jsx}'

.PHONY: i18n
i18n: ## i18n
Expand Down
8 changes: 0 additions & 8 deletions cypress/e2e/02-dexterity-controlpanel-layout.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ describe('ControlPanel: Dexterity Content-Types Layout', () => {

it('Edit Blocks Layout for Book', () => {
cy.visit('/controlpanel/dexterity-types');
cy.waitForResourceToLoad('@navigation');
cy.waitForResourceToLoad('@breadcrumbs');
cy.waitForResourceToLoad('@actions');
cy.waitForResourceToLoad('@types');

cy.get('a[href="/controlpanel/dexterity-types/book"]').should(
'have.text',
Expand Down Expand Up @@ -40,10 +36,6 @@ describe('ControlPanel: Dexterity Content-Types Layout', () => {
cy.get('#toolbar-save').click();

cy.visit('/cypress');
cy.waitForResourceToLoad('@navigation');
cy.waitForResourceToLoad('@breadcrumbs');
cy.waitForResourceToLoad('@actions');
cy.waitForResourceToLoad('@types');

cy.get('button[class="add"]').click();
cy.get('#toolbar-add-book').click();
Expand Down
4 changes: 0 additions & 4 deletions cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,6 @@ Cypress.Commands.add('toolbarSave', () => {

// Save
cy.get('#toolbar-save').click();
cy.waitForResourceToLoad('@navigation');
cy.waitForResourceToLoad('@breadcrumbs');
cy.waitForResourceToLoad('@actions');
cy.waitForResourceToLoad('@types');
cy.waitForResourceToLoad('my-page');
cy.url().should('eq', Cypress.config().baseUrl + '/cypress/my-page');
});
Expand Down
Loading

0 comments on commit 6e16f07

Please sign in to comment.