Skip to content

Commit

Permalink
feat: Introduce Page Layout Consistency Check on Update - MEED-7139 - M…
Browse files Browse the repository at this point in the history
…eeds-io/meeds#2225 (#142)

This change will use newly introduced API in Portal Layer in order to
check Page consistency before updating layout.
  • Loading branch information
boubaker authored and SaraBoutej committed Aug 29, 2024
1 parent 671f0b9 commit f596e8b
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import org.exoplatform.commons.exception.ObjectNotFoundException;
import org.exoplatform.portal.application.PortalRequestContext;
import org.exoplatform.portal.config.model.Application;
import org.exoplatform.portal.config.model.ApplicationState;
Expand Down Expand Up @@ -279,7 +280,15 @@ public ApplicationData<Portlet> build() {
}

@Override
public void resetStorage() {
public void checkStorage() throws ObjectNotFoundException {
Application<Portlet> portletApplication = getApplication();
if (portletApplication != null) {
portletApplication.checkStorage();
}
}

@Override
public void resetStorage() throws ObjectNotFoundException {
Application<Portlet> portletApplication = getApplication();
if (portletApplication != null) {
portletApplication.resetStorage();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public LayoutModel updatePageLayout(
publish.orElse(false).booleanValue(),
request.getRemoteUser());
return getPageLayout(request, pageRef, 0, expand);
} catch (IllegalArgumentException e) {
} catch (IllegalArgumentException | IllegalStateException e) {
throw new ResponseStatusException(HttpStatus.BAD_REQUEST, e.getMessage());
} catch (ObjectNotFoundException e) {
throw new ResponseStatusException(HttpStatus.NOT_FOUND, e.getMessage());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
import org.exoplatform.portal.mop.service.LayoutService;
import org.exoplatform.portal.pom.spi.portlet.Portlet;
import org.exoplatform.portal.pom.spi.portlet.Preference;
import org.exoplatform.services.log.ExoLogger;
import org.exoplatform.services.log.Log;

import io.meeds.layout.model.PageCreateModel;
import io.meeds.layout.model.PageTemplate;
Expand All @@ -70,6 +72,8 @@ public class PageLayoutService {

public static final String EMPTY_PAGE_TEMPLATE = "empty";

private static final Log LOG = ExoLogger.getLogger(PageLayoutService.class);

private static final Pattern GENERIC_STYLE_MATCHER_VALIDATOR = Pattern.compile("[#0-9a-zA-Z\\(\\),\\./\"'\\-%_ ]+");

private static final String PAGE_NOT_EXISTS_MESSAGE = "Page with key %s doesn't exist";
Expand Down Expand Up @@ -231,9 +235,17 @@ public PageContext updatePageLayout(String pageRef,
throw new IllegalAccessException(String.format(PAGE_NOT_EDITABLE_MESSAGE, pageKey.format(), username));
}

// Update Page Layout only
if (publish) {
page.resetStorage();
try {
if (publish) {
// Update Page Layout only without resetting preferences
page.resetStorage();
} else {
// Check Page Layout consistency before saving
page.checkStorage();
}
} catch (ObjectNotFoundException e) {
LOG.debug("Error while accessing page applications storage information", e);
throw new IllegalStateException("layout.pageOutdatedError");
}
validateCSSInputs(page);
existingPage.setChildren(page.getChildren());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ layout.undoChanges=Undo Changes (ctrl+z)
layout.redoChanges=Redo Changes (ctrl+y)
layout.pageSavingError=An error occurred while saving page. Please try again later or contact the administrator.
layout.pageSavedSuccessfully=Page Saved Successfully
layout.pageDraftSavedSuccessfully=Page draft saved successfully
layout.pageOutdatedError=The current page version seems to be outdated. Please try again by refreshing the page or check if another session is ongoing (another browser tab) or contact your administrator.
layout.switchToDesktop=Switch to Desktop View
layout.switchToMobile=Switch to Mobile View
layout.margins=Margins
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ export function updatePageLayout(pageRef, pageLayout, expand, publish) {
}).then((resp) => {
if (resp?.ok) {
return resp.json();
} else if (resp.status === 400) {
return resp.json()
.then(e => {
throw new Error(e?.message);
});
} else {
throw new Error(resp.status);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ export default {
this.draftPageRef,
JSON.parse(this.$root.pageTemplate.content),
'contentId'))
.then(draftLayout => this.setDraftLayout(draftLayout));
.then(draftLayout => this.setDraftLayout(draftLayout))
.catch(e => this.$root.$emit('alert-message', this.$te(e.message) ? this.$t(e.message) : this.$t('layout.pageSavingError'), 'error'));
} else {
this.$pageLayoutService.getPageLayout(this.draftPageRef, 'contentId')
.then(draftLayout => this.setDraftLayout(draftLayout));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,16 @@ export default {
this.loading++;
const layoutToUpdate = this.$layoutUtils.cleanAttributes(layout || this.layoutToEdit, false, true);
return this.$pageLayoutService.updatePageLayout(this.$root.draftPageRef, layoutToUpdate, 'contentId')
.then(layout => this.setLayout(layout))
.then(layout => {
this.setLayout(layout);
this.$root.$emit('layout-draft-saved');
})
.catch(e => {
this.$root.$emit('alert-message', this.$te(e.message) ? this.$t(e.message) : this.$t('layout.pageSavingError'), 'error');
this.$root.$emit('layout-draft-save-error');
})
.finally(() => {
window.setTimeout(() => this.loading--, 200);
this.$root.$emit('layout-draft-saved');
this.$root.$emit('coediting-set-lock');
});
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@ export default {
previewPage() {
this.saving = true;
this.$root.$on('layout-draft-saved', this.openPreviewPage);
this.$root.$on('layout-draft-save-error', this.stopLoading);
this.$root.$emit('layout-save-draft');
},
stopLoading() {
this.saving = false;
},
openPreviewPage() {
this.$root.$off('layout-draft-saved', this.openPreviewPage);
this.saving = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
const layoutToUpdate = this.$layoutUtils.cleanAttributes(this.$root.layout, false, true);
return this.$pageLayoutService.updatePageLayout(this.$root.pageRef, layoutToUpdate, 'contentId', true)
.then(() => this.$root.$emit('layout-page-saved'))
.catch(() => this.$root.$emit('alert-message', this.$t('layout.pageSavingError'), 'error'))
.catch(e => this.$root.$emit('alert-message', this.$te(e.message) ? this.$t(e.message) : this.$t('layout.pageSavingError'), 'error'))
.finally(() => window.setTimeout(() => this.loading = false));
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Expand Down Expand Up @@ -47,11 +48,22 @@ export default {
methods: {
saveDraft() {
this.loading = true;
this.$root.$on('layout-draft-saved', this.stopLoading);
this.$root.$on('layout-draft-saved', this.stopLoadingSuccess);
this.$root.$on('layout-draft-save-error', this.stopLoadingError);
this.$root.$emit('layout-save-draft');
},
stopLoading() {
this.$root.$off('layout-draft-saved', this.stopLoading);
stopLoadingSuccess() {
this.stopLoading(true);
},
stopLoadingError() {
this.stopLoading();
},
stopLoading(success) {
if (this.loading && success) {
this.$root.$emit('alert-message', this.$t('layout.pageDraftSavedSuccessfully'), 'success');
}
this.$root.$off('layout-draft-saved', this.stopLoadingSuccess);
this.$root.$off('layout-draft-save-error', this.stopLoadingError);
this.loading = false;
},
},
Expand Down

0 comments on commit f596e8b

Please sign in to comment.