mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
* working on formatting * fixed basic lint errors; starting moving things to their appropriate location * formatting * update tslint to match the version of vscode we have * remove unused code * work in progress fixing layering * formatting * moved connection management service to platform * formatting * add missing file * moving more servies * formatting * moving more services * formatting * wip * moving more services * formatting * move css file * add missing svgs * moved the rest of services * formatting * changing around some references * formatting * revert tslint * revert some changes that brake things * formatting * fix tests * fix testzx * fix tests * fix tests * fix compile issue
66 lines
2.3 KiB
TypeScript
66 lines
2.3 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 { IFileBrowserService } from 'sql/platform/fileBrowser/common/interfaces';
|
|
import { localize } from 'vs/nls';
|
|
|
|
/**
|
|
* View model for file browser dialog
|
|
*/
|
|
export class FileBrowserViewModel {
|
|
private _ownerUri: string;
|
|
private _expandPath: string;
|
|
private _fileFilters: [{ label: string, filters: string[] }];
|
|
private _fileValidationServiceType: string;
|
|
public formattedFileFilters: string[];
|
|
|
|
constructor( @IFileBrowserService private _fileBrowserService: IFileBrowserService) {
|
|
}
|
|
|
|
public onAddFileTree(onAddFileTreeCallback) {
|
|
this._fileBrowserService.onAddFileTree(args => onAddFileTreeCallback(args));
|
|
}
|
|
|
|
public onPathValidate(onPathValidateCallback) {
|
|
this._fileBrowserService.onPathValidate(args => onPathValidateCallback(args));
|
|
}
|
|
|
|
public initialize(ownerUri: string,
|
|
expandPath: string,
|
|
fileFilters: [{ label: string, filters: string[] }],
|
|
fileValidationServiceType: string,
|
|
) {
|
|
this._ownerUri = ownerUri;
|
|
this._expandPath = expandPath;
|
|
this._fileValidationServiceType = fileValidationServiceType;
|
|
|
|
if (!fileFilters) {
|
|
this._fileFilters = [{ label: localize('allFiles', 'All files'), filters: ['*'] }];
|
|
} else {
|
|
this._fileFilters = fileFilters;
|
|
}
|
|
this.formattedFileFilters = [];
|
|
for (var i = 0; i < this._fileFilters.length; i++) {
|
|
var filterStr = this._fileFilters[i].label + '(' + this._fileFilters[i].filters.join(';') + ')';
|
|
this.formattedFileFilters.push(filterStr);
|
|
}
|
|
}
|
|
|
|
public validateFilePaths(selectedFiles: string[]) {
|
|
this._fileBrowserService.validateFilePaths(this._ownerUri, this._fileValidationServiceType, selectedFiles);
|
|
}
|
|
|
|
public openFileBrowser(filterIndex: number, changeFilter: boolean) {
|
|
if (this._fileFilters[filterIndex]) {
|
|
this._fileBrowserService.openFileBrowser(this._ownerUri, this._expandPath, this._fileFilters[filterIndex].filters, changeFilter);
|
|
}
|
|
}
|
|
|
|
public closeFileBrowser() {
|
|
this._fileBrowserService.closeFileBrowser(this._ownerUri);
|
|
}
|
|
} |