package org.ovirt.engine.ui.webadmin.section.main.presenter.tab.host; import org.ovirt.engine.core.common.businessentities.VDS; import org.ovirt.engine.ui.common.presenter.AbstractSubTabPresenter; import org.ovirt.engine.ui.common.uicommon.model.SearchableDetailModelProvider; import org.ovirt.engine.ui.common.widget.refresh.ManualRefreshEvent; import org.ovirt.engine.ui.common.widget.tab.ModelBoundTabData; import org.ovirt.engine.ui.uicommonweb.models.hosts.HostInterfaceLineModel; import org.ovirt.engine.ui.uicommonweb.models.hosts.HostInterfaceListModel; import org.ovirt.engine.ui.uicommonweb.models.hosts.HostListModel; import org.ovirt.engine.ui.uicommonweb.place.WebAdminApplicationPlaces; import org.ovirt.engine.ui.webadmin.ApplicationConstants; import org.ovirt.engine.ui.webadmin.gin.AssetProvider; import com.google.gwt.event.shared.EventBus; import com.google.inject.Inject; import com.gwtplatform.mvp.client.TabData; import com.gwtplatform.mvp.client.annotations.NameToken; import com.gwtplatform.mvp.client.annotations.ProxyCodeSplit; import com.gwtplatform.mvp.client.annotations.TabInfo; import com.gwtplatform.mvp.client.proxy.PlaceManager; import com.gwtplatform.mvp.client.proxy.TabContentProxyPlace; public class SubTabHostInterfacePresenter extends AbstractSubTabHostPresenter<HostInterfaceListModel, SubTabHostInterfacePresenter.ViewDef, SubTabHostInterfacePresenter.ProxyDef> { private static final ApplicationConstants constants = AssetProvider.getConstants(); @ProxyCodeSplit @NameToken(WebAdminApplicationPlaces.hostInterfaceSubTabPlace) public interface ProxyDef extends TabContentProxyPlace<SubTabHostInterfacePresenter> { } public interface ViewDef extends AbstractSubTabPresenter.ViewDef<VDS> { void removeContent(); void setParentOverflow(); } @TabInfo(container = HostSubTabPanelPresenter.class) static TabData getTabData( SearchableDetailModelProvider<HostInterfaceLineModel, HostListModel<Void>, HostInterfaceListModel> modelProvider) { return new ModelBoundTabData(constants.hostIfaceSubTabLabel(), 2, modelProvider); } @Inject public SubTabHostInterfacePresenter(EventBus eventBus, ViewDef view, ProxyDef proxy, PlaceManager placeManager, HostMainTabSelectedItems selectedItems, SearchableDetailModelProvider<HostInterfaceLineModel, HostListModel<Void>, HostInterfaceListModel> modelProvider) { super(eventBus, view, proxy, placeManager, modelProvider, selectedItems, HostSubTabPanelPresenter.TYPE_SetTabContent); } @Override protected void onBind() { super.onBind(); registerHandler(getEventBus().addHandler(ManualRefreshEvent.getType(), event -> { if (SubTabHostInterfacePresenter.this.isVisible() && SubTabHostInterfacePresenter.this.getModelProvider().getModel().equals(event.getSource())) { getView().removeContent(); } })); } @Override protected void onReveal() { super.onReveal(); getView().setParentOverflow(); } }