Skip to content

Commit

Permalink
fix: Fix Dynamic Layout Edition - MEED-6791 - Meeds-io/MIPs#131 (#55)
Browse files Browse the repository at this point in the history
Prior to this change, when cloning a page for edition, the dynamic
container isn't replaced by child applications. This change ensures to
retrieve the list of applications of dynamic container instead of the
dynamic container itself when editing a page.
  • Loading branch information
boubaker authored and SaraBoutej committed Aug 29, 2024
1 parent c53bb57 commit ca7133d
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package io.meeds.layout.service;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Objects;
import java.util.UUID;
Expand Down Expand Up @@ -188,6 +189,7 @@ public PageKey clonePage(PageKey pageKey,
page.resetStorage();
page.setName(page.getName() + "_draft_" + username);
page.setTitle(page.getTitle() + " Draft " + username);
replaceAddonContainerChildren(page);

layoutService.save(new PageContext(page.getPageKey(), Utils.toPageState(page)), page);
return page.getPageKey();
Expand Down Expand Up @@ -328,6 +330,34 @@ private void expandAddonContainerChildren(Container container) {
}
}

private void replaceAddonContainerChildren(Container container) {
ArrayList<ModelObject> subContainers = container.getChildren();
if (subContainers == null) {
return;
}
LinkedHashMap<Integer, List<Application<Portlet>>> addonContainerChildren = new LinkedHashMap<>();
for (int i = subContainers.size() - 1; i >= 0; i--) {
ModelObject modelObject = subContainers.get(i);
if (modelObject instanceof Container subContainer) {
if (StringUtils.equals(subContainer.getFactoryId(), "addonContainer")) {
List<Application<Portlet>> applications = addOnService.getApplications(subContainer.getName());
if (CollectionUtils.isNotEmpty(applications)) {
addonContainerChildren.put(i, applications);
}
} else {
replaceAddonContainerChildren(subContainer);
}
}
}
if (!addonContainerChildren.isEmpty()) {
addonContainerChildren.forEach((index, applications) -> {
subContainers.remove(index.intValue());
subContainers.addAll(index, applications);
});
container.setChildren(subContainers);
}
}

private void validateCSSInputs(ModelObject modelObject) {
String width;
String height;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ public void getPageLayout() throws IllegalAccessException, ObjectNotFoundExcepti
assertEquals(page, pageLayoutService.getPageLayout(PAGE_KEY, TEST_USER));
}

@SuppressWarnings("unchecked")
@Test
public void getPageLayoutWithDynamicContainer() {
when(layoutService.getPage(PAGE_KEY)).thenReturn(page);
Expand All @@ -168,7 +169,8 @@ public void getPageLayoutWithDynamicContainer() {
Application<Portlet> application = mock(Application.class);
when(addOnService.getApplications("testAddonContainer")).thenReturn(Collections.singletonList(application));
pageLayoutService.getPageLayout(PAGE_KEY);
verify(dynamicContainer).setChildren(argThat(children -> children != null && children.size() == 1 && children.get(0) == application));
verify(dynamicContainer).setChildren(argThat(children -> children != null && children.size() == 1
&& children.get(0) == application));
}

@Test
Expand Down Expand Up @@ -230,6 +232,23 @@ public void clonePage() throws IllegalAccessException, ObjectNotFoundException {
verify(layoutService).save(any(PageContext.class), eq(page));
}

@SuppressWarnings("unchecked")
@Test
public void clonePageWithDynamicContainer() throws IllegalAccessException, ObjectNotFoundException {
when(layoutService.getPage(PAGE_KEY)).thenReturn(page);
Container dynamicContainer = mock(Container.class);
when(dynamicContainer.getFactoryId()).thenReturn("addonContainer");
when(dynamicContainer.getName()).thenReturn("testAddonContainer");
when(page.getChildren()).thenReturn(new ArrayList<>(Collections.singleton(dynamicContainer)));
Application<Portlet> application = mock(Application.class);
when(addOnService.getApplications("testAddonContainer")).thenReturn(Collections.singletonList(application));
when(aclService.canEditPage(PAGE_KEY, TEST_USER)).thenReturn(true);
when(page.getName()).thenReturn(PAGE_KEY.getName());

pageLayoutService.clonePage(PAGE_KEY, TEST_USER);
verify(page).setChildren(argThat(children -> children != null && children.size() == 1 && children.get(0) == application));
}

@SuppressWarnings("unchecked")
@Test
public void updatePageLayout() throws IllegalAccessException, ObjectNotFoundException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
<div>
<layout-editor-toolbar
:disable-save="!modified"
:page="page"
:page="pageContext"
:node="node"
:node-labels="nodeLabels" />
<layout-editor-content
:page="page"
:page="pageContext"
:node="draftNode"
:layout="draftLayout"
@modified="modified = true" />
Expand All @@ -42,7 +42,7 @@
export default {
data: () => ({
node: null,
page: null,
pageContext: null,
draftNode: null,
draftLayout: null,
nodeLabels: null,
Expand All @@ -67,24 +67,15 @@ export default {
draftPageRef() {
return this.draftPageKey?.ref || (this.draftPageKey && `${this.draftPageKey.site.typeName}::${this.draftPageKey.site.name}::${this.draftPageKey.name}`);
},
pageLoaded() {
return !!this.draftPageRef && !!this.page;
},
},
watch: {
pageLoaded() {
if (this.pageLoaded) {
this.$pageLayoutService.getPageLayout(this.draftPageRef, 'contentId')
.then(draftLayout => this.setDraftLayout(draftLayout));
}
},
pageRef: {
immediate: true,
handler() {
if (this.pageRef) {
this.$root.pageRef = this.pageRef;
this.$pageLayoutService.getPage(this.pageRef)
.then(page => this.page = page);
.then(page => this.pageContext = page);
}
},
},
Expand All @@ -93,6 +84,8 @@ export default {
handler() {
if (this.draftPageRef) {
this.$root.draftPageRef = this.draftPageRef;
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 @@ -32,6 +32,10 @@ export default {
type: Object,
default: null,
},
parentId: {
type: String,
default: null,
},
index: {
type: Number,
default: null,
Expand Down

0 comments on commit ca7133d

Please sign in to comment.