/* * Copyright 2014 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.dashbuilder.client.widgets.dataset.editor.csv; import org.dashbuilder.client.widgets.common.LoadingBox; import org.dashbuilder.client.widgets.dataset.editor.DataSetDefColumnsFilterEditor; import org.dashbuilder.client.widgets.dataset.editor.DataSetDefPreviewTable; import org.dashbuilder.client.widgets.dataset.editor.DataSetEditor; import org.dashbuilder.client.widgets.dataset.editor.attributes.DataSetDefBackendCacheAttributesEditor; import org.dashbuilder.client.widgets.dataset.editor.attributes.DataSetDefBasicAttributesEditor; import org.dashbuilder.client.widgets.dataset.editor.attributes.DataSetDefClientCacheAttributesEditor; import org.dashbuilder.client.widgets.dataset.editor.attributes.DataSetDefRefreshAttributesEditor; import org.dashbuilder.client.widgets.dataset.event.ErrorEvent; import org.dashbuilder.client.widgets.dataset.event.TabChangedEvent; import org.dashbuilder.common.client.editor.ValueBoxEditor; import org.dashbuilder.common.client.editor.file.FileUploadEditor; import org.dashbuilder.dataset.client.DataSetClientServices; import org.dashbuilder.dataset.def.CSVDataSetDef; import javax.annotation.PostConstruct; import javax.enterprise.context.Dependent; import javax.enterprise.event.Event; import javax.inject.Inject; /** * <p>CSV Data Set editor presenter.</p> * * @since 0.4.0 */ @Dependent public class CSVDataSetEditor extends DataSetEditor<CSVDataSetDef> implements org.dashbuilder.dataset.client.editor.CSVDataSetDefEditor { CSVDataSetDefAttributesEditor attributesEditor; @Inject public CSVDataSetEditor(final DataSetDefBasicAttributesEditor basicAttributesEditor, final CSVDataSetDefAttributesEditor attributesEditor, final DataSetDefColumnsFilterEditor columnsAndFilterEditor, final DataSetDefPreviewTable previewTable, final DataSetDefBackendCacheAttributesEditor backendCacheAttributesEditor, final DataSetDefClientCacheAttributesEditor clientCacheAttributesEditor, final DataSetDefRefreshAttributesEditor refreshEditor, final DataSetClientServices clientServices, final LoadingBox loadingBox, final Event<ErrorEvent> errorEvent, final Event<TabChangedEvent> tabChangedEvent, final View view) { super(basicAttributesEditor, attributesEditor.view, columnsAndFilterEditor, previewTable, backendCacheAttributesEditor, clientCacheAttributesEditor, refreshEditor, clientServices, loadingBox, errorEvent, tabChangedEvent, view); this.attributesEditor = attributesEditor; } @PostConstruct public void init() { // Initialize the generic data set editor view. super.init(); } /************************************************************* ** GWT EDITOR CONTRACT METHODS ** *************************************************************/ @Override public ValueBoxEditor<String> fileURL() { return attributesEditor.fileURL(); } @Override public FileUploadEditor filePath() { return attributesEditor.filePath(); } @Override public ValueBoxEditor<Character> separatorChar() { return attributesEditor.separatorChar(); } @Override public ValueBoxEditor<Character> quoteChar() { return attributesEditor.quoteChar(); } @Override public ValueBoxEditor<Character> escapeChar() { return attributesEditor.escapeChar(); } @Override public ValueBoxEditor<String> datePattern() { return attributesEditor.datePattern(); } @Override public ValueBoxEditor<String> numberPattern() { return attributesEditor.numberPattern(); } public boolean isUsingFilePath() { return attributesEditor.isUsingFilePath(); } @Override public void setValue(final CSVDataSetDef value) { super.setValue(value); // As gwt editor inheritance does not work fine, try to reuse CSV attributes editor logic here. attributesEditor.setValue(value); } }