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.mycollab.module.crm.view.cases; import com.google.common.base.MoreObjects; import com.hp.gagawa.java.elements.A; import com.mycollab.common.i18n.GenericI18Enum; import com.mycollab.db.arguments.NumberSearchField; import com.mycollab.module.crm.CrmLinkGenerator; import com.mycollab.module.crm.CrmTypeConstants; import com.mycollab.module.crm.domain.CaseWithBLOBs; import com.mycollab.module.crm.domain.ContactCase; import com.mycollab.module.crm.domain.SimpleContact; import com.mycollab.module.crm.domain.criteria.ContactSearchCriteria; import com.mycollab.module.crm.i18n.ContactI18nEnum; import com.mycollab.module.crm.service.ContactService; import com.mycollab.module.crm.ui.CrmAssetsManager; import com.mycollab.module.crm.ui.components.RelatedListComp2; import com.mycollab.security.RolePermissionCollections; import com.mycollab.spring.AppContextUtil; import com.mycollab.vaadin.MyCollabUI; import com.mycollab.vaadin.UserUIContext; import com.mycollab.vaadin.ui.ELabel; import com.mycollab.vaadin.web.ui.*; import com.vaadin.server.FontAwesome; import com.vaadin.ui.*; import org.vaadin.viritin.button.MButton; import org.vaadin.viritin.layouts.MHorizontalLayout; /** * @author MyCollab Ltd. * @since 4.0 */ public class CaseContactListComp extends RelatedListComp2<ContactService, ContactSearchCriteria, SimpleContact> { private static final long serialVersionUID = 2049142673385990009L; private CaseWithBLOBs cases; public CaseContactListComp() { super(AppContextUtil.getSpringBean(ContactService.class), 20); setMargin(true); this.setBlockDisplayHandler(new CaseContactBlockDisplay()); } void displayContacts(CaseWithBLOBs cases) { this.cases = cases; loadContacts(); } private void loadContacts() { ContactSearchCriteria criteria = new ContactSearchCriteria(); criteria.setSaccountid(new NumberSearchField(MyCollabUI.getAccountId())); criteria.setCaseId(new NumberSearchField(cases.getId())); this.setSearchCriteria(criteria); } @Override public void refresh() { loadContacts(); } @Override protected Component generateTopControls() { VerticalLayout controlsBtnWrap = new VerticalLayout(); controlsBtnWrap.setWidth("100%"); if (UserUIContext.canWrite(RolePermissionCollections.CRM_CONTACT)) { final SplitButton controlsBtn = new SplitButton(); controlsBtn.addStyleName(WebThemes.BUTTON_ACTION); controlsBtn.setCaption(UserUIContext.getMessage(ContactI18nEnum.NEW)); controlsBtn.setIcon(FontAwesome.PLUS); controlsBtn.addClickListener(event -> fireNewRelatedItem("")); Button selectBtn = new Button(UserUIContext.getMessage(GenericI18Enum.BUTTON_SELECT), clickEvent -> { CaseContactSelectionWindow contactsWindow = new CaseContactSelectionWindow( CaseContactListComp.this); ContactSearchCriteria criteria = new ContactSearchCriteria(); criteria.setSaccountid(new NumberSearchField(MyCollabUI.getAccountId())); UI.getCurrent().addWindow(contactsWindow); contactsWindow.setSearchCriteria(criteria); controlsBtn.setPopupVisible(false); }); selectBtn.setIcon(CrmAssetsManager.getAsset(CrmTypeConstants.CONTACT)); OptionPopupContent buttonControlsLayout = new OptionPopupContent(); buttonControlsLayout.addOption(selectBtn); controlsBtn.setContent(buttonControlsLayout); controlsBtnWrap.addComponent(controlsBtn); controlsBtnWrap.setComponentAlignment(controlsBtn, Alignment.MIDDLE_RIGHT); } return controlsBtnWrap; } private class CaseContactBlockDisplay implements BlockDisplayHandler<SimpleContact> { @Override public Component generateBlock(final SimpleContact contact, int blockIndex) { CssLayout beanBlock = new CssLayout(); beanBlock.addStyleName("bean-block"); beanBlock.setWidth("350px"); VerticalLayout blockContent = new VerticalLayout(); CssLayout iconWrap = new CssLayout(); iconWrap.setStyleName("icon-wrap"); ELabel contactAvatar = ELabel.fontIcon(CrmAssetsManager.getAsset(CrmTypeConstants.CONTACT)); iconWrap.addComponent(contactAvatar); MHorizontalLayout blockTop = new MHorizontalLayout(); blockTop.addComponent(iconWrap); VerticalLayout contactInfo = new VerticalLayout(); contactInfo.setSpacing(true); MButton btnDelete = new MButton("", clickEvent -> ConfirmDialogExt.show(UI.getCurrent(), UserUIContext.getMessage(GenericI18Enum.DIALOG_DELETE_TITLE, MyCollabUI.getSiteName()), UserUIContext.getMessage(GenericI18Enum.DIALOG_DELETE_SINGLE_ITEM_MESSAGE), UserUIContext.getMessage(GenericI18Enum.BUTTON_YES), UserUIContext.getMessage(GenericI18Enum.BUTTON_NO), confirmDialog -> { if (confirmDialog.isConfirmed()) { final ContactService contactService = AppContextUtil .getSpringBean(ContactService.class); ContactCase associateContact = new ContactCase(); associateContact.setCaseid(cases.getId()); associateContact.setContactid(contact.getId()); contactService.removeContactCaseRelationship(associateContact, MyCollabUI.getAccountId()); CaseContactListComp.this.refresh(); } })).withIcon(FontAwesome.TRASH_O).withStyleName(WebThemes.BUTTON_ICON_ONLY); blockContent.addComponent(btnDelete); blockContent.setComponentAlignment(btnDelete, Alignment.TOP_RIGHT); Label contactName = ELabel.html(UserUIContext.getMessage(GenericI18Enum.FORM_NAME) + ": " + new A(CrmLinkGenerator.generateCrmItemLink(CrmTypeConstants.CONTACT, contact.getId())) .appendText(contact.getContactName()).write()); contactInfo.addComponent(contactName); Label contactTitle = new Label(UserUIContext.getMessage(ContactI18nEnum.FORM_TITLE) + ": " + MoreObjects.firstNonNull(contact.getTitle(), "")); contactInfo.addComponent(contactTitle); Label contactEmail = ELabel.html(UserUIContext.getMessage(GenericI18Enum.FORM_EMAIL) + ": " + new A("mailto:" + contact.getEmail()) .appendText(MoreObjects.firstNonNull(contact.getEmail(), ""))); contactInfo.addComponent(contactEmail); Label contactOfficePhone = new Label(UserUIContext.getMessage(ContactI18nEnum.FORM_OFFICE_PHONE) + ": " + MoreObjects.firstNonNull(contact.getOfficephone(), "")); contactInfo.addComponent(contactOfficePhone); blockTop.addComponent(contactInfo); blockTop.setExpandRatio(contactInfo, 1.0f); blockTop.setWidth("100%"); blockContent.addComponent(blockTop); blockContent.setWidth("100%"); beanBlock.addComponent(blockContent); return beanBlock; } } }