|
|
@ -0,0 +1,271 @@ |
|
|
|
'use strict'; |
|
|
|
import { |
|
|
|
CancellationToken, |
|
|
|
commands, |
|
|
|
ConfigurationChangeEvent, |
|
|
|
ProgressLocation, |
|
|
|
TreeItem, |
|
|
|
TreeItemCollapsibleState, |
|
|
|
window, |
|
|
|
} from 'vscode'; |
|
|
|
import { configuration, TagsViewConfig, ViewBranchesLayout, ViewFilesLayout } from '../configuration'; |
|
|
|
import { Container } from '../container'; |
|
|
|
import { GitReference, GitTagReference, Repository, RepositoryChange, RepositoryChangeEvent } from '../git/git'; |
|
|
|
import { GitUri } from '../git/gitUri'; |
|
|
|
import { |
|
|
|
BranchOrTagFolderNode, |
|
|
|
ContextValues, |
|
|
|
MessageNode, |
|
|
|
RepositoriesNode, |
|
|
|
RepositoryNode, |
|
|
|
SubscribeableViewNode, |
|
|
|
TagsNode, |
|
|
|
unknownGitUri, |
|
|
|
ViewNode, |
|
|
|
} from './nodes'; |
|
|
|
import { debug, gate } from '../system'; |
|
|
|
import { ViewBase } from './viewBase'; |
|
|
|
|
|
|
|
export class TagsRepositoryNode extends SubscribeableViewNode<TagsView> { |
|
|
|
private child: TagsNode | undefined; |
|
|
|
|
|
|
|
constructor( |
|
|
|
uri: GitUri, |
|
|
|
view: TagsView, |
|
|
|
parent: ViewNode, |
|
|
|
public readonly repo: Repository, |
|
|
|
private readonly root: boolean, |
|
|
|
) { |
|
|
|
super(uri, view, parent); |
|
|
|
} |
|
|
|
|
|
|
|
async getChildren(): Promise<ViewNode[]> { |
|
|
|
if (this.child == null) { |
|
|
|
this.child = new TagsNode(this.uri, this.view, this, this.repo); |
|
|
|
|
|
|
|
void this.ensureSubscription(); |
|
|
|
} |
|
|
|
return this.child.getChildren(); |
|
|
|
} |
|
|
|
|
|
|
|
getTreeItem(): TreeItem { |
|
|
|
const item = new TreeItem( |
|
|
|
this.repo.formattedName ?? this.uri.repoPath ?? '', |
|
|
|
TreeItemCollapsibleState.Expanded, |
|
|
|
); |
|
|
|
item.contextValue = ContextValues.RepositoryFolder; |
|
|
|
|
|
|
|
void this.ensureSubscription(); |
|
|
|
|
|
|
|
return item; |
|
|
|
} |
|
|
|
|
|
|
|
@gate() |
|
|
|
@debug() |
|
|
|
async refresh(reset: boolean = false) { |
|
|
|
await this.child?.triggerChange(reset); |
|
|
|
|
|
|
|
await this.ensureSubscription(); |
|
|
|
} |
|
|
|
|
|
|
|
@debug() |
|
|
|
protected subscribe() { |
|
|
|
return this.repo.onDidChange(this.onRepositoryChanged, this); |
|
|
|
} |
|
|
|
|
|
|
|
@debug({ |
|
|
|
args: { |
|
|
|
0: (e: RepositoryChangeEvent) => |
|
|
|
`{ repository: ${e.repository ? e.repository.name : ''}, changes: ${e.changes.join()} }`, |
|
|
|
}, |
|
|
|
}) |
|
|
|
private onRepositoryChanged(e: RepositoryChangeEvent) { |
|
|
|
if (e.changed(RepositoryChange.Closed)) { |
|
|
|
this.dispose(); |
|
|
|
void this.parent?.triggerChange(true); |
|
|
|
|
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
if (e.changed(RepositoryChange.Tags)) { |
|
|
|
void this.triggerChange(true); |
|
|
|
if (this.root) { |
|
|
|
void this.parent?.triggerChange(true); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
export class TagsViewNode extends ViewNode<TagsView> { |
|
|
|
private children: TagsRepositoryNode[] | undefined; |
|
|
|
|
|
|
|
constructor(view: TagsView) { |
|
|
|
super(unknownGitUri, view); |
|
|
|
} |
|
|
|
|
|
|
|
async getChildren(): Promise<ViewNode[]> { |
|
|
|
if (this.children != null) { |
|
|
|
for (const child of this.children) { |
|
|
|
child.dispose?.(); |
|
|
|
} |
|
|
|
this.children = undefined; |
|
|
|
} |
|
|
|
|
|
|
|
const repositories = await Container.git.getOrderedRepositories(); |
|
|
|
if (repositories.length === 0) return [new MessageNode(this.view, this, 'No tags could be found.')]; |
|
|
|
|
|
|
|
const root = repositories.length === 1; |
|
|
|
this.children = repositories.map( |
|
|
|
r => new TagsRepositoryNode(GitUri.fromRepoPath(r.path), this.view, this, r, root), |
|
|
|
); |
|
|
|
|
|
|
|
if (root) { |
|
|
|
const [child] = this.children; |
|
|
|
|
|
|
|
const tags = await child.repo.getTags(); |
|
|
|
this.view.description = tags.length === 0 ? undefined : `(${tags.length})`; |
|
|
|
|
|
|
|
return child.getChildren(); |
|
|
|
} |
|
|
|
return this.children; |
|
|
|
} |
|
|
|
|
|
|
|
getTreeItem(): TreeItem { |
|
|
|
const item = new TreeItem('Tags', TreeItemCollapsibleState.Expanded); |
|
|
|
return item; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
export class TagsView extends ViewBase<TagsViewNode, TagsViewConfig> { |
|
|
|
protected readonly configKey = 'tags'; |
|
|
|
|
|
|
|
constructor() { |
|
|
|
super('gitlens.views.tags', 'Tags'); |
|
|
|
} |
|
|
|
|
|
|
|
getRoot() { |
|
|
|
return new TagsViewNode(this); |
|
|
|
} |
|
|
|
|
|
|
|
protected registerCommands() { |
|
|
|
void Container.viewCommands; |
|
|
|
|
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('copy'), |
|
|
|
() => commands.executeCommand('gitlens.views.copy', this.selection), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand(this.getQualifiedCommand('refresh'), () => this.refresh(true), this); |
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('setLayoutToList'), |
|
|
|
() => this.setLayout(ViewBranchesLayout.List), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('setLayoutToTree'), |
|
|
|
() => this.setLayout(ViewBranchesLayout.Tree), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('setFilesLayoutToAuto'), |
|
|
|
() => this.setFilesLayout(ViewFilesLayout.Auto), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('setFilesLayoutToList'), |
|
|
|
() => this.setFilesLayout(ViewFilesLayout.List), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand( |
|
|
|
this.getQualifiedCommand('setFilesLayoutToTree'), |
|
|
|
() => this.setFilesLayout(ViewFilesLayout.Tree), |
|
|
|
this, |
|
|
|
); |
|
|
|
commands.registerCommand(this.getQualifiedCommand('setShowAvatarsOn'), () => this.setShowAvatars(true), this); |
|
|
|
commands.registerCommand(this.getQualifiedCommand('setShowAvatarsOff'), () => this.setShowAvatars(false), this); |
|
|
|
} |
|
|
|
|
|
|
|
protected filterConfigurationChanged(e: ConfigurationChangeEvent) { |
|
|
|
const changed = super.filterConfigurationChanged(e); |
|
|
|
if ( |
|
|
|
!changed && |
|
|
|
!configuration.changed(e, 'defaultDateFormat') && |
|
|
|
!configuration.changed(e, 'defaultDateSource') && |
|
|
|
!configuration.changed(e, 'defaultDateStyle') && |
|
|
|
!configuration.changed(e, 'defaultGravatarsStyle') && |
|
|
|
!configuration.changed(e, 'sortTagsBy') |
|
|
|
) { |
|
|
|
return false; |
|
|
|
} |
|
|
|
|
|
|
|
return true; |
|
|
|
} |
|
|
|
|
|
|
|
protected onConfigurationChanged(e: ConfigurationChangeEvent) { |
|
|
|
if (configuration.initializing(e)) { |
|
|
|
this.initialize(undefined, { showCollapseAll: true }); |
|
|
|
} |
|
|
|
|
|
|
|
if (!configuration.initializing(e) && this._root != null) { |
|
|
|
void this.refresh(true); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
findTag(tag: GitTagReference, token?: CancellationToken) { |
|
|
|
const repoNodeId = RepositoryNode.getId(tag.repoPath); |
|
|
|
|
|
|
|
return this.findNode((n: any) => n.tag !== undefined && n.tag.ref === tag.ref, { |
|
|
|
allowPaging: true, |
|
|
|
maxDepth: 5, |
|
|
|
canTraverse: n => { |
|
|
|
// Only search for tag nodes in the same repo within TagsNode
|
|
|
|
if (n instanceof RepositoriesNode) return true; |
|
|
|
|
|
|
|
if (n instanceof RepositoryNode || n instanceof TagsNode || n instanceof BranchOrTagFolderNode) { |
|
|
|
return n.id.startsWith(repoNodeId); |
|
|
|
} |
|
|
|
|
|
|
|
return false; |
|
|
|
}, |
|
|
|
token: token, |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
@gate(() => '') |
|
|
|
revealTag( |
|
|
|
tag: GitTagReference, |
|
|
|
options?: { |
|
|
|
select?: boolean; |
|
|
|
focus?: boolean; |
|
|
|
expand?: boolean | number; |
|
|
|
}, |
|
|
|
) { |
|
|
|
return window.withProgress( |
|
|
|
{ |
|
|
|
location: ProgressLocation.Notification, |
|
|
|
title: `Revealing ${GitReference.toString(tag, { icon: false })} in the Repositories view...`, |
|
|
|
cancellable: true, |
|
|
|
}, |
|
|
|
async (progress, token) => { |
|
|
|
const node = await this.findTag(tag, token); |
|
|
|
if (node === undefined) return node; |
|
|
|
|
|
|
|
await this.ensureRevealNode(node, options); |
|
|
|
|
|
|
|
return node; |
|
|
|
}, |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
private setLayout(layout: ViewBranchesLayout) { |
|
|
|
return configuration.updateEffective('views', this.configKey, 'branches', 'layout', layout); |
|
|
|
} |
|
|
|
|
|
|
|
private setFilesLayout(layout: ViewFilesLayout) { |
|
|
|
return configuration.updateEffective('views', this.configKey, 'files', 'layout', layout); |
|
|
|
} |
|
|
|
|
|
|
|
private setShowAvatars(enabled: boolean) { |
|
|
|
return configuration.updateEffective('views', this.configKey, 'avatars', enabled); |
|
|
|
} |
|
|
|
} |