-
Notifications
You must be signed in to change notification settings - Fork 30
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
v2 edit tags command for resources #461
Conversation
78eea8c
to
080d53f
Compare
@@ -46,7 +45,7 @@ export class AppResourceTreeItem extends ResolvableTreeItemBase implements Group | |||
this.groupConfig = createGroupConfigFromResource(resource, root.id); | |||
|
|||
this.contextValues.add(AppResourceTreeItem.contextValue); | |||
ext.tagFS.fireSoon({ type: FileChangeType.Changed, item: this }); | |||
// ext.tagFS.fireSoon({ type: FileChangeType.Changed, item: this }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you explain why you commented this out? Should it go back eventually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a v1 class that isn't used anymore. It's a lot of work to delete everything, will do in a follow up PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When I start deleting files it just shows how much there is left to do. For example:
- Toggle show all resources command
- Group by tags needs updated so that it doesn't rely on the root tree item to get subscriptions
revealTreeItem
I'm sure there's more
Depends on microsoft/vscode-azuretools#1257
I will add support for editing tags on resource groups in a follow up PR.
Also, I need to add a
dontUnwrap
flag toappResourceExperience
in utils so to support getting an item from the picker here.