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.admin.system.pagemode;
20  
21  import java.util.Arrays;
22  
23  import org.springframework.security.access.annotation.Secured;
24  import org.springframework.stereotype.Component;
25  
26  import com.hack23.cia.model.external.worldbank.countries.impl.CountryElement;
27  import com.hack23.cia.model.external.worldbank.countries.impl.CountryElement_;
28  import com.hack23.cia.model.internal.application.system.impl.ApplicationEventGroup;
29  import com.hack23.cia.service.api.DataContainer;
30  import com.hack23.cia.web.impl.ui.application.action.ViewAction;
31  import com.hack23.cia.web.impl.ui.application.views.common.labelfactory.LabelFactory;
32  import com.hack23.cia.web.impl.ui.application.views.common.viewnames.AdminViews;
33  import com.hack23.cia.web.impl.ui.application.views.pageclicklistener.PageItemPropertyClickListener;
34  import com.vaadin.data.util.BeanItem;
35  import com.vaadin.data.util.BeanItemContainer;
36  import com.vaadin.ui.Layout;
37  import com.vaadin.ui.MenuBar;
38  import com.vaadin.ui.Panel;
39  import com.vaadin.ui.VerticalLayout;
40  
41  /**
42   * The Class AdminCountryPageModContentFactoryImpl.
43   */
44  @Component
45  public final class AdminCountryPageModContentFactoryImpl extends AbstractAdminSystemPageModContentFactoryImpl {
46  
47  	/** The Constant ADMIN_COUNTRY. */
48  	private static final String ADMIN_COUNTRY = "Admin Country";
49  
50  	/** The Constant NAME. */
51  	public static final String NAME = AdminViews.ADMIN_COUNTRY_VIEW_NAME;
52  
53  	/**
54  	 * Instantiates a new admin country page mod content factory impl.
55  	 */
56  	public AdminCountryPageModContentFactoryImpl() {
57  		super();
58  	}
59  
60  	@Override
61  	public boolean matches(final String page, final String parameters) {
62  		return NAME.equals(page);
63  	}
64  
65  	@Secured({ "ROLE_ADMIN" })
66  	@Override
67  	public Layout createContent(final String parameters, final MenuBar menuBar, final Panel panel) {
68  		final VerticalLayout content = createPanelContent();
69  
70  		final String pageId = getPageId(parameters);
71  		final int pageNr= getPageNr(parameters);
72  
73  		getMenuItemFactory().createMainPageMenuBar(menuBar);
74  
75  		LabelFactory.createHeader2Label(content,ADMIN_COUNTRY);
76  
77  		final DataContainer<CountryElement, Long> dataContainer = getApplicationManager()
78  				.getDataContainer(CountryElement.class);
79  
80  		final BeanItemContainer<CountryElement> politicianDocumentDataSource = new BeanItemContainer<>(
81  				CountryElement.class, dataContainer.getPageOrderBy(pageNr,DEFAULT_RESULTS_PER_PAGE,CountryElement_.countryName));
82  
83  		createPagingControls(content,NAME,pageId, dataContainer.getSize(), pageNr, DEFAULT_RESULTS_PER_PAGE);
84  
85  		getGridFactory()
86  				.createBasicBeanItemNestedPropertiesGrid(content, politicianDocumentDataSource,
87  						"Country",null,
88  						new String[] { "hjid", "id", "countryName", "iso2Code", "capitalCity", "longitude",
89  								"latitude" }, new String[] { "hjid","id", "region", "adminregion" ,"incomeLevel", "lendingType","longitude", "latitude" },
90  						new PageItemPropertyClickListener(AdminViews.ADMIN_COUNTRY_VIEW_NAME, "hjid"), null, null);
91  
92  		if (pageId != null && !pageId.isEmpty()) {
93  
94  			final CountryElement country = dataContainer.load(Long.valueOf(pageId));
95  			if (country != null) {
96  
97  				getFormFactory().addFormPanelTextFields(content, new BeanItem<>(country), CountryElement.class,
98  						Arrays.asList(new String[] { "hjid", "id", "countryName", "iso2Code", "capitalCity",
99  								"longitude", "latitude" }));
100 			}
101 		}
102 
103 		getPageActionEventHelper().createPageEvent(ViewAction.VISIT_ADMIN_COUNTRY_VIEW, ApplicationEventGroup.ADMIN,
104 				NAME, null, pageId);
105 
106 		return content;
107 
108 	}
109 
110 }