Skip to content

Package: DefaultStructureEditorPresentationControl

DefaultStructureEditorPresentationControl

nameinstructionbranchcomplexitylinemethod
DefaultStructureEditorPresentationControl(StructureEditorPresentation)
M: 5 C: 11
69%
M: 1 C: 1
50%
M: 1 C: 1
50%
M: 0 C: 1
100%
M: 0 C: 1
100%
afterPropertiesSet()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
destroy()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
onSiteNodeSelected(SiteNodeSelectedEvent)
M: 0 C: 42
100%
M: 0 C: 2
100%
M: 0 C: 2
100%
M: 0 C: 10
100%
M: 0 C: 1
100%
static {...}
M: 0 C: 4
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: /*
2: * #%L
3: * *********************************************************************************************************************
4: *
5: * NorthernWind - lightweight CMS
6: * http://northernwind.tidalwave.it - git clone git@bitbucket.org:tidalwave/northernwind-rca-src.git
7: * %%
8: * Copyright (C) 2013 - 2021 Tidalwave s.a.s. (http://tidalwave.it)
9: * %%
10: * *********************************************************************************************************************
11: *
12: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
13: * the License. You may obtain a copy of the License at
14: *
15: * http://www.apache.org/licenses/LICENSE-2.0
16: *
17: * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
18: * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
19: * specific language governing permissions and limitations under the License.
20: *
21: * *********************************************************************************************************************
22: *
23: *
24: * *********************************************************************************************************************
25: * #L%
26: */
27: package it.tidalwave.northernwind.rca.ui.structureeditor.spi;
28:
29: import javax.annotation.Nonnull;
30: import it.tidalwave.messagebus.annotation.ListensTo;
31: import it.tidalwave.messagebus.annotation.SimpleMessageSubscriber;
32: import it.tidalwave.northernwind.core.model.ResourceProperties;
33: import it.tidalwave.northernwind.core.model.SiteNode;
34: import it.tidalwave.northernwind.rca.ui.event.SiteNodeSelectedEvent;
35: import it.tidalwave.northernwind.rca.ui.structureeditor.StructureEditorPresentation;
36: import it.tidalwave.northernwind.rca.ui.structureeditor.StructureEditorPresentationControl;
37: import it.tidalwave.util.annotation.VisibleForTesting;
38: import lombok.RequiredArgsConstructor;
39: import lombok.extern.slf4j.Slf4j;
40: import static it.tidalwave.role.ui.Presentable._Presentable_;
41:
42: /***********************************************************************************************************************
43: *
44: * @author Fabrizio Giudici
45: *
46: **********************************************************************************************************************/
47:•@SimpleMessageSubscriber @RequiredArgsConstructor @Slf4j
48: public class DefaultStructureEditorPresentationControl implements StructureEditorPresentationControl
49: {
50: @Nonnull
51: private final StructureEditorPresentation presentation;
52:
53: @VisibleForTesting void onSiteNodeSelected (@ListensTo @Nonnull final SiteNodeSelectedEvent selectionEvent)
54: {
55: log.debug("onSiteNodeSelected({})", selectionEvent);
56:
57:• if (selectionEvent.getSiteNode().isEmpty())
58: {
59: presentation.clear();
60: }
61: else
62: {
63: final SiteNode siteNode = selectionEvent.getSiteNode().get();
64: final ResourceProperties properties = siteNode.getProperties();
65: log.debug(">>>> properties: {}", properties);
66: presentation.populate("Viewer not implemented for " + siteNode.getFile());
67: presentation.populateProperties(properties.as(_Presentable_).createPresentationModel());
68: // presentation.populateProperties(PresentationModel.ofMaybePresentable(properties));
69: presentation.showUp();
70: }
71: }
72: }