org.jboss.errai.ui.nav.client.local.api.NavigationControl.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.errai.ui.nav.client.local.api.NavigationControl.java

Source

/*
 * Copyright (C) 2015 Red Hat, Inc. and/or its affiliates.
 *
 * 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.jboss.errai.ui.nav.client.local.api;

import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Multimap;
import org.jboss.errai.ui.nav.client.local.Navigation;
import org.jboss.errai.ui.nav.client.local.PageHiding;

/**
 * Instances of this class are passed to {@link PageHiding} methods. If the parameter is present,
 * the page navigation will not be carried out until {@link NavigationControl#proceed()} is invoked.
 * This is useful for interrupting page navigations and then resuming at a later time (for example,
 * to prompt the user to save their work before transitioning to a new page).
 * 
 */
public class NavigationControl {

    private final Navigation navigation;
    private final Runnable runnable;
    private Runnable interrupt;

    private boolean hasRun;

    public NavigationControl(final Navigation navigation, final Runnable runnable) {
        this.runnable = runnable;
        this.navigation = navigation;
    }

    public NavigationControl(final Navigation navigation, final Runnable runnable, Runnable interrupt) {
        this(navigation, runnable);
        this.interrupt = interrupt;
    }

    /**
     * Causes page navigation to proceed.
     */
    public void proceed() {
        if (!hasRun) {
            runnable.run();
            hasRun = true;
        } else {
            throw new IllegalStateException("proceed() method can only be called once.");
        }
    }

    /**
     * Redirect to a given page safely.
     *
     * @param toPage Page class annotated with {@link org.jboss.errai.ui.nav.client.local.Page}.
     */
    public <C> void redirect(final Class<C> toPage) {
        redirect(toPage, ImmutableMultimap.of());
    }

    /**
     * Redirect to a given page safely.
     *
     * @param toPage page class annotated with {@link org.jboss.errai.ui.nav.client.local.Page}.
     * @param state Pages state map.
     */
    public <C> void redirect(final Class<C> toPage, final Multimap<String, String> state) {
        if (!hasRun) {
            if (interrupt != null) {
                interrupt.run();
            }
            navigation.goTo(toPage, state);
        } else {
            throw new IllegalStateException("redirect() method can only be called once.");
        }
    }

    public boolean hasRun() {
        return hasRun;
    }
}