Search in sources :

Example 1 with ApplicationInformation

use of org.phoenicis.javafx.components.application.panelstates.ApplicationInformation in project POL-POM-5 by PlayOnLinux.

the class ApplicationsFeaturePanelSkin method createContent.

/**
 * {@inheritDoc}
 */
@Override
public ObjectExpression<Node> createContent() {
    /*
         * initialising the application lists by:
         * 1. sorting the applications by their name
         * 2. filtering them
         */
    final FilteredList<ApplicationDTO> filteredApplications = ConcatenatedList.create(new MappedList<>(getControl().getCategories().filtered(category -> category.getType() == CategoryDTO.CategoryType.INSTALLERS), CategoryDTO::getApplications)).sorted(Comparator.comparing(ApplicationDTO::getName)).filtered(getControl()::filterApplication);
    filteredApplications.predicateProperty().bind(Bindings.createObjectBinding(() -> getControl()::filterApplication, getControl().searchTermProperty(), getControl().fuzzySearchRatioProperty(), getControl().operatingSystemProperty(), getControl().filterCategoryProperty(), getControl().containAllOSCompatibleApplicationsProperty(), getControl().containCommercialApplicationsProperty(), getControl().containRequiresPatchApplicationsProperty(), getControl().containTestingApplicationsProperty()));
    final ObservableList<ListWidgetElement<ApplicationDTO>> listWidgetEntries = new MappedList<>(filteredApplications, ListWidgetElement::create);
    final CombinedListWidget<ApplicationDTO> combinedListWidget = new CombinedListWidget<>(listWidgetEntries, this.selectedListWidget);
    // bind direction: controller property -> skin property
    getControl().selectedApplicationProperty().addListener((observable, oldValue, newValue) -> {
        if (newValue != null) {
            combinedListWidget.select(newValue);
        } else {
            combinedListWidget.deselect();
        }
    });
    // bind direction: skin property -> controller properties
    combinedListWidget.selectedElementProperty().addListener((observable, oldValue, newValue) -> {
        if (newValue != null) {
            final ApplicationDTO selectedItem = newValue.getItem();
            getControl().setSelectedApplication(selectedItem);
            getControl().setOpenedDetailsPanel(new ApplicationInformation(selectedItem));
        } else {
            getControl().setSelectedApplication(null);
            getControl().setOpenedDetailsPanel(new None());
        }
    });
    return new SimpleObjectProperty<>(combinedListWidget);
}
Also used : MappedList(org.phoenicis.javafx.collections.MappedList) ApplicationDTO(org.phoenicis.repository.dto.ApplicationDTO) SimpleObjectProperty(javafx.beans.property.SimpleObjectProperty) CombinedListWidget(org.phoenicis.javafx.components.common.widgets.control.CombinedListWidget) ListWidgetElement(org.phoenicis.javafx.components.common.widgets.utils.ListWidgetElement) None(org.phoenicis.javafx.components.common.panelstates.None) ApplicationInformation(org.phoenicis.javafx.components.application.panelstates.ApplicationInformation)

Aggregations

SimpleObjectProperty (javafx.beans.property.SimpleObjectProperty)1 MappedList (org.phoenicis.javafx.collections.MappedList)1 ApplicationInformation (org.phoenicis.javafx.components.application.panelstates.ApplicationInformation)1 None (org.phoenicis.javafx.components.common.panelstates.None)1 CombinedListWidget (org.phoenicis.javafx.components.common.widgets.control.CombinedListWidget)1 ListWidgetElement (org.phoenicis.javafx.components.common.widgets.utils.ListWidgetElement)1 ApplicationDTO (org.phoenicis.repository.dto.ApplicationDTO)1