All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wicketstuff.dashboard.widgets.jqplot.JqPlotSettingsPanel Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2012 Decebal Suiu
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with
 * the License. You may obtain a copy of the License in the LICENSE file, or 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.wicketstuff.dashboard.widgets.jqplot;

import static org.wicketstuff.dashboard.DashboardContextInitializer.getDashboardContext;

import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.AjaxLink;
import org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink;
import org.apache.wicket.markup.html.form.DropDownChoice;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.panel.GenericPanel;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.PropertyModel;
import org.wicketstuff.dashboard.Dashboard;
import org.wicketstuff.dashboard.Widget;
import org.wicketstuff.dashboard.web.DashboardPanel;
import org.wicketstuff.dashboard.web.WidgetPanel;

/**
 * @author Decebal Suiu
 */
public class JqPlotSettingsPanel extends GenericPanel {
	private static final long serialVersionUID = 1L;

	private String chartType;

	public JqPlotSettingsPanel(String id, IModel model) {
		super(id, model);

		setOutputMarkupPlaceholderTag(true);

		Form form = new Form<>("form");
		chartType = getModelObject().getSettings().get("chartType");
//		chartType = ChartWidget.BAR_TYPE;
		DropDownChoice choice = new DropDownChoice<>("chartType",
				new PropertyModel(this, "chartType"), JqPlotWidget.TYPES);
		form.add(choice);

		form.add(new AjaxSubmitLink("submit") {
			private static final long serialVersionUID = 1L;

			@Override
			protected void onSubmit(AjaxRequestTarget target) {
				getModelObject().getSettings().put("chartType", chartType);
				Dashboard dashboard = findParent(DashboardPanel.class).getDashboard();
				getDashboardContext().getDashboardPersister().save(dashboard);

				hideSettingPanel(target);
				// TODO
				WidgetPanel widgetPanel = findParent(WidgetPanel.class);
				JqPlotWidgetView widgetView = (JqPlotWidgetView) widgetPanel.getWidgetView();
				target.add(widgetView);
			}

			@Override
			protected void onError(AjaxRequestTarget target) {
			}
		});
		form.add(new AjaxLink("cancel") {
			private static final long serialVersionUID = 1L;

			@Override
			public void onClick(AjaxRequestTarget target) {
				hideSettingPanel(target);
			}
		});

		add(form);
	}

	public String getChartType() {
		return chartType;
	}

	public void setChartType(String chartType) {
		this.chartType = chartType;
	}

	private void hideSettingPanel(AjaxRequestTarget target) {
		setVisible(false);
		target.add(this);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy