blob: ccb7d0bef87adfbd32e9972166d29fa4aa1923f6 [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.io.Serializable;
import org.apache.syncope.client.console.wicket.markup.head.MetaHeaderItem;
import org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
import org.apache.syncope.client.ui.commons.pages.BaseWebPage;
import org.apache.syncope.client.ui.commons.panels.SubmitableModalPanel;
import org.apache.syncope.client.ui.commons.panels.WizardModalPanel;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.markup.head.HeaderItem;
import org.apache.wicket.markup.head.IHeaderResponse;
import org.apache.wicket.markup.head.PriorityHeaderItem;
import org.apache.wicket.markup.html.panel.Panel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class AbstractModalPanel<T extends Serializable> extends Panel
implements SubmitableModalPanel, WizardModalPanel<T> {
private static final long serialVersionUID = 8611724965544132636L;
protected static final Logger LOG = LoggerFactory.getLogger(AbstractModalPanel.class);
private static final HeaderItem META = new MetaHeaderItem("X-UA-Compatible", "IE=edge");
protected final BaseModal<T> modal;
protected final PageReference pageRef;
public AbstractModalPanel(final BaseModal<T> modal, final PageReference pageRef) {
this(BaseModal.CONTENT_ID, modal, pageRef);
}
public AbstractModalPanel(final String id, final BaseModal<T> modal, final PageReference pageRef) {
super(id);
this.pageRef = pageRef;
this.modal = modal;
}
@Override
public void renderHead(final IHeaderResponse response) {
super.renderHead(response);
response.render(new PriorityHeaderItem(META));
}
@Override
public void onSubmit(final AjaxRequestTarget target) {
((BaseWebPage) pageRef.getPage()).getNotificationPanel().refresh(target);
}
@Override
public void onError(final AjaxRequestTarget target) {
((BaseWebPage) pageRef.getPage()).getNotificationPanel().refresh(target);
}
@Override
public T getItem() {
return modal.getFormModel();
}
}