Package org.jboss.dashboard.ui.components.panelManagement

Source Code of org.jboss.dashboard.ui.components.panelManagement.ShowPanelPageComponent

/**
* Copyright (C) 2012 JBoss Inc
*
* 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 org.jboss.dashboard.ui.components.panelManagement;

import javax.inject.Inject;

import org.jboss.dashboard.commons.cdi.CDIBeanLocator;
import org.jboss.dashboard.ui.annotation.panel.PanelScoped;
import org.jboss.dashboard.ui.components.ModalDialogComponent;
import org.jboss.dashboard.ui.controller.CommandRequest;
import org.jboss.dashboard.workspace.Panel;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;

@PanelScoped
public class ShowPanelPageComponent extends PanelManagementPanel {

    public static ShowPanelPageComponent lookup() {
        return CDIBeanLocator.getBeanByType(ShowPanelPageComponent.class);
    }

    @Inject
    private transient Logger log;

    private String page;

    public String getBeanJSP() {
        return "/components/showPanelPage/show.jsp";
    }

    public void closePopup() {
        ModalDialogComponent mdc = getModalDialogComponent();
        if (mdc.isShowing()) mdc.hide();
    }

    public boolean openDialog(Panel panel, CommandRequest request, String page, String title, int width, int height) {
        this.page = page;
        return openDialog(panel, request, title, width, height);
    }

    public String getPanelPage() {
        try {
            if (isWellConfigured()) return getPanelInstance().getProvider().getPage(page);
        } catch (Exception e) {
            log.warn("Error getting Panel Page '" + page + "': ", e);
        }
        return "";
    }

    @Override
    protected void reset() {
        super.reset();
        page = null;
    }

    @Override
    public boolean isWellConfigured() {
        return super.isWellConfigured() && !StringUtils.isEmpty(page);
    }

    public String getPage() {
        return page;
    }

    public void setPage(String page) {
        this.page = page;
    }

    @Override
    public Logger getLogger() {
        return log;
    }
}
TOP

Related Classes of org.jboss.dashboard.ui.components.panelManagement.ShowPanelPageComponent

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.