org.dashbuilder.client.cms.widget.PerspectivesExplorer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashbuilder-cms-client Show documentation
Show all versions of dashbuilder-cms-client Show documentation
Dashbuilder Content Manager System Client
/*
* Copyright 2016 JBoss, by Red Hat, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dashbuilder.client.cms.widget;
import java.util.List;
import java.util.stream.Collectors;
import javax.enterprise.context.Dependent;
import javax.enterprise.event.Observes;
import javax.inject.Inject;
import org.dashbuilder.navigation.event.PerspectivePluginsChangedEvent;
import org.dashbuilder.client.cms.resources.i18n.ContentManagerI18n;
import org.dashbuilder.client.navigation.plugin.PerspectivePluginManager;
import org.jboss.errai.common.client.api.IsElement;
import org.jboss.errai.common.client.dom.HTMLElement;
import org.uberfire.client.mvp.PlaceManager;
import org.uberfire.client.mvp.UberElement;
import org.uberfire.ext.plugin.client.security.PluginController;
import org.uberfire.ext.plugin.model.Plugin;
import org.uberfire.mvp.Command;
import org.uberfire.mvp.PlaceRequest;
import org.uberfire.mvp.impl.PathPlaceRequest;
@Dependent
public class PerspectivesExplorer implements IsElement {
public interface View extends UberElement {
void clear();
void addPerspective(String name, Command onClicked);
void showEmpty(String message);
}
View view;
PerspectivePluginManager perspectivePluginManager;
PlaceManager placeManager;
PluginController pluginController;
ContentManagerI18n i18n;
@Inject
public PerspectivesExplorer(View view,
PerspectivePluginManager perspectivePluginManager,
PluginController pluginController,
PlaceManager placeManager,
ContentManagerI18n i18n) {
this.view = view;
this.perspectivePluginManager = perspectivePluginManager;
this.pluginController = pluginController;
this.placeManager = placeManager;
this.i18n = i18n;
this.view.init(this);
}
@Override
public HTMLElement getElement() {
return view.getElement();
}
public void show() {
view.clear();
perspectivePluginManager.getPerspectivePlugins(perspectivePlugins -> {
List filteredPlugins = perspectivePlugins.stream()
.filter(pluginController::canRead)
.sorted((p1, p2) -> p1.getName().compareToIgnoreCase(p2.getName()))
.collect(Collectors.toList());
if (filteredPlugins.isEmpty()) {
view.showEmpty(i18n.getNoPerspectives());
} else {
filteredPlugins.forEach(p -> view.addPerspective(p.getName(), () -> onPerspectiveClick(p)));
}
});
}
public void onPerspectiveClick(Plugin plugin) {
PlaceRequest placeRequest = new PathPlaceRequest(plugin.getPath()).addParameter("name", plugin.getName());
placeManager.goTo(placeRequest);
}
public void onPerspectivePluginsChanged(@Observes final PerspectivePluginsChangedEvent event) {
show();
}
}