• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

knowledgepixels / nanodash / 24400638397

14 Apr 2026 01:06PM UTC coverage: 15.878% (-0.008%) from 15.886%
24400638397

push

github

tkuhn
feat: add "show view display query" entry to entity dropdown menus

Lets users jump directly to the get-view-displays query (pre-filled with
the entity IRI) from the ID dropdown on user, space, maintained resource
and resource part pages, mirroring the "show query" option available on
individual view displays.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

789 of 6130 branches covered (12.87%)

Branch coverage included in aggregate %.

1978 of 11297 relevant lines covered (17.51%)

2.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
src/main/java/com/knowledgepixels/nanodash/component/menu/UserPageMenu.java
1
package com.knowledgepixels.nanodash.component.menu;
2

3
import com.knowledgepixels.nanodash.QueryApiAccess;
4
import com.knowledgepixels.nanodash.page.ExplorePage;
5
import com.knowledgepixels.nanodash.page.ListPage;
6
import com.knowledgepixels.nanodash.page.QueryPage;
7
import org.apache.wicket.markup.html.link.BookmarkablePageLink;
8
import org.apache.wicket.request.mapper.parameter.PageParameters;
9

10
public class UserPageMenu extends BaseDisplayMenu {
11

12
    public UserPageMenu(String id, String userIri, String displayName) {
13
        super(id);
×
14

15
        addEntry("explore", new BookmarkablePageLink<Void>("explore", ExplorePage.class,
×
16
                new PageParameters().set("id", userIri).set("label", displayName)));
×
17
        addEntry("showchannel", new BookmarkablePageLink<Void>("showchannel", ListPage.class,
×
18
                new PageParameters().add("userid", userIri)));
×
19
        addEntry("showViewDisplayQuery", new BookmarkablePageLink<Void>("showViewDisplayQuery", QueryPage.class,
×
20
                new PageParameters()
21
                        .set("id", QueryApiAccess.GET_VIEW_DISPLAYS)
×
22
                        .add("queryparam_resource", userIri)));
×
23
    }
×
24

25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc