View Javadoc
1   /*
2    * Copyright 2014 James Pether Sörling
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *   http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   *	$Id$
17   *  $HeadURL$
18  */
19  package com.hack23.cia.web.impl.ui.application.views.user.goverment.pagemode;
20  
21  import org.apache.commons.lang3.StringUtils;
22  import org.springframework.beans.factory.annotation.Autowired;
23  import org.springframework.security.access.annotation.Secured;
24  import org.springframework.stereotype.Component;
25  
26  import com.hack23.cia.model.internal.application.system.impl.ApplicationEventGroup;
27  import com.hack23.cia.web.impl.ui.application.action.ViewAction;
28  import com.hack23.cia.web.impl.ui.application.views.common.chartfactory.api.GovernmentBodyChartDataManager;
29  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.MinistryPageMode;
30  import com.vaadin.ui.Layout;
31  import com.vaadin.ui.MenuBar;
32  import com.vaadin.ui.Panel;
33  import com.vaadin.ui.VerticalLayout;
34  
35  /**
36   * The Class MinistryRankingGovernmentBodiesPageModContentFactoryImpl.
37   */
38  @Component
39  public final class MinistryRankingGovernmentBodiesPageModContentFactoryImpl extends AbstractMinistryRankingPageModContentFactoryImpl {
40  
41  	/** The Constant OVERVIEW. */
42  	private static final String GOVERNMENT_BODIES = "Government body";
43  
44  	@Autowired
45  	private GovernmentBodyChartDataManager governmentBodyChartDataManager;
46  
47  	/**
48  	 * Instantiates a new ministry ranking government bodies page mod content
49  	 * factory impl.
50  	 */
51  	public MinistryRankingGovernmentBodiesPageModContentFactoryImpl() {
52  		super();
53  	}
54  
55  	@Override
56  	public boolean matches(final String page, final String parameters) {
57  		return NAME.equals(page) && (!StringUtils.isEmpty(parameters) && parameters.contains(MinistryPageMode.GOVERNMENT_BODIES.toString()));
58  	}
59  
60  	@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
61  	@Override
62  	public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
63  		final VerticalLayout panelContent = createPanelContent();
64  
65  		getMinistryRankingMenuItemFactory().createMinistryRankingMenuBar(menuBar);
66  
67  		final String pageId = getPageId(parameters);
68  
69  
70  		panel.setCaption(GOVERNMENT_BODIES + parameters);
71  
72  		governmentBodyChartDataManager.createMinistryGovernmentBodyHeadcountSummaryChart(panelContent);
73  
74  		getPageActionEventHelper().createPageEvent(ViewAction.VISIT_MINISTRY_RANKING_VIEW, ApplicationEventGroup.USER, NAME,
75  				parameters, pageId);
76  
77  		return panelContent;
78  
79  	}
80  
81  
82  
83  
84  }