com.ponysdk.core.terminal.ui.PTFileUpload.java Source code

Java tutorial

Introduction

Here is the source code for com.ponysdk.core.terminal.ui.PTFileUpload.java

Source

/*
 * Copyright (c) 2011 PonySDK
 *  Owners:
 *  Luciano Broussal  <luciano.broussal AT gmail.com>
 *  Mathieu Barbier   <mathieu.barbier AT gmail.com>
 *  Nicolas Ciaravola <nicolas.ciaravola.pro AT gmail.com>
 *
 *  WebSite:
 *  http://code.google.com/p/pony-sdk/
 *
 * 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 com.ponysdk.core.terminal.ui;

import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.LabelElement;
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.FileUpload;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.FormPanel;
import com.ponysdk.core.model.ClientToServerModel;
import com.ponysdk.core.model.HandlerModel;
import com.ponysdk.core.model.MappingPath;
import com.ponysdk.core.model.ServerToClientModel;
import com.ponysdk.core.terminal.PonySDK;
import com.ponysdk.core.terminal.instruction.PTInstruction;
import com.ponysdk.core.terminal.model.BinaryModel;
import com.ponysdk.core.terminal.model.ReaderBuffer;

public class PTFileUpload extends PTWidget<FormPanel> {

    private FileUpload fileUpload;
    private String fileUploadId;
    private FlowPanel container;
    private LabelElement label;

    @Override
    protected FormPanel createUIObject() {
        fileUpload = new FileUpload();

        fileUploadId = DOM.createUniqueId();
        fileUpload.getElement().setPropertyString("id", fileUploadId);
        fileUpload.setName("file");

        final FormPanel formPanel = new FormPanel();
        formPanel.setEncoding(FormPanel.ENCODING_MULTIPART);
        formPanel.setMethod(FormPanel.METHOD_POST);

        container = new FlowPanel();
        container.add(fileUpload);
        formPanel.setWidget(container);

        formPanel.addSubmitCompleteHandler(event -> {
            final PTInstruction instruction = new PTInstruction(objectID);
            instruction.put(ClientToServerModel.HANDLER_SUBMIT_COMPLETE);
            uiBuilder.sendDataToServer(uiObject, instruction);
        });

        return formPanel;
    }

    @Override
    public boolean update(final ReaderBuffer buffer, final BinaryModel binaryModel) {
        final ServerToClientModel model = binaryModel.getModel();
        if (ServerToClientModel.NAME == model) {
            fileUpload.setName(binaryModel.getStringValue());
            return true;
        } else if (ServerToClientModel.ENABLED == model) {
            fileUpload.setEnabled(binaryModel.getBooleanValue());
            return true;
        } else if (ServerToClientModel.TEXT == model) {
            if (label == null) {
                label = DOM.createLabel().cast();
                label.setHtmlFor(fileUploadId);
                container.getElement().insertFirst(label);
            }
            label.setInnerText(binaryModel.getStringValue());
            return true;
        } else if (ServerToClientModel.CLEAR == model) {
            uiObject.reset();
            return true;
        } else {
            return super.update(buffer, binaryModel);
        }
    }

    @Override
    public void addHandler(final ReaderBuffer buffer, final HandlerModel handlerModel) {
        if (HandlerModel.HANDLER_CHANGE == handlerModel) {
            fileUpload.addChangeHandler(event -> {
                final PTInstruction eventInstruction = new PTInstruction(getObjectID());
                eventInstruction.put(ClientToServerModel.HANDLER_CHANGE, fileUpload.getFilename());
                eventInstruction.put(ClientToServerModel.SIZE, getFileSize(fileUpload.getElement()));
                uiBuilder.sendDataToServer(fileUpload, eventInstruction);
            });
        } else if (HandlerModel.HANDLER_EMBEDED_STREAM_REQUEST == handlerModel) {
            // ServerToClientModel.STREAM_REQUEST_ID
            final int streamRequestId = buffer.readBinaryModel().getIntValue();

            final String action = GWT.getHostPageBaseURL() + MappingPath.STREAM + "?"
                    + ClientToServerModel.UI_CONTEXT_ID.toStringValue() + "=" + PonySDK.get().getContextId() + "&"
                    + ClientToServerModel.STREAM_REQUEST_ID.toStringValue() + "=" + streamRequestId;
            uiObject.setAction(action);
            uiObject.submit();
        } else {
            super.addHandler(buffer, handlerModel);
        }
    }

    private native int getFileSize(final Element data) /*-{
                                                       return data.files[0].size;
                                                       }-*/;

    @Override
    public void removeHandler(final ReaderBuffer buffer, final HandlerModel handlerModel) {
        if (HandlerModel.HANDLER_CHANGE == handlerModel) {
            // TODO Remove HANDLER_CHANGE
        } else {
            super.removeHandler(buffer, handlerModel);
        }
    }

}