mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 12:08:36 -05:00
72 lines
2.8 KiB
TypeScript
72 lines
2.8 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as azdata from 'azdata';
|
|
import * as nls from 'vscode-nls';
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export class SparkAdvancedTab {
|
|
private _tab: azdata.window.DialogTab;
|
|
public get tab(): azdata.window.DialogTab { return this._tab; }
|
|
|
|
private _referenceFilesInputBox: azdata.InputBoxComponent;
|
|
private _referenceJARFilesInputBox: azdata.InputBoxComponent;
|
|
private _referencePyFilesInputBox: azdata.InputBoxComponent;
|
|
|
|
constructor() {
|
|
this._tab = azdata.window.createTab(localize('sparkJobSubmission.AdvancedTabName', "ADVANCED"));
|
|
|
|
this._tab.registerContent(async (modelView) => {
|
|
let builder = modelView.modelBuilder;
|
|
let parentLayout: azdata.FormItemLayout = {
|
|
horizontal: false,
|
|
componentWidth: '400px'
|
|
};
|
|
|
|
let formContainer = builder.formContainer();
|
|
|
|
this._referenceJARFilesInputBox = builder.inputBox().component();
|
|
formContainer.addFormItem({
|
|
component: this._referenceJARFilesInputBox,
|
|
title: localize('sparkJobSubmission.ReferenceJarList', "Reference Jars")
|
|
},
|
|
Object.assign(
|
|
{
|
|
info: localize('sparkJobSubmission.ReferenceJarListToolTip',
|
|
"Jars to be placed in executor working directory. The Jar path needs to be an HDFS Path. Multiple paths should be split by semicolon (;)")
|
|
},
|
|
parentLayout));
|
|
|
|
this._referencePyFilesInputBox = builder.inputBox().component();
|
|
formContainer.addFormItem({
|
|
component: this._referencePyFilesInputBox,
|
|
title: localize('sparkJobSubmission.ReferencePyList', "Reference py Files")
|
|
},
|
|
Object.assign(
|
|
{
|
|
info: localize('sparkJobSubmission.ReferencePyListTooltip',
|
|
"Py Files to be placed in executor working directory. The file path needs to be an HDFS Path. Multiple paths should be split by semicolon(;)")
|
|
},
|
|
parentLayout));
|
|
|
|
this._referenceFilesInputBox = builder.inputBox().component();
|
|
formContainer.addFormItem({
|
|
component: this._referenceFilesInputBox,
|
|
title: localize('sparkJobSubmission.ReferenceFilesList', "Reference Files")
|
|
},
|
|
Object.assign({
|
|
info: localize('sparkJobSubmission.ReferenceFilesListTooltip',
|
|
"Files to be placed in executor working directory. The file path needs to be an HDFS Path. Multiple paths should be split by semicolon(;)")
|
|
}, parentLayout));
|
|
|
|
await modelView.initializeModel(formContainer.component());
|
|
});
|
|
}
|
|
|
|
public getInputValues(): string[] {
|
|
return [this._referenceJARFilesInputBox.value, this._referencePyFilesInputBox.value, this._referenceFilesInputBox.value];
|
|
}
|
|
}
|