mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 19:48:37 -05:00
GenerateToNotebook and Deploy buttons for Notebook Wizards (#12656)
* enable userChooses how to run notebook * arc ext changes * nb fixes * working version * revert unneeded changes * fix comments * Update interfaces.ts * fix comments * fix comments * fix comments * runAllCells instead of background execute * pr feedback * PR feedback * pr feedback * arc ext changes for new WizardInfo syntax * fix doc comments * pr feedback
This commit is contained in:
@@ -5,8 +5,10 @@
|
||||
|
||||
import * as azdata from 'azdata';
|
||||
import { Validator } from './modelViewUtils';
|
||||
import { WizardPageInfo } from './wizardPageInfo';
|
||||
|
||||
export abstract class WizardPageBase<T> {
|
||||
|
||||
private _page: azdata.window.WizardPage;
|
||||
private _validators: Validator[] = [];
|
||||
|
||||
@@ -23,9 +25,9 @@ export abstract class WizardPageBase<T> {
|
||||
return this._wizard;
|
||||
}
|
||||
|
||||
public async onEnter(): Promise<void> { }
|
||||
public async onEnter(_pageInfo?: WizardPageInfo): Promise<void> { }
|
||||
|
||||
public async onLeave(): Promise<void> { }
|
||||
public async onLeave(_pageInfo?: WizardPageInfo): Promise<void> { }
|
||||
|
||||
public abstract initialize(): void;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user