org.vaadin.addons.sitekit.viewlet.administrator.customer.CustomerFlowlet.java Source code

Java tutorial

Introduction

Here is the source code for org.vaadin.addons.sitekit.viewlet.administrator.customer.CustomerFlowlet.java

Source

/**
 * Copyright 2013 Tommi S.E. Laukkanen
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.vaadin.addons.sitekit.viewlet.administrator.customer;

import org.vaadin.addons.sitekit.dao.CustomerDao;
import org.vaadin.addons.sitekit.flow.AbstractFlowlet;
import org.vaadin.addons.sitekit.grid.ValidatingEditor;
import org.vaadin.addons.sitekit.grid.ValidatingEditorStateListener;
import org.vaadin.addons.sitekit.model.Customer;
import org.vaadin.addons.sitekit.model.PostalAddress;
import org.vaadin.addons.sitekit.site.SiteFields;
import com.vaadin.data.util.BeanItem;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.HorizontalLayout;

import javax.persistence.EntityManager;

/**
 * Customer edit flow.
 * @author Tommi S.E. Laukkanen
 */
public final class CustomerFlowlet extends AbstractFlowlet implements ValidatingEditorStateListener {

    /** Serial version UID. */
    private static final long serialVersionUID = 1L;

    /** The entity manager. */
    private EntityManager entityManager;
    /** The customer flow. */
    private Customer entity;

    /** The entity form. */
    private ValidatingEditor customerEditor;
    /** The entity form. */
    private ValidatingEditor invoicingAddressEditor;
    /** The entity form. */
    private ValidatingEditor deliveryAddressEditor;
    /** The save button. */
    private Button saveButton;
    /** The discard button. */
    private Button discardButton;

    @Override
    public String getFlowletKey() {
        return "customer";
    }

    @Override
    public boolean isDirty() {
        return customerEditor.isModified() || invoicingAddressEditor.isModified()
                || deliveryAddressEditor.isModified();
    }

    @Override
    public boolean isValid() {
        return customerEditor.isValid() && invoicingAddressEditor.isValid() && deliveryAddressEditor.isValid();
    }

    @Override
    public void initialize() {
        entityManager = getSite().getSiteContext().getObject(EntityManager.class);

        final GridLayout gridLayout = new GridLayout(3, 2);
        gridLayout.setSizeFull();
        gridLayout.setMargin(false);
        gridLayout.setSpacing(true);
        gridLayout.setRowExpandRatio(1, 1f);
        setViewContent(gridLayout);

        customerEditor = new ValidatingEditor(SiteFields.getFieldDescriptors(Customer.class));
        customerEditor.setCaption("Customer");
        customerEditor.addListener((ValidatingEditorStateListener) this);
        gridLayout.addComponent(customerEditor, 0, 0);

        invoicingAddressEditor = new ValidatingEditor(SiteFields.getFieldDescriptors(PostalAddress.class));
        invoicingAddressEditor.setCaption("Invoicing Address");
        invoicingAddressEditor.addListener((ValidatingEditorStateListener) this);
        gridLayout.addComponent(invoicingAddressEditor, 1, 0);

        deliveryAddressEditor = new ValidatingEditor(SiteFields.getFieldDescriptors(PostalAddress.class));
        deliveryAddressEditor.setCaption("Delivery Address");
        deliveryAddressEditor.addListener((ValidatingEditorStateListener) this);
        gridLayout.addComponent(deliveryAddressEditor, 2, 0);

        final HorizontalLayout buttonLayout = new HorizontalLayout();
        buttonLayout.setSpacing(true);
        gridLayout.addComponent(buttonLayout, 0, 1);

        saveButton = new Button("Save");
        saveButton.setImmediate(true);
        buttonLayout.addComponent(saveButton);
        saveButton.addListener(new ClickListener() {
            /** Serial version UID. */
            private static final long serialVersionUID = 1L;

            @Override
            public void buttonClick(final ClickEvent event) {
                customerEditor.commit();
                invoicingAddressEditor.commit();
                deliveryAddressEditor.commit();
                entity = entityManager.merge(entity);

                CustomerDao.saveCustomer(entityManager, entity);

                //entityManager.detach(entity);
            }
        });

        discardButton = new Button("Discard");
        discardButton.setImmediate(true);
        buttonLayout.addComponent(discardButton);
        discardButton.addListener(new ClickListener() {
            /** Serial version UID. */
            private static final long serialVersionUID = 1L;

            @Override
            public void buttonClick(final ClickEvent event) {
                customerEditor.discard();
                invoicingAddressEditor.discard();
                deliveryAddressEditor.discard();
            }
        });

    }

    /**
     * Edit an existing customer.
     * @param entity entity to be edited.
     * @param newEntity true if entity to be edited is new.
     */
    public void edit(final Customer entity, final boolean newEntity) {
        this.entity = entity;
        customerEditor.setItem(new BeanItem<Customer>(entity), newEntity);
        invoicingAddressEditor.setItem(new BeanItem<PostalAddress>(entity.getInvoicingAddress()), newEntity);
        deliveryAddressEditor.setItem(new BeanItem<PostalAddress>(entity.getDeliveryAddress()), newEntity);
    }

    @Override
    public void editorStateChanged(final ValidatingEditor source) {
        if (isDirty()) {
            if (isValid()) {
                saveButton.setEnabled(true);
            } else {
                saveButton.setEnabled(false);
            }
            discardButton.setEnabled(true);
        } else {
            saveButton.setEnabled(false);
            discardButton.setEnabled(false);
        }
    }

    @Override
    public void enter() {
    }

}