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.project.view; import com.hp.gagawa.java.elements.A; import com.mycollab.common.i18n.GenericI18Enum; import com.mycollab.common.i18n.OptionI18nEnum.StatusI18nEnum; import com.mycollab.core.utils.StringUtils; import com.mycollab.module.crm.CrmTypeConstants; import com.mycollab.module.crm.ui.CrmAssetsManager; import com.mycollab.module.project.ProjectLinkBuilder; import com.mycollab.module.project.ProjectTooltipGenerator; import com.mycollab.module.project.ProjectTypeConstants; import com.mycollab.module.project.domain.Project; import com.mycollab.module.project.domain.SimpleProject; import com.mycollab.module.project.domain.criteria.ProjectSearchCriteria; import com.mycollab.module.project.fielddef.ProjectTableFieldDef; import com.mycollab.module.project.service.ProjectService; import com.mycollab.module.project.ui.ProjectAssetsUtil; import com.mycollab.spring.AppContextUtil; import com.mycollab.vaadin.MyCollabUI; import com.mycollab.vaadin.UserUIContext; import com.mycollab.vaadin.events.HasMassItemActionHandler; import com.mycollab.vaadin.events.HasSearchHandlers; import com.mycollab.vaadin.events.HasSelectableItemHandlers; import com.mycollab.vaadin.events.HasSelectionOptionHandlers; import com.mycollab.vaadin.mvp.AbstractVerticalPageView; import com.mycollab.vaadin.mvp.ViewComponent; import com.mycollab.vaadin.ui.DefaultMassItemActionHandlerContainer; import com.mycollab.vaadin.ui.ELabel; import com.mycollab.vaadin.web.ui.*; import com.mycollab.vaadin.web.ui.table.DefaultPagedBeanTable; import com.mycollab.vaadin.web.ui.table.IPagedBeanTable; import com.vaadin.server.FontAwesome; import com.vaadin.shared.ui.label.ContentMode; import com.vaadin.ui.*; import org.vaadin.viritin.button.MButton; import org.vaadin.viritin.layouts.MHorizontalLayout; import java.util.Arrays; /** * @author MyCollab Ltd * @since 5.2.12 */ @ViewComponent public class ProjectListViewImpl extends AbstractVerticalPageView implements ProjectListView { private ProjectSearchPanel projectSearchPanel; private SelectionOptionButton selectOptionButton; private DefaultPagedBeanTable<ProjectService, ProjectSearchCriteria, SimpleProject> tableItem; private VerticalLayout bodyLayout; private DefaultMassItemActionHandlerContainer tableActionControls; private Label selectedItemsNumberLabel = new Label(); public ProjectListViewImpl() { withMargin(true); } @Override public void initContent() { removeAllComponents(); projectSearchPanel = new ProjectSearchPanel(); with(projectSearchPanel); bodyLayout = new VerticalLayout(); this.addComponent(bodyLayout); generateDisplayTable(); } private void generateDisplayTable() { tableItem = new DefaultPagedBeanTable<>(AppContextUtil.getSpringBean(ProjectService.class), SimpleProject.class, ProjectTypeConstants.PROJECT, ProjectTableFieldDef.selected(), Arrays.asList(ProjectTableFieldDef.projectName(), ProjectTableFieldDef.lead(), ProjectTableFieldDef.client(), ProjectTableFieldDef.startDate(), ProjectTableFieldDef.homePage(), ProjectTableFieldDef.status())); tableItem.addGeneratedColumn("selected", (source, itemId, columnId) -> { final SimpleProject item = tableItem.getBeanByIndex(itemId); final CheckBoxDecor cb = new CheckBoxDecor("", item.isSelected()); cb.setImmediate(true); cb.addValueChangeListener(valueChangeEvent -> tableItem.fireSelectItemEvent(item)); item.setExtraData(cb); return cb; }); tableItem.addGeneratedColumn(Project.Field.name.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); LabelLink b = new LabelLink(project.getName(), ProjectLinkBuilder.generateProjectFullLink(project.getId())); b.setDescription(ProjectTooltipGenerator.generateToolTipProject(UserUIContext.getUserLocale(), MyCollabUI.getDateFormat(), project, MyCollabUI.getSiteUrl(), UserUIContext.getUserTimeZone())); return new MHorizontalLayout(ProjectAssetsUtil.buildProjectLogo(project.getShortname(), project.getId(), project.getAvatarid(), 32), b).expand(b).alignAll(Alignment.MIDDLE_LEFT).withMargin(false) .withFullHeight(); }); tableItem.addGeneratedColumn(Project.Field.lead.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); return new Label(ProjectLinkBuilder.generateProjectMemberHtmlLink(project.getId(), project.getLead(), project.getLeadFullName(), project.getLeadAvatarId(), true), ContentMode.HTML); }); tableItem.addGeneratedColumn(Project.Field.accountid.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); if (project.getAccountid() != null) { LabelLink b = new LabelLink(project.getClientName(), ProjectLinkBuilder.generateClientPreviewFullLink(project.getAccountid())); b.setIconLink(CrmAssetsManager.getAsset(CrmTypeConstants.ACCOUNT)); return b; } else { return new Label(); } }); tableItem.addGeneratedColumn(Project.Field.planstartdate.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); return new Label(UserUIContext.formatDate(project.getPlanstartdate())); }); tableItem.addGeneratedColumn(Project.Field.planenddate.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); return new Label(UserUIContext.formatDate(project.getPlanenddate())); }); tableItem.addGeneratedColumn(Project.Field.projectstatus.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); return ELabel.i18n(project.getProjectstatus(), StatusI18nEnum.class); }); tableItem.addGeneratedColumn(Project.Field.createdtime.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); return new Label(UserUIContext.formatDate(project.getCreatedtime())); }); tableItem.addGeneratedColumn(Project.Field.homepage.name(), (source, itemId, columnId) -> { SimpleProject project = tableItem.getBeanByIndex(itemId); if (StringUtils.isNotBlank(project.getHomepage())) { return new Label(new A(project.getHomepage(), "_blank").appendText(project.getHomepage()).write(), ContentMode.HTML); } else { return new Label(); } }); tableItem.setWidth("100%"); bodyLayout.addComponent(constructTableActionControls()); bodyLayout.addComponent(tableItem); } private ComponentContainer constructTableActionControls() { MHorizontalLayout layout = new MHorizontalLayout().withFullWidth(); layout.addStyleName(WebThemes.TABLE_ACTION_CONTROLS); selectOptionButton = new SelectionOptionButton(tableItem); selectOptionButton.setWidthUndefined(); layout.addComponent(selectOptionButton); tableActionControls = new DefaultMassItemActionHandlerContainer(); tableActionControls.addDownloadPdfActionItem(); tableActionControls.addDownloadExcelActionItem(); tableActionControls.addDownloadCsvActionItem(); tableActionControls.setVisible(false); tableActionControls.setWidthUndefined(); layout.addComponent(tableActionControls); selectedItemsNumberLabel.setWidth("100%"); layout.with(selectedItemsNumberLabel).withAlign(selectedItemsNumberLabel, Alignment.MIDDLE_CENTER) .expand(selectedItemsNumberLabel); MButton customizeViewBtn = new MButton("", clickEvent -> UI.getCurrent().addWindow(new ProjectListCustomizeWindow(tableItem))) .withStyleName(WebThemes.BUTTON_ACTION).withIcon(FontAwesome.ADJUST); customizeViewBtn.setDescription(UserUIContext.getMessage(GenericI18Enum.OPT_LAYOUT_OPTIONS)); layout.with(customizeViewBtn).withAlign(customizeViewBtn, Alignment.MIDDLE_RIGHT); return layout; } @Override public void showNoItemView() { } @Override public void enableActionControls(int numOfSelectedItems) { tableActionControls.setVisible(true); selectedItemsNumberLabel .setValue(UserUIContext.getMessage(GenericI18Enum.TABLE_SELECTED_ITEM_TITLE, numOfSelectedItems)); } @Override public void disableActionControls() { tableActionControls.setVisible(false); selectOptionButton.setSelectedCheckbox(false); selectedItemsNumberLabel.setValue(""); } @Override public HasSearchHandlers<ProjectSearchCriteria> getSearchHandlers() { return projectSearchPanel; } @Override public HasSelectionOptionHandlers getOptionSelectionHandlers() { return selectOptionButton; } @Override public HasMassItemActionHandler getPopupActionHandlers() { return tableActionControls; } @Override public HasSelectableItemHandlers<SimpleProject> getSelectableItemHandlers() { return tableItem; } @Override public IPagedBeanTable<ProjectSearchCriteria, SimpleProject> getPagedBeanTable() { return tableItem; } }