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.project.view.bug; import java.util.Arrays; import com.esofthead.mycollab.common.TableViewField; import com.esofthead.mycollab.common.i18n.GenericI18Enum; import com.esofthead.mycollab.common.i18n.OptionI18nEnum.StatusI18nEnum; import com.esofthead.mycollab.module.project.CurrentProjectVariables; import com.esofthead.mycollab.module.project.ProjectLinkBuilder; import com.esofthead.mycollab.module.project.ProjectRolePermissionCollections; import com.esofthead.mycollab.module.project.ProjectTooltipGenerator; import com.esofthead.mycollab.module.project.i18n.ComponentI18nEnum; import com.esofthead.mycollab.module.project.view.settings.component.ProjectUserLink; import com.esofthead.mycollab.module.tracker.domain.SimpleComponent; import com.esofthead.mycollab.module.tracker.domain.criteria.ComponentSearchCriteria; import com.esofthead.mycollab.module.tracker.service.ComponentService; import com.esofthead.mycollab.spring.ApplicationContextUtil; import com.esofthead.mycollab.vaadin.AppContext; import com.esofthead.mycollab.vaadin.events.HasMassItemActionHandlers; import com.esofthead.mycollab.vaadin.events.HasSearchHandlers; import com.esofthead.mycollab.vaadin.events.HasSelectableItemHandlers; import com.esofthead.mycollab.vaadin.events.HasSelectionOptionHandlers; import com.esofthead.mycollab.vaadin.events.MassItemActionHandler; import com.esofthead.mycollab.vaadin.mvp.AbstractPageView; import com.esofthead.mycollab.vaadin.mvp.ViewComponent; import com.esofthead.mycollab.vaadin.mvp.ViewScope; import com.esofthead.mycollab.vaadin.ui.CheckBoxDecor; import com.esofthead.mycollab.vaadin.ui.DefaultMassItemActionHandlersContainer; import com.esofthead.mycollab.vaadin.ui.LabelLink; import com.esofthead.mycollab.vaadin.ui.MyCollabResource; import com.esofthead.mycollab.vaadin.ui.SelectionOptionButton; import com.esofthead.mycollab.vaadin.ui.UIConstants; import com.esofthead.mycollab.vaadin.ui.WebResourceIds; import com.esofthead.mycollab.vaadin.ui.table.AbstractPagedBeanTable; import com.esofthead.mycollab.vaadin.ui.table.DefaultPagedBeanTable; import com.vaadin.data.Property; import com.vaadin.data.Property.ValueChangeEvent; import com.vaadin.server.FontAwesome; import com.vaadin.shared.ui.MarginInfo; import com.vaadin.ui.Alignment; import com.vaadin.ui.ComponentContainer; import com.vaadin.ui.CssLayout; import com.vaadin.ui.HorizontalLayout; import com.vaadin.ui.Label; import com.vaadin.ui.Table; import com.vaadin.ui.VerticalLayout; /** * * @author MyCollab Ltd. * @since 1.0 */ @ViewComponent(scope = ViewScope.PROTOTYPE) public class ComponentListViewImpl extends AbstractPageView implements ComponentListView { private static final long serialVersionUID = 1L; private final ComponentSearchPanel componentSearchPanel; private SelectionOptionButton selectOptionButton; private DefaultPagedBeanTable<ComponentService, ComponentSearchCriteria, SimpleComponent> tableItem; private final VerticalLayout componentListLayout; private DefaultMassItemActionHandlersContainer tableActionControls; private final Label selectedItemsNumberLabel = new Label(); public ComponentListViewImpl() { this.setMargin(new MarginInfo(false, true, false, true)); this.componentSearchPanel = new ComponentSearchPanel(); this.addComponent(this.componentSearchPanel); this.componentListLayout = new VerticalLayout(); this.addComponent(this.componentListLayout); this.generateDisplayTable(); } private void generateDisplayTable() { this.tableItem = new DefaultPagedBeanTable<>(ApplicationContextUtil.getSpringBean(ComponentService.class), SimpleComponent.class, new TableViewField(null, "selected", UIConstants.TABLE_CONTROL_WIDTH), Arrays.asList( new TableViewField(ComponentI18nEnum.FORM_NAME, "componentname", UIConstants.TABLE_EX_LABEL_WIDTH), new TableViewField(ComponentI18nEnum.FORM_LEAD, "userLeadFullName", UIConstants.TABLE_X_LABEL_WIDTH), new TableViewField(GenericI18Enum.FORM_DESCRIPTION, "description", UIConstants.TABLE_EX_LABEL_WIDTH))); this.tableItem.addGeneratedColumn("selected", new Table.ColumnGenerator() { private static final long serialVersionUID = 1L; @Override public Object generateCell(final Table source, final Object itemId, final Object columnId) { final SimpleComponent component = ComponentListViewImpl.this.tableItem.getBeanByIndex(itemId); final CheckBoxDecor cb = new CheckBoxDecor("", component.isSelected()); cb.setImmediate(true); cb.addValueChangeListener(new Property.ValueChangeListener() { private static final long serialVersionUID = 1L; @Override public void valueChange(ValueChangeEvent event) { ComponentListViewImpl.this.tableItem.fireSelectItemEvent(component); } }); component.setExtraData(cb); return cb; } }); this.tableItem.addGeneratedColumn("componentname", new Table.ColumnGenerator() { private static final long serialVersionUID = 1L; @Override public com.vaadin.ui.Component generateCell(final Table source, final Object itemId, final Object columnId) { final SimpleComponent bugComponent = ComponentListViewImpl.this.tableItem.getBeanByIndex(itemId); final LabelLink b = new LabelLink(bugComponent.getComponentname(), ProjectLinkBuilder .generateComponentPreviewFullLink(bugComponent.getProjectid(), bugComponent.getId())); if (bugComponent.getStatus() != null && bugComponent.getStatus().equals(StatusI18nEnum.Closed.name())) { b.addStyleName(UIConstants.LINK_COMPLETED); } b.setDescription(ProjectTooltipGenerator.generateToolTipComponent(AppContext.getUserLocale(), bugComponent, AppContext.getSiteUrl(), AppContext.getTimezone())); return b; } }); this.tableItem.addGeneratedColumn("userLeadFullName", new Table.ColumnGenerator() { private static final long serialVersionUID = 1L; @Override public com.vaadin.ui.Component generateCell(final Table source, final Object itemId, final Object columnId) { final SimpleComponent bugComponent = ComponentListViewImpl.this.tableItem.getBeanByIndex(itemId); return new ProjectUserLink(bugComponent.getUserlead(), bugComponent.getUserLeadAvatarId(), bugComponent.getUserLeadFullName()); } }); this.tableItem.setWidth("100%"); this.componentListLayout.addComponent(this.constructTableActionControls()); this.componentListLayout.addComponent(this.tableItem); } @Override public HasSearchHandlers<ComponentSearchCriteria> getSearchHandlers() { return this.componentSearchPanel; } private ComponentContainer constructTableActionControls() { final CssLayout layoutWrapper = new CssLayout(); layoutWrapper.setWidth("100%"); final HorizontalLayout layout = new HorizontalLayout(); layout.setSpacing(true); layoutWrapper.addStyleName(UIConstants.TABLE_ACTION_CONTROLS); layoutWrapper.addComponent(layout); this.selectOptionButton = new SelectionOptionButton(this.tableItem); layout.addComponent(this.selectOptionButton); this.tableActionControls = new DefaultMassItemActionHandlersContainer(); if (CurrentProjectVariables.canAccess(ProjectRolePermissionCollections.COMPONENTS)) { tableActionControls.addActionItem(MassItemActionHandler.DELETE_ACTION, FontAwesome.TRASH_O, "delete", AppContext.getMessage(GenericI18Enum.BUTTON_DELETE)); } tableActionControls.addActionItem(MassItemActionHandler.MAIL_ACTION, FontAwesome.ENVELOPE_O, "mail", AppContext.getMessage(GenericI18Enum.BUTTON_MAIL)); tableActionControls.addDownloadActionItem(MassItemActionHandler.EXPORT_PDF_ACTION, FontAwesome.FILE_PDF_O, "export", "export.pdf", AppContext.getMessage(GenericI18Enum.BUTTON_EXPORT_PDF)); tableActionControls.addDownloadActionItem(MassItemActionHandler.EXPORT_EXCEL_ACTION, FontAwesome.FILE_EXCEL_O, "export", "export.xlsx", AppContext.getMessage(GenericI18Enum.BUTTON_EXPORT_EXCEL)); tableActionControls.addDownloadActionItem(MassItemActionHandler.EXPORT_CSV_ACTION, FontAwesome.FILE_TEXT_O, "export", "export.csv", AppContext.getMessage(GenericI18Enum.BUTTON_EXPORT_CSV)); layout.addComponent(this.tableActionControls); layout.addComponent(this.selectedItemsNumberLabel); layout.setComponentAlignment(this.selectedItemsNumberLabel, Alignment.MIDDLE_CENTER); return layoutWrapper; } @Override public void enableActionControls(final int numOfSelectedItems) { this.tableActionControls.setVisible(true); this.selectedItemsNumberLabel .setValue(AppContext.getMessage(GenericI18Enum.TABLE_SELECTED_ITEM_TITLE, numOfSelectedItems)); } @Override public void disableActionControls() { this.tableActionControls.setVisible(false); this.selectOptionButton.setSelectedChecbox(false); this.selectedItemsNumberLabel.setValue(""); } @Override public HasSelectionOptionHandlers getOptionSelectionHandlers() { return this.selectOptionButton; } @Override public HasMassItemActionHandlers getPopupActionHandlers() { return this.tableActionControls; } @Override public HasSelectableItemHandlers<SimpleComponent> getSelectableItemHandlers() { return this.tableItem; } @Override public AbstractPagedBeanTable<ComponentSearchCriteria, SimpleComponent> getPagedBeanTable() { return this.tableItem; } }