Search in sources :

Example 1 with AppLayoutBuilder

use of com.github.appreciated.app.layout.component.builder.AppLayoutBuilder in project vaadin-app-layout by appreciated.

the class SearchView method furtherConfiguration.

@Override
public void furtherConfiguration(AppLayoutBuilder builder) {
    ListDataProvider<TestSearchResult> dataProvider = new ListDataProvider<>(Arrays.asList(new TestSearchResult("Header1", "Description1"), new TestSearchResult("Header2", "Description2"), new TestSearchResult("Header3", "Description3"), new TestSearchResult("Header4", "Description4"), new TestSearchResult("Header5", "Description5"), new TestSearchResult("Header6", "Description6"), new TestSearchResult("Header7", "Description7"), new TestSearchResult("Header8", "Description8"), new TestSearchResult("Header9", "Description9"), new TestSearchResult("Header10", "Description10")));
    SearchOverlayButton<TestSearchResult, SerializablePredicate<TestSearchResult>> button = new SearchOverlayButtonBuilder<TestSearchResult, SerializablePredicate<TestSearchResult>>().withDataProvider(dataProvider).withQueryProvider(s -> new Query<TestSearchResult, SerializablePredicate<TestSearchResult>>(testEntity -> !s.equals("") && testEntity.getHeader().startsWith(s))).withDataViewProvider(result -> {
        RippleClickableCard card = new RippleClickableCard(new Item(result.getHeader(), result.getDescription()));
        card.setWidthFull();
        card.setBackground("var(--lumo-base-color)");
        return card;
    }).withQueryResultListener(testSearchResult -> Notification.show(testSearchResult.header + " clicked")).build();
    button.setId("it-test-search-button");
    button.getSearchView().getSearchField().setId("it-test-search-field");
    button.getSearchView().getCloseButton().setId("it-test-search-close");
    builder.withAppBar(button);
}
Also used : ListDataProvider(com.vaadin.flow.data.provider.ListDataProvider) SearchOverlayButtonBuilder(com.github.appreciated.app.layout.addons.search.overlay.SearchOverlayButtonBuilder) LeftLayouts(com.github.appreciated.app.layout.component.applayout.LeftLayouts) Arrays(java.util.Arrays) SearchOverlayButton(com.github.appreciated.app.layout.addons.search.overlay.SearchOverlayButton) Query(com.vaadin.flow.data.provider.Query) AppLayoutBuilder(com.github.appreciated.app.layout.component.builder.AppLayoutBuilder) Component(com.vaadin.flow.component.Component) com.github.appreciated.app.layout.test.addon.search.view(com.github.appreciated.app.layout.test.addon.search.view) RoutePrefix(com.vaadin.flow.router.RoutePrefix) RippleClickableCard(com.github.appreciated.card.RippleClickableCard) AppLayout(com.github.appreciated.app.layout.component.applayout.AppLayout) AbstractLeftBehaviorBasicView(com.github.appreciated.app.layout.test.base.AbstractLeftBehaviorBasicView) Item(com.github.appreciated.card.content.Item) SerializablePredicate(com.vaadin.flow.function.SerializablePredicate) Notification(com.vaadin.flow.component.notification.Notification) ListDataProvider(com.vaadin.flow.data.provider.ListDataProvider) Item(com.github.appreciated.card.content.Item) Query(com.vaadin.flow.data.provider.Query) RippleClickableCard(com.github.appreciated.card.RippleClickableCard) SerializablePredicate(com.vaadin.flow.function.SerializablePredicate)

Example 2 with AppLayoutBuilder

use of com.github.appreciated.app.layout.component.builder.AppLayoutBuilder in project vaadin-app-layout by appreciated.

the class ProfileView method furtherConfiguration.

@Override
public void furtherConfiguration(AppLayoutBuilder builder) {
    ProfileButton button = AppBarProfileButtonBuilder.get().withItem("Profile Entry 1", event -> Notification.show("Profile Entry 1 clicked")).withItem("Profile Entry 2", event -> Notification.show("Profile Entry 2 clicked")).withItem("Profile Entry 3", event -> Notification.show("Profile Entry 3 clicked")).build();
    button.getWrappedComponent().setId("it-test-profile-button");
    builder.withAppBar(button);
}
Also used : LeftLayouts(com.github.appreciated.app.layout.component.applayout.LeftLayouts) AppLayoutBuilder(com.github.appreciated.app.layout.component.builder.AppLayoutBuilder) Component(com.vaadin.flow.component.Component) AppLayout(com.github.appreciated.app.layout.component.applayout.AppLayout) AbstractLeftBehaviorBasicView(com.github.appreciated.app.layout.test.base.AbstractLeftBehaviorBasicView) RoutePrefix(com.vaadin.flow.router.RoutePrefix) AppBarProfileButtonBuilder(com.github.appreciated.app.layout.addons.profile.builder.AppBarProfileButtonBuilder) com.github.appreciated.app.layout.test.addon.profile.view(com.github.appreciated.app.layout.test.addon.profile.view) Notification(com.vaadin.flow.component.notification.Notification) ProfileButton(com.github.appreciated.app.layout.addons.profile.ProfileButton) ProfileButton(com.github.appreciated.app.layout.addons.profile.ProfileButton)

Aggregations

AppLayout (com.github.appreciated.app.layout.component.applayout.AppLayout)2 LeftLayouts (com.github.appreciated.app.layout.component.applayout.LeftLayouts)2 AppLayoutBuilder (com.github.appreciated.app.layout.component.builder.AppLayoutBuilder)2 AbstractLeftBehaviorBasicView (com.github.appreciated.app.layout.test.base.AbstractLeftBehaviorBasicView)2 Component (com.vaadin.flow.component.Component)2 Notification (com.vaadin.flow.component.notification.Notification)2 RoutePrefix (com.vaadin.flow.router.RoutePrefix)2 ProfileButton (com.github.appreciated.app.layout.addons.profile.ProfileButton)1 AppBarProfileButtonBuilder (com.github.appreciated.app.layout.addons.profile.builder.AppBarProfileButtonBuilder)1 SearchOverlayButton (com.github.appreciated.app.layout.addons.search.overlay.SearchOverlayButton)1 SearchOverlayButtonBuilder (com.github.appreciated.app.layout.addons.search.overlay.SearchOverlayButtonBuilder)1 com.github.appreciated.app.layout.test.addon.profile.view (com.github.appreciated.app.layout.test.addon.profile.view)1 com.github.appreciated.app.layout.test.addon.search.view (com.github.appreciated.app.layout.test.addon.search.view)1 RippleClickableCard (com.github.appreciated.card.RippleClickableCard)1 Item (com.github.appreciated.card.content.Item)1 ListDataProvider (com.vaadin.flow.data.provider.ListDataProvider)1 Query (com.vaadin.flow.data.provider.Query)1 SerializablePredicate (com.vaadin.flow.function.SerializablePredicate)1 Arrays (java.util.Arrays)1