Java tutorial
/** * This file is part of mycollab-web. * * mycollab-web is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * mycollab-web is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with mycollab-web. If not, see <http://www.gnu.org/licenses/>. */ package com.esofthead.mycollab.module.crm.view.lead; import com.esofthead.mycollab.common.ModuleNameConstants; import com.esofthead.mycollab.core.arguments.NumberSearchField; import com.esofthead.mycollab.core.arguments.SearchField; import com.esofthead.mycollab.core.arguments.StringSearchField; import com.esofthead.mycollab.module.crm.CrmTypeConstants; import com.esofthead.mycollab.module.crm.domain.SimpleActivity; import com.esofthead.mycollab.module.crm.domain.SimpleCampaign; import com.esofthead.mycollab.module.crm.domain.SimpleLead; import com.esofthead.mycollab.module.crm.domain.criteria.ActivitySearchCriteria; import com.esofthead.mycollab.module.crm.i18n.CrmCommonI18nEnum; import com.esofthead.mycollab.module.crm.i18n.LeadI18nEnum; import com.esofthead.mycollab.module.crm.ui.CrmAssetsManager; import com.esofthead.mycollab.module.crm.ui.components.*; import com.esofthead.mycollab.module.crm.view.activity.ActivityRelatedItemListComp; import com.esofthead.mycollab.security.RolePermissionCollections; import com.esofthead.mycollab.vaadin.AppContext; import com.esofthead.mycollab.vaadin.events.HasPreviewFormHandlers; import com.esofthead.mycollab.vaadin.mvp.ViewComponent; import com.esofthead.mycollab.vaadin.ui.*; import com.vaadin.server.FontAwesome; import com.vaadin.ui.Button; import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.ComponentContainer; import com.vaadin.ui.CssLayout; import com.vaadin.ui.UI; import org.vaadin.maddon.layouts.MVerticalLayout; /** * * @author MyCollab Ltd. * @since 1.0 * */ @ViewComponent public class LeadReadViewImpl extends AbstractPreviewItemComp<SimpleLead> implements LeadReadView { private static final long serialVersionUID = 1L; protected LeadCampaignListComp associateCampaignList; protected ActivityRelatedItemListComp associateActivityList; protected NoteListItems noteListItems; private PeopleInfoComp peopleInfoComp; private DateInfoComp dateInfoComp; private CrmFollowersComp<SimpleLead> compFollowers; public LeadReadViewImpl() { super(CrmAssetsManager.getAsset(CrmTypeConstants.LEAD)); } @Override protected AdvancedPreviewBeanForm<SimpleLead> initPreviewForm() { return new AdvancedPreviewBeanForm<SimpleLead>() { private static final long serialVersionUID = 1L; @Override public void showHistory() { LeadHistoryLogWindow historyLog = new LeadHistoryLogWindow(ModuleNameConstants.CRM, CrmTypeConstants.LEAD); historyLog.loadHistory(beanItem.getId()); UI.getCurrent().addWindow(historyLog); } }; } @Override protected ComponentContainer createButtonControls() { CrmPreviewFormControlsGenerator<SimpleLead> controlsButton = new CrmPreviewFormControlsGenerator<>( previewForm); Button convertButton = new Button(AppContext.getMessage(LeadI18nEnum.BUTTON_CONVERT_LEAD), new Button.ClickListener() { private static final long serialVersionUID = 1L; @Override public void buttonClick(ClickEvent event) { previewForm.fireExtraAction("convert", beanItem); } }); convertButton.setStyleName(UIConstants.THEME_GREEN_LINK); convertButton.setIcon(FontAwesome.FLASK); controlsButton.insertToControlBlock(convertButton); return controlsButton.createButtonControls(RolePermissionCollections.CRM_LEAD); } @Override protected ComponentContainer createBottomPanel() { return noteListItems; } @Override protected void onPreviewItem() { displayNotes(); displayActivities(); displayCampaigns(); dateInfoComp.displayEntryDateTime(beanItem); peopleInfoComp.displayEntryPeople(beanItem); compFollowers.displayFollowers(beanItem); previewItemContainer.selectTab(CrmTypeConstants.DETAIL); } @Override protected String initFormTitle() { return beanItem.getLeadName(); } @Override protected void initRelatedComponents() { associateCampaignList = new LeadCampaignListComp(); noteListItems = new NoteListItems(AppContext.getMessage(CrmCommonI18nEnum.TAB_NOTE)); associateActivityList = new ActivityRelatedItemListComp(true); CssLayout navigatorWrapper = previewItemContainer.getNavigatorWrapper(); MVerticalLayout basicInfo = new MVerticalLayout().withWidth("100%").withStyleName("basic-info"); dateInfoComp = new DateInfoComp(); basicInfo.addComponent(dateInfoComp); peopleInfoComp = new PeopleInfoComp(); basicInfo.addComponent(peopleInfoComp); compFollowers = new CrmFollowersComp<>(CrmTypeConstants.LEAD, RolePermissionCollections.CRM_LEAD); basicInfo.addComponent(compFollowers); navigatorWrapper.addComponentAsFirst(basicInfo); previewItemContainer.addTab(previewContent, CrmTypeConstants.DETAIL, AppContext.getMessage(CrmCommonI18nEnum.TAB_ABOUT)); previewItemContainer.addTab(associateCampaignList, CrmTypeConstants.CAMPAIGN, AppContext.getMessage(CrmCommonI18nEnum.TAB_CAMPAIGN)); previewItemContainer.addTab(associateActivityList, CrmTypeConstants.ACTIVITY, AppContext.getMessage(CrmCommonI18nEnum.TAB_ACTIVITY)); } @Override protected IFormLayoutFactory initFormLayoutFactory() { return new DynaFormLayout(CrmTypeConstants.LEAD, LeadDefaultDynaFormLayoutFactory.getForm()); } @Override protected AbstractBeanFieldGroupViewFieldFactory<SimpleLead> initBeanFormFieldFactory() { return new LeadReadFormFieldFactory(previewForm); } protected void displayCampaigns() { associateCampaignList.displayCampaigns(beanItem); } protected void displayNotes() { noteListItems.showNotes(CrmTypeConstants.LEAD, beanItem.getId()); } protected void displayActivities() { ActivitySearchCriteria criteria = new ActivitySearchCriteria(); criteria.setSaccountid(new NumberSearchField(AppContext.getAccountId())); criteria.setType(new StringSearchField(SearchField.AND, CrmTypeConstants.LEAD)); criteria.setTypeid(new NumberSearchField(beanItem.getId())); associateActivityList.setSearchCriteria(criteria); } @Override public SimpleLead getItem() { return beanItem; } @Override public HasPreviewFormHandlers<SimpleLead> getPreviewFormHandlers() { return previewForm; } @Override public IRelatedListHandlers<SimpleActivity> getRelatedActivityHandlers() { return associateActivityList; } @Override public IRelatedListHandlers<SimpleCampaign> getRelatedCampaignHandlers() { return associateCampaignList; } }