Package fr.openwide.maven.artifact.notifier.web.application.artifact.model

Examples of fr.openwide.maven.artifact.notifier.web.application.artifact.model.ArtifactLastVersionModel


  protected void addItemColumns(final Item<Artifact> item, IModel<? extends Artifact> itemModel) {
    item.setOutputMarkupId(true);
   
    Artifact artifact = item.getModelObject();
    final IModel<Artifact> artifactModel = new ArtifactModel(Model.of(item.getModelObject().getArtifactKey()));
    final ArtifactLastVersionModel artifactLastVersionModel = new ArtifactLastVersionModel(artifactModel);
   
    item.add(new ClassAttributeAppender(new LoadableDetachableModel<String>() {
      private static final long serialVersionUID = 1L;
     
      @Override
      protected String load() {
        User user = MavenArtifactNotifierSession.get().getUser();
        boolean isFollowed = user != null && userService.isFollowedArtifact(user, item.getModelObject());
        boolean isDeprecated = artifactModel.getObject() != null &&
            ArtifactDeprecationStatus.DEPRECATED.equals(artifactModel.getObject().getDeprecationStatus());
        return isFollowed ? "success" : (isDeprecated ? "warning" : null);
      }
    }));
   
    // GroupId column
    item.add(new Label("groupId", BindingModel.of(artifactModel, Binding.artifact().group().groupId())));
    item.add(new ExternalLink("groupLink", mavenCentralSearchUrlService.getGroupUrl(artifact.getGroup().getGroupId())));

    // ArtifactId column
    Link<Void> localArtifactLink = ArtifactDescriptionPage.linkDescriptor(artifactModel).link("localArtifactLink");
    localArtifactLink.add(new Label("artifactId", BindingModel.of(artifactModel, Binding.artifact().artifactId())));
    item.add(localArtifactLink);
   
    item.add(new ExternalLink("artifactLink", mavenCentralSearchUrlService.getArtifactUrl(artifact.getGroup().getGroupId(), artifact.getArtifactId())));
   
    // LastVersion, lastUpdateDate columns
    item.add(new Label("synchronizationPlannedPlaceholder", new ResourceModel("artifact.follow.synchronizationPlanned")) {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onConfigure() {
        super.onConfigure();
        setVisible(artifactModel.getObject() != null && !artifactLastVersionModel.isLastVersionAvailable());
      }
    });
   
    WebMarkupContainer localContainer = new WebMarkupContainer("followedArtifact") {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onConfigure() {
        super.onConfigure();
        setVisible(artifactLastVersionModel.isLastVersionAvailable());
      }
    };
    localContainer.add(new ArtifactVersionTagPanel("latestVersion", Model.of(artifactLastVersionModel.getLastVersion())));
    String latestVersion = (artifact.getLatestVersion() != null ? artifact.getLatestVersion().getVersion() : "");
    localContainer.add(new ExternalLink("versionLink", mavenCentralSearchUrlService.getVersionUrl(artifact.getGroup().getGroupId(),
        artifact.getArtifactId(), latestVersion)));
   
    localContainer.add(new DateLabelWithPlaceholder("lastUpdateDate",
        Model.of(artifactLastVersionModel.getLastVersionUpdateDate()), DatePattern.SHORT_DATE));
    item.add(localContainer);

    // Followers count column
    Label followersCount = new CountLabel("followersCount", "artifact.follow.dataView.followers",
        BindingModel.of(artifactModel, Binding.artifact().followersCount()));
View Full Code Here


    item.setOutputMarkupId(true);
   
    ArtifactBean artifactBean = item.getModelObject();

    final ArtifactModel artifactModel = new ArtifactModel(Model.of(item.getModelObject().getArtifactKey()));
    final ArtifactLastVersionModel artifactLastVersionModel = new ArtifactLastVersionModel(artifactModel);
   
    item.add(new ClassAttributeAppender(new LoadableDetachableModel<String>() {
      private static final long serialVersionUID = 1L;
     
      @Override
      protected String load() {
        User user = MavenArtifactNotifierSession.get().getUser();
        boolean isFollowed = user != null && userService.isFollowedArtifactBean(user, item.getModelObject());
        boolean isDeprecated = artifactModel.getObject() != null &&
            ArtifactDeprecationStatus.DEPRECATED.equals(artifactModel.getObject().getDeprecationStatus());
        return isFollowed ? "success" : (isDeprecated ? "warning" : null);
      }
    }));
   
    // GroupId column
    item.add(new Label("groupId", new PropertyModel<ArtifactBean>(item.getModel(), "groupId")));
    item.add(new ExternalLink("groupLink", mavenCentralSearchUrlService.getGroupUrl(artifactBean.getGroupId())));

    // ArtifactId column
    Link<Void> localArtifactLink = ArtifactDescriptionPage.linkDescriptor(artifactModel).link("localArtifactLink");
    // Not done in the onConfigure method because if the model changes the link's PageParameters need to be reconstructed and so does the page.
    localArtifactLink.setEnabled(artifactModel.getObject() != null);
    localArtifactLink.add(new Label("artifactId", new PropertyModel<ArtifactBean>(item.getModel(), "artifactId")));
    item.add(localArtifactLink);
   
    item.add(new ExternalLink("artifactLink", mavenCentralSearchUrlService.getArtifactUrl(artifactBean.getGroupId(), artifactBean.getArtifactId())));
   
    // LastVersion and lastUpdateDate columns
    item.add(new Label("unfollowedArtifactPlaceholder", new ResourceModel("artifact.follow.unfollowedArtifact")) {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onConfigure() {
        super.onConfigure();
        setVisible(artifactModel.getObject() == null);
      }
    });
    item.add(new Label("synchronizationPlannedPlaceholder", new ResourceModel("artifact.follow.synchronizationPlanned")) {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onConfigure() {
        super.onConfigure();
        setVisible(artifactModel.getObject() != null && !artifactLastVersionModel.isLastVersionAvailable());
      }
    });
   
    WebMarkupContainer localContainer = new WebMarkupContainer("followedArtifact") {
      private static final long serialVersionUID = 1L;

      @Override
      protected void onConfigure() {
        super.onConfigure();
        setVisible(artifactLastVersionModel.isLastVersionAvailable());
      }
    };
    localContainer.add(new ArtifactVersionTagPanel("latestVersion", Model.of(artifactLastVersionModel.getLastVersion())));
    localContainer.add(new ExternalLink("versionLink", mavenCentralSearchUrlService.getVersionUrl(artifactBean.getGroupId(),
        artifactBean.getArtifactId(), artifactBean.getLatestVersion())));
    localContainer.add(new DateLabelWithPlaceholder("lastUpdateDate", Model.of(artifactLastVersionModel.getLastVersionUpdateDate()), DatePattern.SHORT_DATE));
    item.add(localContainer);

    // Followers count column
    Label followersCount = new CountLabel("followersCount", "artifact.follow.dataView.followers",
        BindingModel.of(artifactModel, Binding.artifact().followersCount()));
View Full Code Here

TOP

Related Classes of fr.openwide.maven.artifact.notifier.web.application.artifact.model.ArtifactLastVersionModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.