/* * Copyright 2013 JBoss Inc * * 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.overlord.rtgov.ui.client.local.pages.services; import javax.enterprise.context.Dependent; import javax.inject.Inject; import org.jboss.errai.ui.nav.client.local.TransitionAnchorFactory; import org.overlord.rtgov.ui.client.local.ClientMessages; import org.overlord.rtgov.ui.client.local.pages.ServiceDetailsPage; import org.overlord.rtgov.ui.client.local.widgets.common.SortableTemplatedWidgetTable; import org.overlord.rtgov.ui.client.model.BindingBean; import org.overlord.rtgov.ui.client.model.Constants; import org.overlord.rtgov.ui.client.model.ServiceSummaryBean; import com.google.gwt.user.client.ui.Anchor; import com.google.gwt.user.client.ui.HorizontalPanel; import com.google.gwt.user.client.ui.InlineLabel; import com.google.gwt.user.client.ui.Label; /** * A table of services. * * @author eric.wittmann@redhat.com */ @Dependent public class ServiceTable extends SortableTemplatedWidgetTable { @Inject protected ClientMessages i18n; @Inject protected TransitionAnchorFactory<ServiceDetailsPage> toDetailsPageLinkFactory; /** * Constructor. */ public ServiceTable() { } /** * @see org.overlord.rtgov.ui.client.local.widgets.common.SortableTemplatedWidgetTable#getDefaultSortColumn() */ @Override protected SortColumn getDefaultSortColumn() { SortColumn sortColumn = new SortColumn(); sortColumn.columnId = Constants.SORT_COLID_NAME; sortColumn.ascending = true; return sortColumn; } /** * @see org.overlord.rtgov.ui.client.local.widgets.common.SortableTemplatedWidgetTable#configureColumnSorting() */ @Override protected void configureColumnSorting() { setColumnSortable(0, Constants.SORT_COLID_NAME); sortBy(Constants.SORT_COLID_NAME, true); } /** * Adds a single row to the table. * @param serviceSummaryBean */ public void addRow(final ServiceSummaryBean serviceSummaryBean) { int rowIdx = this.rowElements.size(); Anchor name = toDetailsPageLinkFactory.get("id", serviceSummaryBean.getServiceId()); //$NON-NLS-1$ name.setText(serviceSummaryBean.getName()); InlineLabel application = new InlineLabel(serviceSummaryBean.getApplication()); InlineLabel interf4ce = new InlineLabel(serviceSummaryBean.getIface()); add(rowIdx, 0, name); add(rowIdx, 1, application); add(rowIdx, 2, interf4ce); HorizontalPanel panel=new HorizontalPanel(); for (BindingBean bindingBean : serviceSummaryBean.getBindings()) { Label bindingLabel = new Label(bindingBean.getType()); bindingLabel.setStyleName(!bindingBean.isActive() ? "alert-danger" : "alert-success"); panel.add(bindingLabel); } add(rowIdx, 3, panel); } }