-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactors scaffolding action to be based on form (#181)
## π― Aim is to add a scaffolding form for the add new project action ## β What was done - [X] added new webview for for the create project action ## π Related issue related: #124
- Loading branch information
Showing
14 changed files
with
513 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ComponentType } from './ComponentTypes'; | ||
import { ExtensionType } from './ExtensionTypes'; | ||
|
||
export interface SpfxAddComponentCommandInput { | ||
componentType: ComponentType; | ||
componentName: string; | ||
frameworkType: string; | ||
extensionType: ExtensionType; | ||
aceType: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { SpfxAddComponentCommandInput } from './SpfxAddComponentCommandInput'; | ||
|
||
export interface SpfxScaffoldCommandInput extends SpfxAddComponentCommandInput { | ||
folderPath: string; | ||
solutionName: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.