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.committee.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.Service;
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.ChartDataManager;
29  import com.hack23.cia.web.impl.ui.application.views.common.dataseriesfactory.api.CommitteeDataSeriesFactory;
30  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.ChartIndicators;
31  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PageMode;
32  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;
33  import com.vaadin.ui.HorizontalLayout;
34  import com.vaadin.ui.Layout;
35  import com.vaadin.ui.MenuBar;
36  import com.vaadin.ui.Panel;
37  import com.vaadin.ui.VerticalLayout;
38  
39  /**
40   * The Class CommitteeRankingCurrentCommitteesChartsPageModContentFactoryImpl.
41   */
42  @Service
43  public final class CommitteeRankingCurrentCommitteesChartsPageModContentFactoryImpl
44  		extends AbstractCommitteeRankingPageModContentFactoryImpl {
45  
46  	/** The Constant NAME. */
47  	public static final String NAME = UserViews.COMMITTEE_RANKING_VIEW_NAME;
48  
49  	/** The Constant CHARTS. */
50  	private static final String CHARTS = "Charts:";
51  
52  	/** The chart data manager. */
53  	@Autowired
54  	private ChartDataManager chartDataManager;
55  
56  	/** The data series factory. */
57  	@Autowired
58  	private CommitteeDataSeriesFactory dataSeriesFactory;
59  
60  	/**
61  	 * Instantiates a new committee ranking current committees charts page mod
62  	 * content factory impl.
63  	 */
64  	public CommitteeRankingCurrentCommitteesChartsPageModContentFactoryImpl() {
65  		super();
66  	}
67  
68  	@Override
69  	public boolean matches(final String page, final String parameters) {
70  		return NAME.equals(page) && !StringUtils.isEmpty(parameters) && parameters.contains(PageMode.CHARTS.toString())
71  				&& parameters.contains(ChartIndicators.CURRENTCOMMITTEESBYHEADCOUNT.toString());
72  	}
73  
74  	@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
75  	@Override
76  	public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
77  		final VerticalLayout panelContent = createPanelContent();
78  
79  		getCommitteeRankingMenuItemFactory().createCommitteeeRankingMenuBar(menuBar);
80  
81  		final String pageId = getPageId(parameters);
82  
83  		final HorizontalLayout chartLayout = new HorizontalLayout();
84  		chartLayout.setSizeFull();
85  
86  		chartDataManager.createChartPanel(chartLayout, dataSeriesFactory.createCommitteeChartTimeSeriesCurrent(),
87  				"Current");
88  
89  		panelContent.addComponent(chartLayout);
90  
91  		panel.setCaption(CHARTS + parameters);
92  
93  		getPageActionEventHelper().createPageEvent(ViewAction.VISIT_COMMITTEE_RANKING_VIEW, ApplicationEventGroup.USER,
94  				NAME, parameters, pageId);
95  
96  		return panelContent;
97  
98  	}
99  
100 }