All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.modeshape.web.client.Header Maven / Gradle / Ivy

Go to download

ModeShape repository explorer that does not contain ModeShape libraries

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 *
 * 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.modeshape.web.client;

import com.google.gwt.user.client.Window;
import com.smartgwt.client.types.VerticalAlignment;
import com.smartgwt.client.widgets.Img;
import com.smartgwt.client.widgets.Label;
import com.smartgwt.client.widgets.events.ClickEvent;
import com.smartgwt.client.widgets.events.ClickHandler;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.TextItem;
import com.smartgwt.client.widgets.layout.HLayout;
import com.smartgwt.client.widgets.layout.VLayout;
import com.smartgwt.client.widgets.toolbar.ToolStrip;
import com.smartgwt.client.widgets.toolbar.ToolStripButton;
import java.util.Collection;
import org.modeshape.web.shared.BaseCallback;
import org.modeshape.web.shared.RepositoryName;

/**
 *
 * @author kulikov
 */
public class Header extends HLayout {
    
    private Label userName = new Label();

    public Header(final Console console) {
        setHeight(50);
        setWidth100();
        
        Img logo = new Img();
        logo.setSrc("icons/logo.png");
        
        logo.setHeight(30);
        logo.setWidth(190);
        logo.setValign(VerticalAlignment.CENTER);
        
        
        ToolStrip strip = new ToolStrip();
        strip.setHeight(50);
        strip.setWidth100();
        
        strip.addSpacer(90);
        strip.addMember(logo);
        strip.addSpacer(10);
        strip.addSeparator();
        
        strip.addFill();
        
        
        VLayout p = new VLayout();
        p.setAlign(VerticalAlignment.CENTER);
        DynamicForm form = new DynamicForm();
        
        p.addMember(form);
        p.setWidth(300);
        
        final TextItem search = new TextItem();
        search.setTitle("Search");
        search.setWidth(300);
        search.setValue("");
        search.setTop(30);
        
        form.setItems(search);
        
        strip.setAlign(VerticalAlignment.CENTER);
        strip.addMember(p);
       
        ToolStripButton go = new ToolStripButton();
        go.setTitle("Go");
        go.addClickHandler(new ClickHandler() {
            @Override
            public void onClick(ClickEvent event) {
                console.jcrService().findRepositories(search.getValueAsString(), new BaseCallback>() {
                    @Override
                    public void onSuccess(Collection result) {
                        console.showRepositories(result);
                    }
                });
            }
        });
        
        strip.addButton(go);
        
        userName.setContents("okulikov");
        userName.setIcon("icons/bullet_blue.png");
        
        strip.addSpacer(140);
        strip.addSeparator();
        
        strip.addMember(userName);
        strip.addSeparator();

        ToolStripButton logout = new ToolStripButton();
        logout.setTitle("Log out");
        logout.addClickHandler(new ClickHandler() {
            @Override
            public void onClick(ClickEvent event) {
                console.jcrService().logout(new BaseCallback() {
                    @Override
                    public void onSuccess(String result) {
                        console.changeUserName(null);
                        Window.Location.replace(result);
                    }
                });
            }
        });
        
        strip.addButton(logout);
        
        addMember(strip);
        setBackgroundColor("#d3d3d3");
        
    }
    
    public void setUserName(String userName) {
        if (userName != null && userName.length() > 0) {
            this.userName.setContents(userName);
        } else {
            this.userName.setContents("anonymous");
        }
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy