Package: DefaultJobEventExplorerPresentationControl
DefaultJobEventExplorerPresentationControl
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
afterPropertiesSet() |
|
|
|
|
|
||||||||||||||||||||
destroy() |
|
|
|
|
|
||||||||||||||||||||
initialize() |
|
|
|
|
|
||||||||||||||||||||
lambda$onProjectSelectedEvent$0(JobEvent) |
|
|
|
|
|
||||||||||||||||||||
lambda$onProjectSelectedEvent$1(JobEventSpi) |
|
|
|
|
|
||||||||||||||||||||
onProjectSelectedEvent(ProjectSelectedEvent) |
|
|
|
|
|
||||||||||||||||||||
setBeanFactory(BeanFactory) |
|
|
|
|
|
||||||||||||||||||||
static {...} |
|
|
|
|
|
Coverage
1: /*
2: * *************************************************************************************************************************************************************
3: *
4: * blueHour: open source accounting
5: * http://tidalwave.it/projects/bluehour
6: *
7: * Copyright (C) 2013 - 2024 by Tidalwave s.a.s. (http://tidalwave.it)
8: *
9: * *************************************************************************************************************************************************************
10: *
11: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
12: * You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
17: * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
18: *
19: * *************************************************************************************************************************************************************
20: *
21: * git clone https://bitbucket.org/tidalwave/bluehour-src
22: * git clone https://github.com/tidalwave-it/bluehour-src
23: *
24: * *************************************************************************************************************************************************************
25: */
26: package it.tidalwave.accounting.ui.jobeventexplorer.impl;
27:
28: import javax.annotation.Nonnull;
29: import it.tidalwave.accounting.commons.ProjectSelectedEvent;
30: import it.tidalwave.accounting.model.Project;
31: import it.tidalwave.accounting.model.spi.JobEventSpi;
32: import it.tidalwave.accounting.ui.jobeventexplorer.JobEventExplorerPresentation;
33: import it.tidalwave.accounting.ui.jobeventexplorer.JobEventExplorerPresentationControl;
34: import it.tidalwave.util.annotation.VisibleForTesting;
35: import it.tidalwave.role.ui.Visible;
36: import it.tidalwave.dci.annotation.DciContext;
37: import it.tidalwave.messagebus.MessageBus;
38: import it.tidalwave.messagebus.annotation.ListensTo;
39: import it.tidalwave.messagebus.annotation.SimpleMessageSubscriber;
40: import lombok.RequiredArgsConstructor;
41: import lombok.extern.slf4j.Slf4j;
42: import static java.util.Comparator.*;
43: import static it.tidalwave.util.Parameters.r;
44: import static it.tidalwave.role.ui.Presentable._Presentable_;
45: import static it.tidalwave.role.ui.spi.PresentationModelCollectors.toCompositePresentationModel;
46:
47: /***************************************************************************************************************************************************************
48: *
49: * @author Fabrizio Giudici
50: *
51: **************************************************************************************************************************************************************/
52: @RequiredArgsConstructor @DciContext @SimpleMessageSubscriber @Slf4j
53: public class DefaultJobEventExplorerPresentationControl implements JobEventExplorerPresentationControl
54: {
55: @Nonnull
56: private final MessageBus messageBus;
57:
58: @Nonnull
59: private final JobEventExplorerPresentation presentation;
60:
61: /***********************************************************************************************************************************************************
62: *
63: **********************************************************************************************************************************************************/
64: @Override
65: public void initialize()
66: {
67: log.info("initialize()");
68: }
69:
70: /***********************************************************************************************************************************************************
71: * Reacts to the notification that a {@link Project} has been selected by populating the presentation with
72: * its job events.
73: *
74: * @param event the notification event
75: **********************************************************************************************************************************************************/
76: @VisibleForTesting void onProjectSelectedEvent (@Nonnull @ListensTo final ProjectSelectedEvent event)
77: {
78: log.info("onProjectSelectedEvent({})", event);
79: presentation.populate(event.getProject().findChildren()
80: .stream()
81: .map(jobEvent -> (JobEventSpi)jobEvent)
82: .sorted(comparing(JobEventSpi::getDateTime))
83: .map(jobEvent -> jobEvent.as(_Presentable_).createPresentationModel())
84: .collect(toCompositePresentationModel(r(Visible.INVISIBLE))));
85: }
86: }