Skip to content

Method: askForOpeningSite()

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 withCallback 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.siteopener.spi;
28:
29: import javax.annotation.Nonnull;
30: import java.nio.file.Path;
31: import java.nio.file.Paths;
32: import it.tidalwave.role.ui.BoundProperty;
33: import it.tidalwave.role.ui.UserAction;
34: import it.tidalwave.messagebus.MessageBus;
35: import it.tidalwave.northernwind.rca.ui.event.OpenSiteEvent;
36: import it.tidalwave.northernwind.rca.ui.siteopener.SiteOpenerPresentation;
37: import it.tidalwave.northernwind.rca.ui.siteopener.SiteOpenerPresentation.Bindings;
38: import it.tidalwave.northernwind.rca.ui.siteopener.SiteOpenerPresentationControl;
39: import it.tidalwave.util.annotation.VisibleForTesting;
40: import lombok.RequiredArgsConstructor;
41: import lombok.extern.slf4j.Slf4j;
42: import static it.tidalwave.util.ui.UserNotificationWithFeedback.*;
43:
44: /***********************************************************************************************************************
45: *
46: * @stereotype Control
47: *
48: * @author Fabrizio Giudici
49: *
50: **********************************************************************************************************************/
51: @RequiredArgsConstructor @Slf4j
52: public class DefaultSiteOpenerPresentationControl implements SiteOpenerPresentationControl
53: {
54: @Nonnull
55: private final MessageBus messageBus;
56:
57: @Nonnull
58: private final SiteOpenerPresentation presentation;
59:
60: @VisibleForTesting final Bindings bindings = Bindings.builder()
61: .folderToOpen(new BoundProperty<>(getHomeFolder()))
62: .openSiteAction(UserAction.of(this::askForOpeningSite))
63: .build();
64:
65: @Override
66: public void initialize()
67: {
68: presentation.bind(bindings);
69: }
70:
71: private void askForOpeningSite()
72: {
73: presentation.notifyInvitationToSelectAFolder(notificationWithFeedback()
74: .withCaption("Select the site to open")
75: .withFeedback(feedback()
76: .withOnConfirm(() -> messageBus.publish(OpenSiteEvent.of(bindings.folderToOpen.get())))));
77: }
78:
79: @Nonnull
80: private static Path getHomeFolder()
81: {
82: return Paths.get(System.getProperty("user.home"));
83: }
84: }