com.adobe.acs.commons.mcp.form.MultifieldComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.adobe.acs.commons.mcp.form;
import com.adobe.acs.commons.mcp.form.PathfieldComponent.AssetSelectComponent;
import com.adobe.acs.commons.mcp.form.PathfieldComponent.FolderSelectComponent;
import com.adobe.acs.commons.mcp.form.PathfieldComponent.NodeSelectComponent;
import org.apache.sling.api.resource.Resource;
import org.osgi.annotation.versioning.ProviderType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
/**
* Represent multifield with sub-fields based on referenced class. Depending on
* where this is used, some javascript should be included by the front-end to
* process the resulting form correctly.
*/
@ProviderType
public final class MultifieldComponent extends AbstractContainerComponent {
private static final Logger LOG = LoggerFactory.getLogger(MultifieldComponent.class);
public static final String FIELD_PATH = "/field";
public static final String NODE_PATH = "node_path";
public static final String ASSET_PATH = "asset_path";
public static final String FOLDER_PATH = "folder_path";
public static final String USE_CLASS = "use_class";
public MultifieldComponent() {
setResourceType("granite/ui/components/coral/foundation/form/multifield");
}
@SuppressWarnings({"unchecked", "squid:S2658"}) // class name is from a trusted source
public void init() {
if (hasOption(NODE_PATH)) {
setDefaultChildComponent(NodeSelectComponent.class);
} else if (hasOption(ASSET_PATH)) {
setDefaultChildComponent(AssetSelectComponent.class);
} else if (hasOption(FOLDER_PATH)) {
setDefaultChildComponent(FolderSelectComponent.class);
} else {
getOption(USE_CLASS).ifPresent(c -> {
try {
setDefaultChildComponent((Class extends FieldComponent>) Class.forName(c));
} catch (ClassNotFoundException ex) {
LOG.error("Unable to find class {}", ex);
}
});
}
super.init();
}
@Override
public Resource buildComponentResource() {
getProperties().put("composite", isComposite());
AbstractResourceImpl res = new AbstractResourceImpl(getPath(), getResourceType(), getResourceSuperType(), getProperties());
if (getHelper() != null) {
res.setResourceResolver(getHelper().getRequest().getResourceResolver());
}
if (isComposite()) {
AbstractResourceImpl field = new AbstractResourceImpl(getPath() + FIELD_PATH, "granite/ui/components/coral/foundation/container", getResourceSuperType(), new HashMap<>());
// The container component is what sets the name, not the base component
field.getValueMap().put("name", getName());
res.addChild(field);
AbstractResourceImpl items = generateItemsResource(getPath() + FIELD_PATH, true);
field.addChild(items);
} else {
for (FieldComponent component : fieldComponents.values()) {
component.setPath(getPath() + FIELD_PATH);
component.getProperties().putAll(getProperties());
Resource comp = component.buildComponentResource();
comp.getValueMap().put("name", getName());
res.addChild(comp);
}
}
return res;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy