com.mycollab.module.project.view.settings.component.InviteUserTokenField.java Source code

Java tutorial

Introduction

Here is the source code for com.mycollab.module.project.view.settings.component.InviteUserTokenField.java

Source

/**
 * 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.settings.component;

import com.hp.gagawa.java.elements.Img;
import com.mycollab.configuration.StorageFactory;
import com.mycollab.core.MyCollabException;
import com.mycollab.core.utils.StringUtils;
import com.mycollab.module.project.CurrentProjectVariables;
import com.mycollab.module.project.service.ProjectMemberService;
import com.mycollab.module.user.domain.SimpleUser;
import com.mycollab.spring.AppContextUtil;
import com.mycollab.vaadin.MyCollabUI;
import com.mycollab.vaadin.ui.NotificationUtil;
import com.vaadin.server.FontAwesome;
import com.vaadin.ui.Button;
import com.vaadin.ui.Component;
import com.vaadin.ui.CssLayout;
import org.vaadin.jouni.restrain.Restrain;
import org.vaadin.suggestfield.BeanSuggestionConverter;
import org.vaadin.suggestfield.SuggestField;
import org.vaadin.suggestfield.client.SuggestFieldSuggestion;

import java.util.*;

/**
 * @author MyCollab Ltd
 * @since 5.2.1
 */
public class InviteUserTokenField extends CssLayout
        implements SuggestField.NewItemsHandler, SuggestField.SuggestionHandler, SuggestField.TokenHandler {
    private static final long serialVersionUID = 1L;

    private Set<String> inviteEmails;
    private SuggestField suggestField;
    private List<SimpleUser> candidateUsers;
    private String lastQuery = "";
    private boolean isFocusing = false;

    public InviteUserTokenField() {
        super();
        inviteEmails = new HashSet<>();
        this.setWidth("100%");
        this.addStyleName("member-token");
        new Restrain(this).setMinHeight("50px");
        suggestField = new SuggestField();
        suggestField.setHeight("25px");
        suggestField.setWidth("300px");
        suggestField.setNewItemsAllowed(true);
        suggestField.setNewItemsHandler(this);
        suggestField.focus();
        suggestField.setImmediate(true);
        suggestField.setTokenMode(true);
        suggestField.setSuggestionHandler(this);
        suggestField.setSuggestionConverter(new UserSuggestionConverter());
        suggestField.setTokenHandler(this);
        suggestField.setMinimumQueryCharacters(1);
        suggestField.setPopupWidth(400);

        addComponent(suggestField);
        ProjectMemberService prjMemberService = AppContextUtil.getSpringBean(ProjectMemberService.class);
        candidateUsers = prjMemberService.getUsersNotInProject(CurrentProjectVariables.getProjectId(),
                MyCollabUI.getAccountId());
        suggestField.addBlurListener(blurEvent -> {
            isFocusing = false;
            if (!"".equals(lastQuery) && StringUtils.isValidEmail(lastQuery) && !inviteEmails.contains(lastQuery)) {
                handleToken(lastQuery);
            }
        });

        suggestField.addFocusListener(focusEvent -> {
            isFocusing = true;
            lastQuery = "";
        });
        this.addLayoutClickListener(layoutClickEvent -> {
            if (layoutClickEvent.getClickedComponent() == null) {
                suggestField.focus();
            }
        });
    }

    @Override
    public Object addNewItem(String value) {
        lastQuery = "";
        if (StringUtils.isValidEmail(value) && !inviteEmails.contains(value)) {
            return value;
        } else {
            NotificationUtil.showWarningNotification(value + " is not a valid email or it is already in the list");
        }
        return null;
    }

    public Collection<String> getInviteEmails() {
        if (!"".equals(lastQuery) && StringUtils.isValidEmail(lastQuery) && !inviteEmails.contains(lastQuery)) {
            inviteEmails.add(lastQuery);
        }
        return inviteEmails;
    }

    @Override
    public List<Object> searchItems(String query) {
        if (StringUtils.isBlank(query) || !isFocusing) {
            return Collections.emptyList();
        }
        lastQuery = query;
        List<SimpleUser> result = new ArrayList<>();
        for (SimpleUser user : candidateUsers) {
            if (user.getEmail().contains(query) || user.getDisplayName().contains(query)) {
                result.add(user);
            }
        }
        return new ArrayList<>(result);
    }

    @Override
    public void handleToken(Object token) {
        if (token != null) {
            if (token instanceof String) {
                String address = (String) token;
                if (!inviteEmails.contains(address)) {
                    addToken(generateToken(address));
                    inviteEmails.add(address);
                }
            } else if (token instanceof SimpleUser) {
                SimpleUser user = (SimpleUser) token;
                if (!inviteEmails.contains(user.getEmail())) {
                    addToken(generateToken(user));
                    inviteEmails.add(user.getEmail());
                } else {
                    NotificationUtil
                            .showWarningNotification("Email " + user.getEmail() + " is already in the list");
                }
            } else {
                throw new MyCollabException("Do not support token type " + token);
            }
            lastQuery = "";
        }
    }

    private void addToken(Component button) {
        int index = getComponentIndex(suggestField);
        addComponent(button, index);
    }

    private Component generateToken(final String email) {
        final Button btn = new Button(email, FontAwesome.TIMES);
        btn.addClickListener(clickEvent -> {
            InviteUserTokenField.this.removeComponent(btn);
            inviteEmails.remove(email);
        });
        btn.addStyleName("token-field");
        return btn;
    }

    private Component generateToken(final SimpleUser user) {
        final Button btn = new Button("", FontAwesome.TIMES);
        btn.setCaptionAsHtml(true);
        btn.setCaption((new Img("", StorageFactory.getAvatarPath(user.getAvatarid(), 16))).write() + " "
                + user.getDisplayName());
        btn.addClickListener(clickEvent -> {
            InviteUserTokenField.this.removeComponent(btn);
            inviteEmails.remove(user.getEmail());
        });
        btn.setStyleName("token-field");
        return btn;
    }

    private class UserSuggestionConverter extends BeanSuggestionConverter {
        private UserSuggestionConverter() {
            super(SimpleUser.class, "email", "displayName", "email");
        }

        @Override
        public Object toItem(SuggestFieldSuggestion suggestion) {
            SimpleUser result = null;
            for (SimpleUser bean : candidateUsers) {
                if (bean.getEmail().equals(suggestion.getId())) {
                    result = bean;
                    break;
                }
            }
            assert result != null : "This should not be happening";
            return result;
        }
    }
}