Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support version for installExtension, support uninstall cmd #14298

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

dhuebner
Copy link
Member

What it does

Allows to use version when executing workbench.extensions.installExtension command in format <extensionId>@<version> #13795
Adds support for workbench.extensions.uninstallExtension command #13796

How to test

Run uninstall on some installed extension. extension.uninstall now uses the new workbench.extensions.uninstallExtension under the hood.

Install command workbench.extensions.installExtension is currently not used in Theia with a string parameter, one need to create a separate command.

Follow-ups

Review checklist

Reminder for reviewers

@dhuebner dhuebner requested a review from tsmaeder October 11, 2024 13:50
if (!id) {
throw new Error(nls.localizeByDefault('Extension id required.'));
}
if (!PluginIdentifiers.isVersionedId(id)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this makes sense from a user's perspective: while technically, we can have multiple versions of the same plugin installed, that's not how it's presented to the user: for them, you either have a plugin installed, or not, independent of the version, so we should probably pass a naked id here.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PluginServer.uninstall() expects PluginIdentifiers.VersionedId parameter which is typed as ${string}.${string}@${string} that why it the code above makes sense to me.

that's not how it's presented to the user: for them, you either have a plugin installed, or not

The UNINSTALL_EXTENSION command is not presented to the user, but is used in theia/packages/vsx-registry/src/browser/vsx-extension.tsx where the versioned extension id is given.
I would prefer to keep require versioned id here.

@tsmaeder
Copy link
Contributor

@dhuebner still some open questions on this one.

@dhuebner
Copy link
Member Author

@tsmaeder
Yes, I need to go through and answer. Will do it this week.

@dhuebner dhuebner force-pushed the dhuebner/install-with-version-13795 branch 3 times, most recently from f9a0ca7 to ad3cd23 Compare December 6, 2024 11:50
@dhuebner
Copy link
Member Author

dhuebner commented Dec 6, 2024

@tsmaeder
Please find my answers above.
I removed the organize imports changes and added comments to the RegEx. Also re-based on current master.

@dhuebner dhuebner requested a review from tsmaeder January 10, 2025 14:05
@dhuebner dhuebner force-pushed the dhuebner/install-with-version-13795 branch from ad3cd23 to 8001df6 Compare January 17, 2025 13:23
@JonasHelming
Copy link
Contributor

@tsmaeder Ping

Copy link
Contributor

@tsmaeder tsmaeder left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Dennis, sorry for the delay, the last two releases have been somewhat crazy. Unfortunately, I still think this PR needs a bit of work.
Also, I don't really have a way to test the PR: when plugin API is involved and we don't have a known extension that exposes a plugin, we're making a little extension that exercises the API, in this case why not one that has two commands to install/uninstall with the user inputting a versioned id string?

@dhuebner dhuebner force-pushed the dhuebner/install-with-version-13795 branch from 8001df6 to b7d7cd9 Compare March 28, 2025 12:22
@dhuebner
Copy link
Member Author

dhuebner commented Mar 28, 2025

@tsmaeder

Hi Dennis, sorry for the delay, the last two releases have been somewhat crazy.

No problem! Same here, a lot of TODOs :)

Unfortunately, I still think this PR needs a bit of work.

I've applied all the changes you suggested.

Also, I don't really have a way to test the PR: when plugin API is involved and we don't have a known extension that exposes a plugin, we're making a little extension that exercises the API, in this case why not one that has two commands to install/uninstall with the user inputting a versioned id string?

The simplest way to test is to add labels to the commands:

    export const INSTALL_FROM_VSIX: Command = {
        id: 'workbench.extensions.installExtension',
        label: nls.localizeByDefault('Install Extension')
    };

    export const UNINSTALL_EXTENSION: Command = {
        id: 'workbench.extensions.uninstallExtension',
        label: nls.localizeByDefault('Uninstall Extension')
    };

And then defaults for id parameters:

commands.registerCommand(VscodeCommands.INSTALL_FROM_VSIX, {
            execute: async (vsixUriOrExtensionId: TheiaURI | UriComponents | string = 'langium.langium-vscode') => {
commands.registerCommand(VscodeCommands.UNINSTALL_EXTENSION, {
            execute: async (id: string = '[email protected]') => {

Use Cmd+Shift+P to install and uninstall

@dhuebner
Copy link
Member Author

Btw. "Install Extension" user command would be a nice feature for Theia. Like shown here in Installation section.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Waiting on author
Development

Successfully merging this pull request may close these issues.

3 participants