Skip to content

Commit

Permalink
Add welcome page and update the title (#1475)
Browse files Browse the repository at this point in the history
* Code refactor and welcome page title update

* ui tests for welcome page

* Fix function name casing

* Code refactor and welcome page title update

* ui tests for welcome page

* Fix function name casing

* fix for lightspeed one click trial and auth test failure

* Revert lightspeed test related changes

* Remove duplicate code

* Remove spacing

* Skip tests for lightspeed one click trial feature

* Update welcome page tests

* Skip tests for lightspeed one click trial feature

* Test container cleanup commands update
  • Loading branch information
audgirka authored Oct 4, 2024
1 parent 5fc2955 commit 883d49d
Show file tree
Hide file tree
Showing 11 changed files with 416 additions and 601 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,3 +243,7 @@ a .codicon {
border-style: solid;
border-radius: 4px;
}

.playbookGenerationContainer .playbookGenerationSlideCategories>.playbookGenerationCategoriesContainer > .header > .subtitle {
font-size: 1em;
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"ansible-explorer": [
{
"id": "ansible-content-creator",
"name": "Ansible content creator"
"name": "Ansible Development Tools"
},
{
"id": "lightspeed-explorer-webview",
Expand Down Expand Up @@ -296,7 +296,7 @@
},
{
"command": "ansible.content-creator.menu",
"title": "Open Ansible Content Creator menu"
"title": "Open Ansible Development Tools menu"
},
{
"command": "ansible.content-creator.install",
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import { AnsibleToxProvider } from "./features/ansibleTox/provider";
import { findProjectDir } from "./features/ansibleTox/utils";
import { LightspeedFeedbackWebviewViewProvider } from "./features/lightspeed/feedbackWebviewViewProvider";
import { LightspeedFeedbackWebviewProvider } from "./features/lightspeed/feedbackWebviewProvider";
import { AnsibleCreatorMenu } from "./features/playbookGeneration/welcomePage";
import { AnsibleWelcomePage } from "./features/welcomePage";
import { CreateAnsibleCollection } from "./features/contentCreator/createAnsibleCollectionPage";
import { withInterpreter } from "./features/utils/commandRunner";
import { IFileSystemWatchers } from "./interfaces/watchers";
Expand Down Expand Up @@ -502,7 +502,7 @@ export async function activate(context: ExtensionContext): Promise<void> {
// open ansible-content-creator menu
context.subscriptions.push(
vscode.commands.registerCommand("ansible.content-creator.menu", () => {
AnsibleCreatorMenu.render(context.extensionUri);
AnsibleWelcomePage.render(context.extensionUri);
}),
);

Expand Down
283 changes: 0 additions & 283 deletions src/features/contentCreator/welcomePage.ts

This file was deleted.

Loading

0 comments on commit 883d49d

Please sign in to comment.