mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* Fix project context menu actions (#12541) * delete works again * make fewer changes * update all sql db project commands * cleanup * Remove old projects view (#12563) * remove old projects view from file explorer view * fix tests failing * remove projects in open folder opening up in old view * Update db reference dialog to show projects in the workspace (#12580) * update database reference dialog to show projects in the workspace in the project dropdown * remove workspace stuff from sql projects extension * undo change * add class that implements IExtension * undo a change * update DataWorkspaceExtension to take workspaceService as a parameter * add type * Update sql database project commands (#12595) * remove sql proj's open and create new project from comman palette * hook up create project from database to data workspace * rename the remaining import databases to create project from database * remove open, new, and close commands * expose addProjectsToWorkspace() in IExtension instead of calling command * Addressing comments * fix failing sql project tests (#12651) * update SSDT projects opened in projects viewlet (#12669) * fix action not refreshing the tree issue (#12692) * fix adding project references in new projects viewlet (#12688) * Remove old projects tree provider (#12702) * Remove old projects tree provider and fix tests * formatting * update refreshProjectsTree() to accept workspaceTreeItem() * Cleanup ProjectsController (#12718) * remove openProject from ProjectController and some cleanup * rename * add project and open project dialogs (#12729) * empty dialogs * wip * new project dialog implementation * revert gitattributes * open project dialog * implement add project * remove icon helper * refactor * revert script change * adjust views * more updates * make data-workspace a builtin extension * show the view only when project provider is detected (#12819) * only show the view when proj provider is available * update * fix sql project tests after merge (#12793) * Update dialogs to be closer to mockups (#12879) * small UI changes to dialogs * center radio card group text * Create workspace if needed when opening/new project (#12930) * empty dialogs * wip * new project dialog implementation * revert gitattributes * open project dialog * implement add project * remove icon helper * refactor * revert script change * create workspace * initial changes * create new workspace working * fix tests * cleanup * remove showWorkspaceRequiredNotification() * Add test for no workspace open * update blue buttons * move loading temp project to activate() instead of workspaceService constructor * move workspace creation warning message to before project is created * pass uri to createWorkspace * add tests Co-authored-by: Alan Ren <alanren@microsoft.com> * Additional create workspace changes (#13004) * Dialogs workspace updates (#13010) * adding workspace text boxes * match new project dialog to mockups * Add validation error message for workspace file * add enterWorkspace api * add warning message for opening workspace * cleanup * update commands to remove project so they're more generic * remove 'empty' from string * Move default project location setting to data workspace extension (#13022) * remove project location setting and notification from sql database projects extension * add default project location setting to data workspace extension * fix typo * Add back project name incrementing * other merge fixes * fix strings from other PR * default to last opened directory instead of home directory if no specified default location * A few small updates (#13092) * fix build error * update title for inputboxes * add missing file * Add tests for data workspace dialogs (#13324) * add tests for dialogs * create helper functions * New project dialog workspace inputbox fixes (#13407) * workspace inputbox fixes * fix folder icons * Update package.jsons and readme (#13451) * update package.jsons * update readme * add workspace information to open existing dialog (#13455) Co-authored-by: Alan Ren <alanren@microsoft.com>
81 lines
2.4 KiB
TypeScript
81 lines
2.4 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 { promises as fs } from 'fs';
|
|
import * as constants from '../../common/constants';
|
|
|
|
/**
|
|
* Abstract class for a datasource in a project
|
|
*/
|
|
export abstract class DataSource {
|
|
public name: string;
|
|
public abstract get type(): string;
|
|
public abstract get typeFriendlyName(): string;
|
|
|
|
constructor(name: string) {
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
export class NoDataSourcesFileError extends Error {
|
|
constructor(message?: string) {
|
|
super(message);
|
|
Object.setPrototypeOf(this, new.target.prototype);
|
|
this.name = NoDataSourcesFileError.name;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* parses the specified file to load DataSource objects
|
|
*/
|
|
export async function load(dataSourcesFilePath: string): Promise<DataSource[]> {
|
|
let fileContents;
|
|
|
|
try {
|
|
fileContents = await fs.readFile(dataSourcesFilePath);
|
|
}
|
|
catch (err) {
|
|
// TODO: differentiate between file not existing and other types of failures; need to know whether to prompt to create new
|
|
throw new NoDataSourcesFileError(constants.noDataSourcesFile);
|
|
}
|
|
|
|
const rawJsonContents = JSON.parse(fileContents.toString());
|
|
|
|
if (rawJsonContents.version === undefined) {
|
|
throw new Error(constants.missingVersion);
|
|
}
|
|
|
|
const output: DataSource[] = [];
|
|
|
|
// TODO: do we have a construct for parsing version numbers?
|
|
switch (rawJsonContents.version) {
|
|
case '0.0.0':
|
|
// const dataSources: DataSourceFileJson = rawJsonContents as DataSourceFileJson;
|
|
|
|
// for (const source of dataSources.datasources) {
|
|
// output.push(createDataSource(source));
|
|
// }
|
|
|
|
break;
|
|
default:
|
|
throw new Error(constants.unrecognizedDataSourcesVersion + rawJsonContents.version);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
/**
|
|
* Creates DataSource object from JSON
|
|
*/
|
|
// Commenting this out because circular dependency with SqlConnectionDataSource was causing extension to not activate
|
|
// function createDataSource(json: DataSourceJson): DataSource {
|
|
// switch (json.type) {
|
|
// case SqlConnectionDataSource.type:
|
|
// return SqlConnectionDataSource.fromJson(json);
|
|
// default:
|
|
// throw new Error(constants.unknownDataSourceType + json.type);
|
|
// }
|
|
// }
|