Bläddra i källkod

Adds show more to file & line histories

main
Eric Amodio 5 år sedan
förälder
incheckning
36b6b9680e
2 ändrade filer med 22 tillägg och 6 borttagningar
  1. +11
    -3
      src/views/nodes/fileHistoryNode.ts
  2. +11
    -3
      src/views/nodes/lineHistoryNode.ts

+ 11
- 3
src/views/nodes/fileHistoryNode.ts Visa fil

@ -14,11 +14,14 @@ import { Logger } from '../../logger';
import { debug, Iterables } from '../../system';
import { View } from '../viewBase';
import { CommitFileNode, CommitFileNodeDisplayAs } from './commitFileNode';
import { MessageNode } from './common';
import { MessageNode, ShowMoreNode } from './common';
import { insertDateMarkers } from './helpers';
import { ResourceType, SubscribeableViewNode, ViewNode } from './viewNode';
import { PageableViewNode, ResourceType, SubscribeableViewNode, ViewNode } from './viewNode';
export class FileHistoryNode extends SubscribeableViewNode implements PageableViewNode {
readonly supportsPaging: boolean = true;
maxCount: number | undefined;
export class FileHistoryNode extends SubscribeableViewNode {
constructor(uri: GitUri, view: View, parent: ViewNode) {
super(uri, view, parent);
}
@ -71,6 +74,7 @@ export class FileHistoryNode extends SubscribeableViewNode {
}
const log = await Container.git.getLogForFile(this.uri.repoPath, this.uri.fsPath, {
maxCount: this.maxCount !== undefined ? this.maxCount : undefined,
ref: this.uri.sha
});
if (log !== undefined) {
@ -83,6 +87,10 @@ export class FileHistoryNode extends SubscribeableViewNode {
this
)
);
if (log.truncated) {
children.push(new ShowMoreNode(this.view, this, 'Commits', children[children.length - 1]));
}
}
if (children.length === 0) return [new MessageNode(this.view, this, 'No file history could be found.')];

+ 11
- 3
src/views/nodes/lineHistoryNode.ts Visa fil

@ -13,11 +13,14 @@ import { Logger } from '../../logger';
import { debug, Iterables } from '../../system';
import { View } from '../viewBase';
import { CommitFileNode, CommitFileNodeDisplayAs } from './commitFileNode';
import { MessageNode } from './common';
import { MessageNode, ShowMoreNode } from './common';
import { insertDateMarkers } from './helpers';
import { ResourceType, SubscribeableViewNode, ViewNode } from './viewNode';
import { PageableViewNode, ResourceType, SubscribeableViewNode, ViewNode } from './viewNode';
export class LineHistoryNode extends SubscribeableViewNode implements PageableViewNode {
readonly supportsPaging: boolean = true;
maxCount: number | undefined;
export class LineHistoryNode extends SubscribeableViewNode {
constructor(
uri: GitUri,
view: View,
@ -92,6 +95,7 @@ export class LineHistoryNode extends SubscribeableViewNode {
}
const log = await Container.git.getLogForFile(this.uri.repoPath, this.uri.fsPath, {
maxCount: this.maxCount !== undefined ? this.maxCount : undefined,
ref: this.uri.sha,
range: selection
});
@ -105,6 +109,10 @@ export class LineHistoryNode extends SubscribeableViewNode {
this
)
);
if (log.truncated) {
children.push(new ShowMoreNode(this.view, this, 'Commits', children[children.length - 1]));
}
}
if (children.length === 0) return [new MessageNode(this.view, this, 'No line history could be found.')];

Laddar…
Avbryt
Spara