AgentOperationsOverviewPageModContentFactoryImpl.java
/*
* Copyright 2010-2024 James Pether Sörling
*
* 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.
*
* $Id$
* $HeadURL$
*/
package com.hack23.cia.web.impl.ui.application.views.admin.agentoperations.pagemode;
import java.text.MessageFormat;
import org.springframework.security.access.annotation.Secured;
import org.springframework.stereotype.Component;
import com.hack23.cia.model.internal.application.data.impl.DataAgentOperation;
import com.hack23.cia.model.internal.application.data.impl.DataAgentTarget;
import com.hack23.cia.model.internal.application.system.impl.ApplicationEventGroup;
import com.hack23.cia.web.impl.ui.application.action.ViewAction;
import com.hack23.cia.web.impl.ui.application.views.common.labelfactory.LabelFactory;
import com.hack23.cia.web.impl.ui.application.views.common.rows.RowUtil;
import com.hack23.cia.web.impl.ui.application.views.common.sizing.ContentRatio;
import com.hack23.cia.web.impl.ui.application.views.common.viewnames.AdminViews;
import com.hack23.cia.web.impl.ui.application.views.pageclicklistener.StartAgentClickListener;
import com.jarektoro.responsivelayout.ResponsiveRow;
import com.vaadin.icons.VaadinIcons;
import com.vaadin.ui.Button;
import com.vaadin.ui.Layout;
import com.vaadin.ui.MenuBar;
import com.vaadin.ui.Panel;
import com.vaadin.ui.VerticalLayout;
/**
* The Class AgentOperationsOverviewPageModContentFactoryImpl.
*/
@Component
public final class AgentOperationsOverviewPageModContentFactoryImpl
extends AbstractAgentOperationsPageModContentFactoryImpl {
/** The Constant ADMIN_AGENT_OPERATION. */
private static final String ADMIN_AGENT_OPERATION = "Admin Agent Operation";
/** The Constant BUTTON_ID_PATTERN. */
private static final String BUTTON_ID_PATTERN = "{0}.{1}.{2}";
/** The Constant BUTTON_PATTERN. */
private static final String BUTTON_PATTERN = "Start {0} {1}";
/** The Constant NAME. */
public static final String NAME = AdminViews.ADMIN_AGENT_OPERATIONVIEW_NAME;
/** The Constant WILL_FETCH_DATA_FROM_SOURCE. */
private static final String WILL_FETCH_DATA_FROM_SOURCE = "Will fetch data from source";
/**
* Instantiates a new agent operations overview page mod content factory
* impl.
*/
public AgentOperationsOverviewPageModContentFactoryImpl() {
super();
}
@Secured({ "ROLE_ADMIN" })
@Override
public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
final VerticalLayout content = createPanelContent();
getMenuItemFactory().createMainPageMenuBar(menuBar);
LabelFactory.createHeader2Label(content,ADMIN_AGENT_OPERATION);
final VerticalLayout overviewLayout = new VerticalLayout();
overviewLayout.setSizeFull();
content.addComponent(overviewLayout);
content.setExpandRatio(overviewLayout, ContentRatio.LARGE);
final ResponsiveRow grid = RowUtil.createGridLayout(overviewLayout);
for (final DataAgentTarget dataAgentTarget : DataAgentTarget.values()) {
final Button importDataButton = new Button(MessageFormat.format(BUTTON_PATTERN, DataAgentOperation.IMPORT, dataAgentTarget) , VaadinIcons.BULLSEYE);
importDataButton.addClickListener(new StartAgentClickListener(dataAgentTarget, DataAgentOperation.IMPORT));
importDataButton.setId(MessageFormat.format(BUTTON_ID_PATTERN, ViewAction.START_AGENT_BUTTON, DataAgentOperation.IMPORT, dataAgentTarget));
RowUtil.createRowItem(grid, importDataButton, WILL_FETCH_DATA_FROM_SOURCE);
}
final String pageId = getPageId(parameters);
getPageActionEventHelper().createPageEvent(ViewAction.VISIT_ADMIN_AGENT_OPERATION_VIEW, ApplicationEventGroup.ADMIN,
NAME, null, pageId);
return content;
}
@Override
public boolean matches(final String page, final String parameters) {
return NAME.equals(page);
}
}