com.vaadin.client.debug.internal.ConnectorInfoPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2000-2016 Vaadin Ltd.
*
* 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 com.vaadin.client.debug.internal;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.HTML;
import com.vaadin.client.ComponentConnector;
import com.vaadin.client.JsArrayObject;
import com.vaadin.client.ServerConnector;
import com.vaadin.client.WidgetUtil;
import com.vaadin.client.metadata.NoDataException;
import com.vaadin.client.metadata.Property;
import com.vaadin.client.ui.AbstractConnector;
import com.vaadin.shared.AbstractComponentState;
import com.vaadin.shared.communication.SharedState;
/**
* Connector information view panel of the debug window.
*
* @since 7.1.4
*/
public class ConnectorInfoPanel extends FlowPanel {
/**
* Update the panel to show information about a connector.
*
* @param connector
*/
public void update(ServerConnector connector) {
SharedState state = connector.getState();
Set ignoreProperties = new HashSet<>();
ignoreProperties.add("id");
String html = getRowHTML("Id", connector.getConnectorId());
html += getRowHTML("Connector", connector.getClass().getSimpleName());
if (connector instanceof ComponentConnector) {
ComponentConnector component = (ComponentConnector) connector;
ignoreProperties.addAll(
Arrays.asList("caption", "description", "width", "height"));
AbstractComponentState componentState = component.getState();
html += getRowHTML("Widget",
component.getWidget().getClass().getSimpleName());
html += getRowHTML("Caption", componentState.caption);
html += getRowHTML("Description", componentState.description);
html += getRowHTML("Width", componentState.width + " (actual: "
+ component.getWidget().getOffsetWidth() + "px)");
html += getRowHTML("Height", componentState.height + " (actual: "
+ component.getWidget().getOffsetHeight() + "px)");
}
try {
JsArrayObject properties = AbstractConnector
.getStateType(connector).getPropertiesAsArray();
for (int i = 0; i < properties.size(); i++) {
Property property = properties.get(i);
String name = property.getName();
if (!ignoreProperties.contains(name)) {
html += getRowHTML(property.getDisplayName(),
property.getValue(state));
}
}
} catch (NoDataException e) {
html += "Could not read state, error has been logged to the console";
getLogger().log(Level.SEVERE, "Could not read state", e);
}
clear();
add(new HTML(html));
}
private String getRowHTML(String caption, Object value) {
return ""
+ WidgetUtil.escapeHTML(String.valueOf(value))
+ "";
}
/**
* Clear the contents of the panel.
*/
public void clearContents() {
clear();
}
private static Logger getLogger() {
return Logger.getLogger(ConnectorInfoPanel.class.getName());
}
}