summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/google/gerrit/client/admin/ProjectAdminScreen.java
blob: 9a02778733aca5b9147acb7b069dd1c3fd00d68d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright (C) 2008 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.Link;
import com.google.gerrit.client.reviewdb.Project;
import com.google.gerrit.client.rpc.ScreenLoadCallback;
import com.google.gerrit.client.ui.AccountScreen;
import com.google.gwt.event.logical.shared.SelectionEvent;
import com.google.gwt.event.logical.shared.SelectionHandler;
import com.google.gwt.user.client.ui.LazyPanel;
import com.google.gwt.user.client.ui.TabPanel;

import java.util.ArrayList;
import java.util.List;

public class ProjectAdminScreen extends AccountScreen {
  static final String INFO_TAB = "info";
  static final String BRANCH_TAB = "branches";
  static final String ACCESS_TAB = "access";

  private final Project.NameKey projectName;
  private final String initialTabToken;

  private List<String> tabTokens;
  private TabPanel tabs;

  public ProjectAdminScreen(final Project.NameKey toShow, final String token) {
    projectName = toShow;
    initialTabToken = token;
  }

  @Override
  protected void onLoad() {
    super.onLoad();
    Util.PROJECT_SVC.projectDetail(projectName,
        new ScreenLoadCallback<ProjectDetail>(this) {
          @Override
          protected void preDisplay(final ProjectDetail result) {
            display(result);
            tabs.selectTab(tabTokens.indexOf(initialTabToken));
          }
        });
  }

  @Override
  protected void onInitUI() {
    super.onInitUI();
    tabTokens = new ArrayList<String>();
    tabs = new TabPanel();
    tabs.setWidth("98%");
    add(tabs);

    tabs.add(new LazyPanel() {
      @Override
      protected ProjectInfoPanel createWidget() {
        return new ProjectInfoPanel(projectName);
      }
    }, Util.C.projectAdminTabGeneral());
    tabTokens.add(Link.toProjectAdmin(projectName, INFO_TAB));

    if (!Gerrit.getConfig().getWildProject().equals(projectName)) {
      tabs.add(new LazyPanel() {
        @Override
        protected ProjectBranchesPanel createWidget() {
          return new ProjectBranchesPanel(projectName);
        }
      }, Util.C.projectAdminTabBranches());
      tabTokens.add(Link.toProjectAdmin(projectName, BRANCH_TAB));
    }

    tabs.add(new LazyPanel() {
      @Override
      protected ProjectRightsPanel createWidget() {
        return new ProjectRightsPanel(projectName);
      }
    }, Util.C.projectAdminTabAccess());
    tabTokens.add(Link.toProjectAdmin(projectName, ACCESS_TAB));

    tabs.addSelectionHandler(new SelectionHandler<Integer>() {
      @Override
      public void onSelection(final SelectionEvent<Integer> event) {
        Gerrit.display(tabTokens.get(event.getSelectedItem()), false);
      }
    });
  }


  private void display(final ProjectDetail result) {
    final Project project = result.project;
    setPageTitle(Util.M.project(project.getName()));
  }
}