blob: ad96c322b8d0541fb39816b57d7cd04e2cc2816e [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.openmeetings.web.admin.configurations;
import org.apache.openmeetings.db.dao.basic.ConfigurationDao;
import org.apache.openmeetings.db.entity.basic.Configuration;
import org.apache.openmeetings.web.admin.AdminPanel;
import org.apache.openmeetings.web.admin.SearchableDataView;
import org.apache.openmeetings.web.common.PagedEntityListPanel;
import org.apache.openmeetings.web.data.DataViewContainer;
import org.apache.openmeetings.web.data.OmOrderByBorder;
import org.apache.openmeetings.web.data.SearchableDataProvider;
import org.apache.wicket.AttributeModifier;
import org.apache.wicket.ajax.AjaxEventBehavior;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.core.request.handler.IPartialPageRequestHandler;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.repeater.Item;
/**
* add/update/delete {@link Configuration}
*
* @author swagner
*
*/
public class ConfigsPanel extends AdminPanel {
private static final long serialVersionUID = 1L;
private ConfigForm form;
private final WebMarkupContainer listContainer = new WebMarkupContainer("listContainer");
@Override
public void onMenuPanelLoad(IPartialPageRequestHandler target) {
super.onMenuPanelLoad(target);
target.appendJavaScript("omConfigPanelInit();");
}
public ConfigsPanel(String id) {
super(id);
SearchableDataView<Configuration> dataView = new SearchableDataView<Configuration>("configList"
, new SearchableDataProvider<Configuration>(ConfigurationDao.class)) {
private static final long serialVersionUID = 1L;
@Override
protected void populateItem(final Item<Configuration> item) {
final Configuration c = item.getModelObject();
item.add(new Label("configuration_id", c.getConfiguration_id()));
item.add(new Label("conf_key", c.getConf_key()));
item.add(new Label("conf_value", c.getConf_value()));
item.add(new AjaxEventBehavior("click") {
private static final long serialVersionUID = 1L;
protected void onEvent(AjaxRequestTarget target) {
form.hideNewRecord();
form.setModelObject(c);
target.add(form, listContainer);
target.appendJavaScript("omConfigPanelInit();");
}
});
item.add(AttributeModifier.replace("class", "clickable ui-widget-content"
+ (c.getConfiguration_id().equals(form.getModelObject().getConfiguration_id()) ? " ui-state-default" : "")));
}
};
add(listContainer.add(dataView).setOutputMarkupId(true));
PagedEntityListPanel navigator = new PagedEntityListPanel("navigator", dataView) {
private static final long serialVersionUID = 1L;
@Override
protected void onEvent(AjaxRequestTarget target) {
target.add(listContainer);
}
};
DataViewContainer<Configuration> container = new DataViewContainer<Configuration>(listContainer, dataView, navigator);
container.addLink(new OmOrderByBorder<Configuration>("orderById", "configuration_id", container))
.addLink(new OmOrderByBorder<Configuration>("orderByKey", "conf_key", container))
.addLink(new OmOrderByBorder<Configuration>("orderByValue", "conf_value", container));
add(container.getLinks());
add(navigator);
form = new ConfigForm("form", listContainer, new Configuration());
form.showNewRecord();
add(form);
}
}