blob: 9e4b81b7304e5a9f26ec7d094770bc68fa94491e [file] [log] [blame]
// Copyright (C) 2012 The Android Open Source Project
//
// 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.google.gerrit.client.admin;
import com.google.gerrit.client.Gerrit;
import com.google.gerrit.client.plugins.PluginInfo;
import com.google.gerrit.client.plugins.PluginMap;
import com.google.gerrit.client.rpc.Natives;
import com.google.gerrit.client.rpc.ScreenLoadCallback;
import com.google.gerrit.client.ui.FancyFlexTable;
import com.google.gwt.user.client.ui.Anchor;
import com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.Panel;
public class PluginListScreen extends PluginScreen {
private Panel pluginPanel;
private PluginTable pluginTable;
@Override
protected void onInitUI() {
super.onInitUI();
initPluginList();
}
@Override
protected void onLoad() {
super.onLoad();
PluginMap.all(new ScreenLoadCallback<PluginMap>(this) {
@Override
protected void preDisplay(final PluginMap result) {
pluginTable.display(result);
}
});
}
private void initPluginList() {
pluginTable = new PluginTable();
pluginTable.addStyleName(Gerrit.RESOURCES.css().pluginsTable());
pluginPanel = new FlowPanel();
pluginPanel.setWidth("500px");
pluginPanel.add(pluginTable);
add(pluginPanel);
}
private class PluginTable extends FancyFlexTable<PluginInfo> {
PluginTable() {
table.setText(0, 1, Util.C.columnPluginName());
table.setText(0, 2, Util.C.columnPluginVersion());
table.setText(0, 3, Util.C.columnPluginStatus());
final FlexCellFormatter fmt = table.getFlexCellFormatter();
fmt.addStyleName(0, 1, Gerrit.RESOURCES.css().dataHeader());
fmt.addStyleName(0, 2, Gerrit.RESOURCES.css().dataHeader());
fmt.addStyleName(0, 3, Gerrit.RESOURCES.css().dataHeader());
}
void display(final PluginMap plugins) {
while (1 < table.getRowCount()) {
table.removeRow(table.getRowCount() - 1);
}
for (final PluginInfo p : Natives.asList(plugins.values())) {
final int row = table.getRowCount();
table.insertRow(row);
applyDataRowStyle(row);
populate(row, p);
}
}
void populate(final int row, final PluginInfo plugin) {
if (plugin.isDisabled()) {
table.setText(row, 1, plugin.name());
} else {
table.setWidget(
row,
1,
new Anchor(plugin.name(), Gerrit.selfRedirect("/plugins/"
+ plugin.name() + "/")));
}
table.setText(row, 2, plugin.version());
table.setText(row, 3, plugin.isDisabled() ? Util.C.pluginDisabled()
: Util.C.pluginEnabled());
final FlexCellFormatter fmt = table.getFlexCellFormatter();
fmt.addStyleName(row, 1, Gerrit.RESOURCES.css().dataCell());
fmt.addStyleName(row, 2, Gerrit.RESOURCES.css().dataCell());
fmt.addStyleName(row, 3, Gerrit.RESOURCES.css().dataCell());
setRowItem(row, plugin);
}
}
}