com.mycollab.module.crm.ui.components.PeopleInfoComp.java Source code

Java tutorial

Introduction

Here is the source code for com.mycollab.module.crm.ui.components.PeopleInfoComp.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.crm.ui.components;

import com.mycollab.core.arguments.ValuedBean;
import com.mycollab.core.utils.BeanUtility;
import com.mycollab.module.crm.i18n.CrmCommonI18nEnum;
import com.mycollab.vaadin.UserUIContext;
import com.mycollab.vaadin.web.ui.UserLink;
import com.vaadin.server.FontAwesome;
import com.vaadin.shared.ui.MarginInfo;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import org.apache.commons.beanutils.PropertyUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.vaadin.viritin.layouts.MVerticalLayout;

/**
 * @author MyCollab Ltd.
 * @since 4.0
 */
public class PeopleInfoComp extends MVerticalLayout {
    private static final long serialVersionUID = 1L;

    private static final Logger LOG = LoggerFactory.getLogger(PeopleInfoComp.class);

    public void displayEntryPeople(ValuedBean bean) {
        this.removeAllComponents();
        this.withMargin(false);

        Label peopleInfoHeader = new Label(
                FontAwesome.USER.getHtml() + " " + UserUIContext.getMessage(CrmCommonI18nEnum.SUB_INFO_PEOPLE),
                ContentMode.HTML);
        peopleInfoHeader.setStyleName("info-hdr");
        this.addComponent(peopleInfoHeader);

        GridLayout layout = new GridLayout(2, 2);
        layout.setSpacing(true);
        layout.setWidth("100%");
        layout.setMargin(new MarginInfo(false, false, false, true));
        try {
            Label createdLbl = new Label(UserUIContext.getMessage(CrmCommonI18nEnum.ITEM_CREATED_PEOPLE));
            createdLbl.setSizeUndefined();
            layout.addComponent(createdLbl, 0, 0);

            String createdUserName = (String) PropertyUtils.getProperty(bean, "createduser");
            String createdUserAvatarId = (String) PropertyUtils.getProperty(bean, "createdUserAvatarId");
            String createdUserDisplayName = (String) PropertyUtils.getProperty(bean, "createdUserFullName");

            UserLink createdUserLink = new UserLink(createdUserName, createdUserAvatarId, createdUserDisplayName);
            layout.addComponent(createdUserLink, 1, 0);
            layout.setColumnExpandRatio(1, 1.0f);

            Label assigneeLbl = new Label(UserUIContext.getMessage(CrmCommonI18nEnum.ITEM_ASSIGN_PEOPLE));
            assigneeLbl.setSizeUndefined();
            layout.addComponent(assigneeLbl, 0, 1);
            String assignUserName = (String) PropertyUtils.getProperty(bean, "assignuser");
            String assignUserAvatarId = (String) PropertyUtils.getProperty(bean, "assignUserAvatarId");
            String assignUserDisplayName = (String) PropertyUtils.getProperty(bean, "assignUserFullName");

            UserLink assignUserLink = new UserLink(assignUserName, assignUserAvatarId, assignUserDisplayName);
            layout.addComponent(assignUserLink, 1, 1);
        } catch (Exception e) {
            LOG.error("Can not build user link {} ", BeanUtility.printBeanObj(bean));
        }

        this.addComponent(layout);

    }
}