blob: 4cfcb573e2c5d3d488640d4665cee62679cd5349 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.syncope.client.console.panels;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import org.apache.syncope.client.ui.commons.markup.html.form.AjaxTextFieldPanel;
import org.apache.syncope.client.ui.commons.wicket.markup.html.bootstrap.tabs.Accordion;
import org.apache.syncope.common.lib.types.SchemaType;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.form.AjaxButton;
import org.apache.wicket.event.Broadcast;
import org.apache.wicket.extensions.markup.html.tabs.AbstractTab;
import org.apache.wicket.extensions.markup.html.tabs.ITab;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.panel.Panel;
import org.apache.wicket.model.Model;
public class SchemasPanel extends Panel {
private static final long serialVersionUID = -1140213992451232279L;
private final PageReference pageRef;
public SchemasPanel(final String id, final PageReference pageRef) {
super(id);
this.pageRef = pageRef;
Model<String> keywordModel = new Model<>(StringUtils.EMPTY);
WebMarkupContainer searchBoxContainer = new WebMarkupContainer("searchBox");
add(searchBoxContainer);
Form<?> form = new Form<>("form");
searchBoxContainer.add(form);
AjaxTextFieldPanel filter = new AjaxTextFieldPanel("filter", "filter", keywordModel, true);
form.add(filter.hideLabel().setOutputMarkupId(true).setRenderBodyOnly(true));
AjaxButton search = new AjaxButton("search") {
private static final long serialVersionUID = 8390605330558248736L;
@Override
protected void onSubmit(final AjaxRequestTarget target) {
send(SchemasPanel.this, Broadcast.DEPTH,
new SchemaTypePanel.SchemaSearchEvent(target, keywordModel.getObject()));
}
};
search.setOutputMarkupId(true);
form.add(search);
form.setDefaultButton(search);
Accordion accordion = new Accordion("accordionPanel", buildTabList());
accordion.setOutputMarkupId(true);
add(accordion);
}
private List<ITab> buildTabList() {
List<ITab> tabs = new ArrayList<>();
for (final SchemaType schemaType : SchemaType.values()) {
tabs.add(new AbstractTab(new Model<>(schemaType.name())) {
private static final long serialVersionUID = 1037272333056449378L;
@Override
public Panel getPanel(final String panelId) {
return new SchemaTypePanel(panelId, schemaType, pageRef);
}
});
}
return tabs;
}
}