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.parliament.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.PartyChartDataManager;
29  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.ChartIndicators;
30  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PageMode;
31  import com.vaadin.ui.Layout;
32  import com.vaadin.ui.MenuBar;
33  import com.vaadin.ui.Panel;
34  import com.vaadin.ui.VerticalLayout;
35  
36  /**
37   * The Class TestChartsPartyGenderPageModContentFactoryImpl.
38   */
39  @Component
40  public final class ParliamentChartsPartyGenderPageModContentFactoryImpl extends AbstractParliamentPageModContentFactoryImpl {
41  
42  	/** The Constant PARTY_GENDER_DAILY_AVERAGE_FOR_ALL_BALLOTS. */
43  	private static final String PARTY_GENDER_DAILY_AVERAGE_FOR_ALL_BALLOTS = "Party percentage female, daily average for ballot days";
44  
45  	/** The party chart data manager. */
46  	@Autowired
47  	private PartyChartDataManager partyChartDataManager;
48  
49  	/**
50  	 * Instantiates a new test charts party gender page mod content factory
51  	 * impl.
52  	 */
53  	public ParliamentChartsPartyGenderPageModContentFactoryImpl() {
54  		super();
55  	}
56  
57  	@Override
58  	public boolean matches(final String page, final String parameters) {
59  		return NAME.equals(page) && !StringUtils.isEmpty(parameters) && parameters.contains(PageMode.CHARTS.toString())
60  				&& parameters.contains(ChartIndicators.PARTYGENDER.toString());
61  	}
62  
63  	@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
64  	@Override
65  	public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
66  		final VerticalLayout panelContent = createPanelContent();
67  		getParliamentMenuItemFactory().createParliamentTopicMenu(menuBar);
68  
69  
70  		final String pageId = getPageId(parameters);
71  
72  		partyChartDataManager.createPartyGenderChart(panelContent);
73  
74  		getPageActionEventHelper().createPageEvent(ViewAction.VISIT_TEST_CHART_VIEW, ApplicationEventGroup.USER, NAME,
75  				parameters, pageId);
76  		panel.setCaption(PARTY_GENDER_DAILY_AVERAGE_FOR_ALL_BALLOTS);
77  
78  		return panelContent;
79  
80  	}
81  
82  }