Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6cb04a126a5f7bf12f93231ad2328056acbf26cc (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2011 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.display.view.web.components;

import org.eclipse.osee.display.api.data.ViewArtifact;
import org.eclipse.osee.display.api.search.SearchNavigator;
import org.eclipse.osee.display.api.search.SearchPresenter;
import org.eclipse.osee.display.view.web.CssConstants;
import com.vaadin.event.LayoutEvents.LayoutClickEvent;
import com.vaadin.event.LayoutEvents.LayoutClickListener;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Link;

/**
 * @author Shawn F. Cook
 */
@SuppressWarnings("serial")
public class OseeArtifactNameLinkComponent extends HorizontalLayout {

   private boolean isLayoutComplete = false;
   private ViewArtifact artifact = null;
   private final Link artifactNameLink = new Link();

   public OseeArtifactNameLinkComponent(ViewArtifact artifact) {
      this(artifact, CssConstants.OSEE_SEARCHRESULT_ARTNAME);
   }

   public OseeArtifactNameLinkComponent(final ViewArtifact artifact, String styleName) {
      this.artifact = artifact;
      artifactNameLink.setStyleName(styleName);

      addListener(new LayoutClickListener() {
         @Override
         public void layoutClick(LayoutClickEvent event) {
            String url = ComponentUtility.getUrl(OseeArtifactNameLinkComponent.this);
            SearchNavigator navigator = ComponentUtility.getNavigator(OseeArtifactNameLinkComponent.this);
            SearchPresenter presenter = ComponentUtility.getPresenter(OseeArtifactNameLinkComponent.this);
            presenter.selectArtifact(url, OseeArtifactNameLinkComponent.this.artifact, navigator);
         }
      });
   }

   public OseeArtifactNameLinkComponent() {
      this(null, CssConstants.OSEE_SEARCHRESULT_ARTNAME);
   }

   @Override
   public void attach() {
      if (!isLayoutComplete) {
         createLayout();
         isLayoutComplete = true;
      }
   }

   private void createLayout() {
      if (artifact != null) {
         artifactNameLink.setCaption(artifact.getArtifactName());
      }

      addComponent(artifactNameLink);
   }

   private void updateLayout() {
      if (artifact != null) {
         artifactNameLink.setCaption(artifact.getArtifactName());
      }
   }

   public ViewArtifact getArtifact() {
      return artifact;
   }

   private int debugindex = 0;

   public void setArtifact(ViewArtifact artifact) {
      this.artifact = artifact;
      artifactNameLink.setDebugId(String.format("OseeArtifactNameLinkComponent.%s.%d", artifact.getGuid(), debugindex));
      updateLayout();
   }

}

Back to the top