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.party.pagemode;
20  
21  import org.springframework.security.access.annotation.Secured;
22  import org.springframework.stereotype.Component;
23  
24  import com.hack23.cia.model.internal.application.data.party.impl.ViewRiksdagenParty;
25  import com.hack23.cia.model.internal.application.data.party.impl.ViewRiksdagenPartyRoleMember;
26  import com.hack23.cia.model.internal.application.data.party.impl.ViewRiksdagenPartyRoleMember_;
27  import com.hack23.cia.service.api.DataContainer;
28  import com.hack23.cia.web.impl.ui.application.views.common.labelfactory.LabelFactory;
29  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.PartyPageMode;
30  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.UserViews;
31  import com.hack23.cia.web.impl.ui.application.views.pageclicklistener.PageItemPropertyClickListener;
32  import com.vaadin.data.util.BeanItemContainer;
33  import com.vaadin.ui.Layout;
34  import com.vaadin.ui.MenuBar;
35  import com.vaadin.ui.Panel;
36  import com.vaadin.ui.VerticalLayout;
37  
38  /**
39   * The Class LeaderHistoryPageModContentFactoryImpl.
40   */
41  @Component
42  public final class PartyLeaderHistoryPageModContentFactoryImpl extends AbstractPartyPageModContentFactoryImpl {
43  
44  	/** The Constant LEADER_HISTORY. */
45  	private static final String LEADER_HISTORY = "LeaderHistory";
46  
47  	/**
48  	 * Instantiates a new party leader history page mod content factory impl.
49  	 */
50  	public PartyLeaderHistoryPageModContentFactoryImpl() {
51  		super();
52  	}
53  
54  	@Override
55  	public boolean matches(final String page, final String parameters) {
56  		return NAME.equals(page) && parameters.contains(PartyPageMode.LEADERHISTORY.toString());
57  	}
58  
59  	@Secured({ "ROLE_ANONYMOUS", "ROLE_USER", "ROLE_ADMIN" })
60  	@Override
61  	public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
62  		final VerticalLayout panelContent = createPanelContent();
63  
64  		final String pageId = getPageId(parameters);
65  
66  
67  		final DataContainer<ViewRiksdagenParty, String> dataContainer = getApplicationManager()
68  				.getDataContainer(ViewRiksdagenParty.class);
69  
70  		final ViewRiksdagenParty viewRiksdagenParty = dataContainer
71  				.load(pageId);
72  
73  		if (viewRiksdagenParty != null) {
74  
75  			getPartyMenuItemFactory().createPartyMenuBar(menuBar, pageId);
76  
77  
78  			LabelFactory.createHeader2Label(panelContent,LEADER_HISTORY);
79  
80  
81  			final DataContainer<ViewRiksdagenPartyRoleMember, String> partyRoleMemberDataContainer = getApplicationManager()
82  					.getDataContainer(ViewRiksdagenPartyRoleMember.class);
83  
84  			final BeanItemContainer<ViewRiksdagenPartyRoleMember> partyRoleMemberDataSource = new BeanItemContainer<>(
85  					ViewRiksdagenPartyRoleMember.class, partyRoleMemberDataContainer
86  							.getAllBy(ViewRiksdagenPartyRoleMember_.party, viewRiksdagenParty.getPartyId()));
87  
88  			getGridFactory().createBasicBeanItemGrid(
89  					panelContent, partyRoleMemberDataSource,
90  					"Leader History",
91  					new String[] { "roleId", "roleCode", "personId", "firstName", "lastName", "party", "totalDaysServed", "active", "detail",
92  							"fromDate", "toDate" }, new String[] { "roleId", "personId", "party", "detail" },
93  					new PageItemPropertyClickListener(UserViews.POLITICIAN_VIEW_NAME, "personId"), null, null);
94  
95  
96  			pageCompleted(parameters, panel, pageId, viewRiksdagenParty);
97  		}
98  		return panelContent;
99  
100 	}
101 
102 
103 }