package org.ovirt.engine.ui.webadmin.section.main.view.popup.host; import org.ovirt.engine.core.common.businessentities.VDS; import org.ovirt.engine.core.common.businessentities.VdsSpmStatus; import org.ovirt.engine.core.compat.Event; import org.ovirt.engine.core.compat.EventArgs; import org.ovirt.engine.core.compat.IEventListener; import org.ovirt.engine.core.compat.PropertyChangedEventArgs; import org.ovirt.engine.ui.uicommonweb.models.ConfirmationModel; import org.ovirt.engine.ui.uicommonweb.models.EntityModel; import org.ovirt.engine.ui.webadmin.ApplicationConstants; import org.ovirt.engine.ui.webadmin.ApplicationMessages; import org.ovirt.engine.ui.webadmin.ApplicationResources; import org.ovirt.engine.ui.webadmin.idhandler.ElementIdHandler; import org.ovirt.engine.ui.webadmin.idhandler.WithElementId; import org.ovirt.engine.ui.webadmin.section.main.presenter.popup.host.ManualFencePopupPresenterWidget; import org.ovirt.engine.ui.webadmin.section.main.view.popup.AbstractModelBoundPopupView; import org.ovirt.engine.ui.webadmin.widget.Align; import org.ovirt.engine.ui.webadmin.widget.dialog.SimpleDialogPanel; import org.ovirt.engine.ui.webadmin.widget.editor.EntityModelCheckBoxEditor; import com.google.gwt.core.client.GWT; import com.google.gwt.editor.client.SimpleBeanEditorDriver; import com.google.gwt.event.shared.EventBus; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.ui.Label; import com.google.inject.Inject; public class ManualFenceConfirmationPopupView extends AbstractModelBoundPopupView<ConfirmationModel> implements ManualFencePopupPresenterWidget.ViewDef { interface Driver extends SimpleBeanEditorDriver<ConfirmationModel, ManualFenceConfirmationPopupView> { Driver driver = GWT.create(Driver.class); } interface ViewUiBinder extends UiBinder<SimpleDialogPanel, ManualFenceConfirmationPopupView> { ViewUiBinder uiBinder = GWT.create(ViewUiBinder.class); } interface ViewIdHandler extends ElementIdHandler<ManualFenceConfirmationPopupView> { ViewIdHandler idHandler = GWT.create(ViewIdHandler.class); } @UiField(provided = true) @Path(value = "latch.entity") @WithElementId EntityModelCheckBoxEditor latch; @UiField @Ignore Label warningLabel; @UiField @Ignore Label spmWarningLabel; @UiField @Ignore Label messageLabel; private final ApplicationConstants applicationConstants; private final ApplicationMessages applicationMessages; @Inject public ManualFenceConfirmationPopupView(EventBus eventBus, ApplicationResources resources, ApplicationConstants constants, ApplicationMessages applicationMessages) { super(eventBus, resources); this.applicationConstants = constants; this.applicationMessages = applicationMessages; latch = new EntityModelCheckBoxEditor(Align.RIGHT); initWidget(ViewUiBinder.uiBinder.createAndBindUi(this)); ViewIdHandler.idHandler.generateAndSetIds(this); Driver.driver.initialize(this); } @Override public void edit(final ConfirmationModel object) { Driver.driver.edit(object); // Bind "Latch.IsAvailable" object.getLatch().getPropertyChangedEvent().addListener(new IEventListener() { @Override public void eventRaised(Event ev, Object sender, EventArgs args) { if ("IsAvailable".equals(((PropertyChangedEventArgs) args).PropertyName)) { EntityModel entity = (EntityModel) sender; if (entity.getIsAvailable()) { latch.setVisible(true); } } } }); object.getItemsChangedEvent().addListener(new IEventListener() { @Override public void eventRaised(Event ev, Object sender, EventArgs args) { VDS vds = (VDS) object.getItems().iterator().next(); // Message messageLabel.setText(applicationMessages.manaulFencePopupMessageLabel(vds.getvds_name())); // Spm warning VdsSpmStatus spmStatus = vds.getspm_status(); if (spmStatus == VdsSpmStatus.None) { spmWarningLabel.setText(applicationConstants.manaulFencePopupNoneSpmWarningLabel()); } else if (spmStatus == VdsSpmStatus.SPM) { spmWarningLabel.setText(applicationConstants.manaulFencePopupSpmWarningLabel()); } else if (spmStatus == VdsSpmStatus.Contending) { spmWarningLabel.setText(applicationConstants.manaulFencePopupContendingSpmWarningLabel()); } // Warning warningLabel.setText(applicationConstants.manaulFencePopupWarningLabel()); } }); } @Override public ConfirmationModel flush() { return Driver.driver.flush(); } }