mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 * fix config changes * fix strictnull checks
102 lines
3.1 KiB
TypeScript
102 lines
3.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
import * as azdata from 'azdata';
|
|
import * as nls from 'vscode-nls';
|
|
import * as vscode from 'vscode';
|
|
import * as path from 'path';
|
|
import * as os from 'os';
|
|
import { DacFxDataModel } from '../api/models';
|
|
import { DataTierApplicationWizard } from '../dataTierApplicationWizard';
|
|
import { DacFxConfigPage } from '../api/dacFxConfigPage';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export class ImportConfigPage extends DacFxConfigPage {
|
|
|
|
protected readonly wizardPage: azdata.window.WizardPage;
|
|
protected readonly instance: DataTierApplicationWizard;
|
|
protected readonly model: DacFxDataModel;
|
|
protected readonly view: azdata.ModelView;
|
|
|
|
private form: azdata.FormContainer;
|
|
|
|
public constructor(instance: DataTierApplicationWizard, wizardPage: azdata.window.WizardPage, model: DacFxDataModel, view: azdata.ModelView) {
|
|
super(instance, wizardPage, model, view);
|
|
this.fileExtension = '.bacpac';
|
|
}
|
|
|
|
async start(): Promise<boolean> {
|
|
let databaseComponent = await this.createDatabaseTextBox();
|
|
let serverComponent = await this.createServerDropdown(true);
|
|
let fileBrowserComponent = await this.createFileBrowser();
|
|
|
|
this.form = this.view.modelBuilder.formContainer()
|
|
.withFormItems(
|
|
[
|
|
fileBrowserComponent,
|
|
serverComponent,
|
|
databaseComponent,
|
|
], {
|
|
horizontal: true,
|
|
componentWidth: 400
|
|
}).component();
|
|
await this.view.initializeModel(this.form);
|
|
return true;
|
|
}
|
|
|
|
async onPageEnter(): Promise<boolean> {
|
|
let r1 = await this.populateServerDropdown();
|
|
return r1;
|
|
}
|
|
|
|
private async createFileBrowser(): Promise<azdata.FormComponent> {
|
|
this.createFileBrowserParts();
|
|
|
|
this.fileButton.onDidClick(async (click) => {
|
|
let fileUris = await vscode.window.showOpenDialog(
|
|
{
|
|
canSelectFiles: true,
|
|
canSelectFolders: false,
|
|
canSelectMany: false,
|
|
defaultUri: vscode.Uri.file(this.getRootPath()),
|
|
openLabel: localize('dacFxImport.openFile', 'Open'),
|
|
filters: {
|
|
'bacpac Files': ['bacpac'],
|
|
}
|
|
}
|
|
);
|
|
|
|
if (!fileUris || fileUris.length === 0) {
|
|
return;
|
|
}
|
|
|
|
let fileUri = fileUris[0];
|
|
this.fileTextBox.value = fileUri.fsPath;
|
|
this.model.filePath = fileUri.fsPath;
|
|
this.model.database = this.generateDatabaseName(this.model.filePath);
|
|
this.databaseTextBox.value = this.model.database;
|
|
});
|
|
|
|
this.fileTextBox.onTextChanged(async () => {
|
|
this.model.filePath = this.fileTextBox.value;
|
|
this.model.database = this.generateDatabaseName(this.model.filePath);
|
|
this.databaseTextBox.value = this.model.database;
|
|
});
|
|
|
|
return {
|
|
component: this.fileTextBox,
|
|
title: localize('dacFxImport.fileTextboxTitle', 'File Location'),
|
|
actions: [this.fileButton]
|
|
};
|
|
}
|
|
|
|
private generateDatabaseName(filePath: string): string {
|
|
let result = path.parse(filePath);
|
|
return result.name;
|
|
}
|
|
}
|