com.qcadoo.mes.deviationCausesReporting.hooks.DeviationReportGeneratorViewHooks.java Source code

Java tutorial

Introduction

Here is the source code for com.qcadoo.mes.deviationCausesReporting.hooks.DeviationReportGeneratorViewHooks.java

Source

/**
 * ***************************************************************************
 * Copyright (c) 2010 Qcadoo Limited
 * Project: Qcadoo MES
 * Version: 1.3
 *
 * This file is part of Qcadoo.
 *
 * Qcadoo is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation; either version 3 of the License,
 * or (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 * ***************************************************************************
 */
package com.qcadoo.mes.deviationCausesReporting.hooks;

import java.util.Date;

import org.joda.time.LocalDate;
import org.springframework.stereotype.Service;

import com.google.common.base.Function;
import com.google.common.base.Optional;
import com.qcadoo.localization.api.utils.DateUtils;
import com.qcadoo.mes.deviationCausesReporting.constants.DeviationReportGeneratorViewReferences;
import com.qcadoo.view.api.ComponentState;
import com.qcadoo.view.api.ViewDefinitionState;
import com.qcadoo.view.api.components.CheckBoxComponent;
import com.qcadoo.view.api.components.FieldComponent;

@Service
public class DeviationReportGeneratorViewHooks {

    public void onBeforeRender(final ViewDefinitionState view) {
        markDateFromAsRequired(view);
        if (!isViewAlreadyInitialized(view)) {
            setDefaultDateRange(view);
            markViewAsAlreadyInitialized(view);
        }
    }

    private void setDefaultDateRange(final ViewDefinitionState view) {
        for (ComponentState dateFromComponent : view
                .tryFindComponentByReference(DeviationReportGeneratorViewReferences.DATE_FROM).asSet()) {
            Date firstDayOfCurrentMonth = LocalDate.now().withDayOfMonth(1).toDate();
            dateFromComponent.setFieldValue(DateUtils.toDateString(firstDayOfCurrentMonth));
        }
        Optional<ComponentState> maybeDateFromComponent = view
                .tryFindComponentByReference(DeviationReportGeneratorViewReferences.DATE_TO);
        for (ComponentState dateFromComponent : maybeDateFromComponent.asSet()) {
            Date today = LocalDate.now().toDate();
            dateFromComponent.setFieldValue(DateUtils.toDateString(today));
        }
    }

    private void markDateFromAsRequired(final ViewDefinitionState view) {
        Optional<FieldComponent> maybeDateFromComponent = view
                .tryFindComponentByReference(DeviationReportGeneratorViewReferences.DATE_FROM);
        for (FieldComponent dateFromComponent : maybeDateFromComponent.asSet()) {
            dateFromComponent.setRequired(true);
        }
    }

    private boolean isViewAlreadyInitialized(final ViewDefinitionState view) {
        Optional<CheckBoxComponent> maybeCheckBox = view
                .tryFindComponentByReference(DeviationReportGeneratorViewReferences.IS_VIEW_INITIALIZED);
        return maybeCheckBox.transform(new Function<CheckBoxComponent, Boolean>() {

            @Override
            public Boolean apply(final CheckBoxComponent component) {
                return component.isChecked();
            }
        }).or(false);
    }

    private void markViewAsAlreadyInitialized(final ViewDefinitionState view) {
        Optional<CheckBoxComponent> maybeCheckBox = view
                .tryFindComponentByReference(DeviationReportGeneratorViewReferences.IS_VIEW_INITIALIZED);
        for (CheckBoxComponent isViewInitializedCheckbox : maybeCheckBox.asSet()) {
            isViewInitializedCheckbox.setChecked(true);
        }
    }

}